Created
August 10, 2014 01:14
-
-
Save dbehnke/87ebe31bf84d5669cbd9 to your computer and use it in GitHub Desktop.
Ubuntu 14.04 Customization Script
This file contains 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 | |
function addppa { | |
add-apt-repository $1 -y | |
} | |
function aptinstall { | |
apt-get install $1 -y | |
} | |
## ppas | |
# variety (wallpaper changer) | |
addppa ppa:peterlevi/ppa | |
# git (version control) | |
addppa ppa:git-core/ppa | |
# atom (text editor) | |
addppa ppa:webupd8team/atom | |
# refresh and upgrade | |
apt-get update -y && apt-get upgrade -y | |
## install packages | |
#build-essential (gcc and such) | |
aptinstall build-essential | |
#atom editor | |
aptinstall atom | |
#chromium browser (google chrome open sourced) | |
aptinstall chromium-browser | |
#variety (wallpaper changer) | |
aptinstall variety | |
#git (version control) | |
aptinstall git-core | |
#pidgin (instant messenger client) | |
aptinstall pidgin | |
#zsh (alternative shell) | |
aptinstall zsh | |
#curl | |
aptinstall curl | |
#oh-my-zsh | |
#install this manually | |
#curl -L http://install.ohmyz.sh | sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment