Skip to content

Instantly share code, notes, and snippets.

View theycallhermax's full-sized avatar
🦀
am rustacean

Max Walters theycallhermax

🦀
am rustacean
View GitHub Profile
@borcean
borcean / neon-install.sh
Last active April 2, 2023 06:41
Install KDE Neon on a Chromebook using Crouton
sudo crouton -r bionic -t core -n neon && \
sudo enter-chroot -n neon -u 0 bash -c "\
apt install software-properties-common -y && \
wget -qO - 'http://archive.neon.kde.org/public.key' | sudo apt-key add - && \
sudo apt-add-repository http://archive.neon.kde.org/user && \
sudo apt update && \
sudo apt full-upgrade -y && \
sudo apt install xterm xinit -y" && \