Last active
July 19, 2016 02:57
-
-
Save KefDS/e5449bfeeb4f0dc8779329dab387e9f2 to your computer and use it in GitHub Desktop.
Script that installs some packages for ubuntu-gnome
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 | |
| # Script that installs some packages for ubuntu-gnome | |
| # Tested in Ubuntu 16.04 | |
| # Arc theme | |
| sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/Horst3180/xUbuntu_16.04/ /' >> /etc/apt/sources.list.d/arc-theme.list" | |
| wget http://download.opensuse.org/repositories/home:Horst3180/xUbuntu_16.04/Release.key | |
| sudo apt-key add - < Release.key | |
| rm Release.key | |
| sudo apt-get update | |
| sudo apt-get install arc-theme -y | |
| # Paper icons | |
| sudo add-apt-repository ppa:snwh/pulp | |
| sudo apt-get update | |
| sudo apt-get install paper-icon-theme -y | |
| # Numix icons | |
| sudo add-apt-repository ppa:numix/ppa | |
| sudo apt-get update | |
| sudo apt-get install numix-gtk-theme numix-icon-theme-circle -y | |
| # Tomahawk Music player | |
| sudo apt-get install tomahawk -y | |
| # Remove Rhythmbox | |
| sudo apt-get remove rhythmbox -y | |
| # Extras | |
| echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections | |
| sudo apt-get install ttf-mscorefonts-installer | |
| sudo apt-get install ubuntu-restricted-extras | |
| # Some programs | |
| sudo apt-get install vlc gparted shutter pyrenamer pinta easytag git kazam openshot -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment