Last active
August 29, 2015 14:26
-
-
Save MaxLeiter/29e039e5432e7d62d7d7 to your computer and use it in GitHub Desktop.
Personal setup script for fresh ubuntu 15.04 installs
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 | |
apt-get update | |
#terminator | |
apt-get install terminator | |
gsettings set org.gnome.desktop.default-applications.terminal exec 'terminator' | |
#chrome | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - | |
sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' | |
#spotify | |
apt-add-repository -y "deb http://repository.spotify.com stable non-free" | |
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D2C19886 | |
#sublime text 3 | |
add-apt-repository ppa:webupd8team/sublime-text-3 | |
#ruby | |
apt-get install ruby-full | |
#remove amazon from search | |
apt-get autoremove unity-lens-shopping | |
#set name to show in top right | |
gsettings set com.canonical.indicator.session show-real-name-on-panel true | |
#remove white dots from login screen | |
xhost +SI:localuser:lightdm | |
su lightdm -s /bin/bash | |
gsettings set com.canonical.unity-greeter draw-grid false | |
#gimp | |
apt-get install gimp | |
#skype | |
echo "deb http://archive.canonical.com/ubuntu trusty partner" | tee -a /etc/apt/sources.list.d/canonical_partner.list | |
#wine | |
add-apt-repository ppa:ubuntu-wine/ppa | |
#node and npm | |
apt-get install nodejs | |
apt-get install npm | |
#remove firefox because we have chrome | |
apt-get remove --purge firefox | |
#because gnome-terminal is bad and terminator is great | |
gsettings set org.gnome.desktop.default-applications.terminal exec /usr/bin/terminator | |
gsettings set org.gnome.desktop.default-applications.terminal exec-arg "-x" | |
apt-get remove gnome-terminal | |
apt-get install nautilus-actions | |
#Be sure to use nautilus-actions-config-tool to add Open In Terminator to context menu | |
apt-get update | |
apt-get autoremove | |
apt-get install google-chrome-stable | |
apt-get install spotify-client | |
apt-get install sublime-text-installer | |
apt-get install skype | |
apt-get install wine1.7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment