Skip to content

Instantly share code, notes, and snippets.

@doidor
Last active October 25, 2018 20:34
Show Gist options
  • Save doidor/b52fe85a6ec7d5b58107cae7876dd578 to your computer and use it in GitHub Desktop.
Save doidor/b52fe85a6ec7d5b58107cae7876dd578 to your computer and use it in GitHub Desktop.
basic ubuntu server with i3 setup
add-apt-repository main
add-apt-repository universe
add-apt-repository restricted
add-apt-repository multiverse
apt update
apt install -y lightdm lightdm-gtk-greeter lightdm-gtk-greeter-settings i3 wicd ubuntu-drivers-common mesa-utils mesa-utils-extra compton xorg xserver-xorg nautilus gnome-terminal git git-core zsh fonts-powerline xfe xfe-i18n xfe-themes
mkdir /tmp/debs/
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/debs/chrome.deb
wget https://go.microsoft.com/fwlink/?LinkID=760868 -O /tmp/debs/visualstudiocode.deb
dpkg -i /tmp/debs/*.deb
apt install -f -y
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
chsh -s `which zsh`
poweroff --reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment