Skip to content

Instantly share code, notes, and snippets.

@ty1118
ty1118 / neon-install.sh
Last active September 6, 2021 05:44
Install KDE Neon in Ubuntu Bionic Beaver 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" && \