Last active
August 29, 2015 14:01
-
-
Save arthurbenemann/82c003972c30b38859d1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| blue='\e[0;34m' | |
| NC='\e[0m' # No Color | |
| # Utility functions | |
| APT_GET="sudo apt-get -qq --assume-yes" | |
| # Install Chrome | |
| echo -e "${blue}### Installing Chrome${NC}" | |
| wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
| sudo dpkg -i google-chrome*; sudo apt-get -f install | |
| rm google-chrome-stable_current_amd64.deb | |
| #Disable Shopping suggestions | |
| gsettings set com.canonical.Unity.Lenses disabled-scopes "['more_suggestions-amazon.scope', 'more_suggestions-u1ms.scope', 'more_suggestions-populartracks.scope', 'music-musicstore.scope', 'more_suggestions-ebay.scope', 'more_suggestions-ubuntushop.scope', 'more_suggestions-skimlinks.scope']" | |
| # Install dev tools | |
| echo -e "${blue}### Installing DevTools${NC}" | |
| $APT_GET install eclipse git-gui gitk eagle rar unrar g++ curl | |
| git config --global credential.helper "cache --timeout=36000" #Configure git password cache | |
| # Install other tools | |
| $APT_GET install octave gparted lm-sensors htop stress | |
| # Install extra Ubuntu stuff | |
| $APT_GET install ubuntu-restricted-extras vlc transmission | |
| #Install Android Studio | |
| #wget https://dl.google.com/android/studio/install/0.8.0/android-studio-bundle-135.1245622-linux.tgz | |
| #tar -xzf android-studio-bundle-135.1245622-linux.tgz | |
| #sudo mv android-studio /opt/ | |
| #rm android-studio-bundle-135.1245622-linux.tgz | |
| # Install VirtualBox | |
| echo -e "${blue}### Installing VirtualBox${NC}" | |
| $APT_GET install virtualbox virtualbox-guest-additions-iso | |
| sudo adduser $USER vboxusers | |
| # Install Google Earth | |
| $APT_GET install libc6-i386 libglib2.0-0:i386 libsm6:i386 libglu1-mesa:i386 libgl1-mesa-glx:i386 libxext6:i386 libxrender1:i386 libx11-6:i386 libfontconfig1:i386 lsb-core | |
| wget https://dl.google.com/dl/earth/client/current/google-earth-stable_current_i386.deb | |
| sudo dpkg -i google-earth-stable_current_i386.deb; sudo apt-get -f install | |
| rm google-earth-stable_current_i386.deb | |
| # Install Steam | |
| $APT_GET install steam | |
| # Install Sublime text editor | |
| #sudo add-apt-repository ppa:webupd8team/sublime-text-3 | |
| #$APT_GET update | |
| #$APT_GET install sublime-text-installer | |
| #Update/Upgrade Packages | |
| echo -e "${blue}### Update/Upgrade${NC}" | |
| $APT_GET update | |
| $APT_GET upgrade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment