Created
June 10, 2015 19:15
-
-
Save kam1kaze/4131273098c3928291f8 to your computer and use it in GitHub Desktop.
setup_ubuntu
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
PPA=() | |
PKG=() | |
PKG+=( | |
pv | |
mc | |
wget | |
curl | |
whois | |
vim-nox | |
ipcalc | |
apcalc | |
atop | |
keychain | |
vlc | |
vcsh | |
git | |
rxvt-unicode-256color | |
vcsh | |
pasystray | |
) | |
# https://github.com/Valloric/YouCompleteMe#ubuntu-linux-x64-super-quick-installation | |
PKG+=( | |
build-essential | |
cmake | |
python-dev | |
) | |
#PPA+=('caffeine-developers/ppa') | |
#PKG+=('caffeine') | |
PPA+=('nilarimogard/webupd8') | |
PKG+=('caffeine-plus') | |
PPA+=('klaus-vormweg/awesome') | |
PKG+=('awesome') | |
#PPA+=('linrunner/tlp') | |
#PKG+=('tlp') | |
PPA+=('mc3man/mpv-tests') | |
PKG+=('mpv') | |
PPA+=('rickyrockrat/parcellite-appindicator') | |
PKG+=('parcellite') | |
PPA+=('thefanclub/grive-tools') | |
PKG+=('grive-tools') | |
PPA+=('webupd8team/java') | |
PKG+=('oracle-java8-installer') | |
for name in ${PPA[@]}; do | |
sudo add-apt-repository -y ppa:${name} | |
done | |
# Google pkgs | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
for name in chrome talkplugin; do | |
sudo sh -c "echo \"deb http://dl.google.com/linux/${name}/deb/ stable main\" > /etc/apt/sources.list.d/google-${name}.list" | |
done | |
PKG+=(google-chrome-stable google-talkplugin) | |
# Skype | |
sudo add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner" | |
PKG+=( skype ) | |
# Spotify | |
sudo apt-add-repository -y "deb http://repository.spotify.com stable non-free" | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 94558F59 | |
PKG+=( spotify-client ) | |
# Install pkgs | |
sudo apt-get update | |
sudo apt-get install -y ${PKG[@]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment