Last active
April 15, 2017 01:49
-
-
Save jvalenciag/06a841235d114ca6cb2d7c94e60aa7b6 to your computer and use it in GitHub Desktop.
Script to install a set of basic programs to start in ubuntu
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 | |
##ppas for other software | |
add-apt-repository -y ppa:graphics-drivers/ppa #latest drivers | |
add-apt-repository -y ppa:webupd8team/terminix #terminix | |
add-apt-repository -y ppa:teejee2008/ppa #ukuu | |
add-apt-repository -y ppa:nilarimogard/webupd8 #prime-indicator-plus | |
apt-add-repository -y ppa:yktooo/ppa #sound swicher | |
#add-apt-repository -y ppa:paulo-miguel-dias/mesa #updated mesa an xorg stack | |
add-apt-repository -y ppa:fossfreedom/indicator-sysmonitor #indicator applet | |
add-apt-repository -y ppa:kasra-mp/ubuntu-indicator-weather | |
#add-apt-repository -y ppa:flexiondotorg/sru #update software updated details bug | |
add-apt-repository -y ppa:git-core/ppa | |
add-apt-repository -y ppa:webupd8team/sublime-text-3 | |
add-apt-repository -y ppa:webupd8team/atom | |
add-apt-repository -y ppa:webupd8team/java | |
add-apt-repository -y ppa:webupd8team/indicator-kdeconnect | |
add-apt-repository -y ppa:nvbn-rm/ppa # everpad | |
add-apt-repository -y ppa:nixnote/nixnote2-daily | |
add-apt-repository -y ppa:go-for-it-team/go-for-it-daily | |
add-apt-repository -y ppa:papirus/papirus | |
#Visual studio code | |
#wget -O - https://tagplus5.github.io/vscode-ppa/ubuntu/gpg.key | apt-key add - | |
#wget -O /etc/apt/sources.list.d/vscode.list https://tagplus5.github.io/vscode-ppa/ubuntu/vscode.list | |
##spotify ppa | |
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886 | |
echo deb http://repository.spotify.com stable non-free | tee /etc/apt/sources.list.d/spotify.list | |
apt update | |
apt upgrade | |
apt dist-upgrade | |
apt install -y spotify-client sublime-text-installer nethogs everpad nixnote2 # oracle-java8-installer #code code-insiders | |
apt install -y terminix ukuu prime-indicator-plus indicator-sysmonitor indicator-sound-switcher redshift-gtk go-for-it indicator-weather | |
apt install -y papirus-icon-theme numix-gtk-theme | |
apt install -y kile tilix python3-pip cmake git build-essential vlc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment