Skip to content

Instantly share code, notes, and snippets.

@Lucky-Loek
Last active November 27, 2018 15:41
Show Gist options
  • Save Lucky-Loek/17e476187037400ab078a207aff40674 to your computer and use it in GitHub Desktop.
Save Lucky-Loek/17e476187037400ab078a207aff40674 to your computer and use it in GitHub Desktop.
Things to do when installing Ubuntu Linux for the 2^nth time
#!/usr/bin/env sh
# Update
sudo apt update
# Upgrade
sudo apt upgrade -y
# Install fonts and Z-shell
sudo apt install xfonts-terminus zsh -y
# Change shell to Zsh
chsh -s $(which zsh)
# Reboot since kernel updates and shell change
sudo reboot now
#!/usr/bin/env sh
# Updating never hurts
sudo apt update
# Remove unnecessary kernels
sudo apt autoremove -y
# Get oh-my-zsh
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
# Possibly add auto-config of oh-my-zsh based on my other gist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment