Browse Source

Update installer.sh

Taylor Bockman 8 years ago committed by GitHub
parent
commit
6bceb21604
  1. 72
      ubuntu/installer.sh

72
ubuntu/installer.sh

@ -5,60 +5,72 @@ echo "======== UBUNTU AUTO-INSTALL SCRIPT ========"
# Pre-setup # Pre-setup
echo "Running pre-setup..." echo "Running pre-setup..."
sudo add-apt-repository ppa:neovim-ppa/unstable sudo add-apt-repository ppa:neovim-ppa/unstable
sudo apt-get -y update sudo apt-add-repository -y "deb http://repository.spotify.com stable non-free"
sudo apt-get -y upgrade sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D2C19886
sudo apt-get -qq -y update
sudo apt-get -qq -y upgrade
# Window Manager # Window Manager
echo "Installing window manager..." echo "Installing window manager..."
sudo apt-get -y install xmonad sudo apt-get -qq -y install xmonad
sudo apt-get -y install libghc-xmonad-contrib-dev sudo apt-get -qq -y install libghc-xmonad-contrib-dev
# Dmenu # Dmenu
echo "Installing Dmenu..." echo "Installing Dmenu..."
sudo apt-get -y install suckless-tools sudo apt-get -qq -y install suckless-tools
# Languages # Languages
echo "Installing languages..." echo "Installing languages..."
sudo apt-get -y install python-dev sudo apt-get -qq -y install python-dev
sudo apt-get -y install python-pip sudo apt-get -qq -y install python-pip
sudo apt-get -y install python3-dev sudo apt-get -qq -y install python3-dev
sudo apt-get -y install python3-pip sudo apt-get -qq -y install python3-pip
# Editors # Editors
echo "Installing editors..." echo "Installing editors..."
sudo apt-get -y install vim sudo apt-get -qq -y install vim
sudo apt-get -y install neovim sudo apt-get -qq -y install neovim
# Source Control # Source Control
echo "Installing source control..." echo "Installing source control..."
sudo apt-get -y install git sudo apt-get -qq -y install git
# Remove Unity (This has to be done here so we can reinstall what unity removes) # Remove Unity (This has to be done here so we can reinstall what unity removes)
echo "Removing Unity..." echo "Removing Unity..."
sudo apt-get -y purge unity sudo apt-get -qq -y purge unity
# Multimedia
echo "Installing multimedia..."
sudo apt-get -qq -y install ffmpeg
sudo apt-get -qq -y install mplayer
sudo apt-get -qq -y install spotify-client
# Tools # Tools
echo "Installing tools..." echo "Installing tools..."
sudo apt-get -y install transmission sudo apt-get -qq -y install transmission
sudo apt-get -y install htop sudo apt-get -qq -y install htop
sudo apt-get -y install chromium-browser sudo apt-get -qq -y install scrot
# Browsers
echo "Installing browsers..."
sudo apt-get -qq -y install chromium-browser
# Cleanup # Cleanup
echo "Cleaning up unneccessary programs..." echo "Cleaning up unneccessary programs..."
sudo apt-get -y purge firefox sudo apt-get -qq -y purge firefox
sudo apt-get -y purge rhythmbox sudo apt-get -qq -y purge rhythmbox
sudo apt-get -y purge cheese sudo apt-get -qq -y purge cheese
sudo apt-get -y purge shotwell sudo apt-get -qq -y purge shotwell
sudo apt-get -y purge shotwell-common sudo apt-get -qq -y purge shotwell-common
sudo apt-get -y purge thunderbird sudo apt-get -qq -y purge thunderbird
sudo apt-get -y purge aisleriot sudo apt-get -qq -y purge aisleriot
sudo apt-get -y purge webbrowser-app sudo apt-get -qq -y purge webbrowser-app
sudo apt-get -y purge gnome-sudoku sudo apt-get -qq -y purge gnome-sudoku
sudo apt-get -y purge mahjongg sudo apt-get -qq -y purge mahjongg
sudo apt-get -y purge gnomine sudo apt-get -qq -y purge gnomine
sudo apt-get -y purge ace-of-penguins sudo apt-get -qq -y purge ace-of-penguins
sudo apt-get -y purge onboard sudo apt-get -qq -y purge onboard
sudo apt -y autoremove sudo apt -qq -y autoremove
echo "!!! DONE INSTALLING !!!" echo "!!! DONE INSTALLING !!!"
echo "======== REBOOTING IN 30 SECONDS ========" echo "======== REBOOTING IN 30 SECONDS ========"

Loading…
Cancel
Save