Created
April 29, 2018 09:57
-
-
Save hero9/2b64599b1399c3b9d782abe76b24d762 to your computer and use it in GitHub Desktop.
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 | |
sudo apt update && | |
sudo apt upgrade -y && | |
#---GDEBI--- | |
sudo apt install -y gdebi && | |
#---SOFTWARE-PROPERTIES-COMMON for adding third-party repos | |
sudo apt install -y software-properties-common && | |
#---Elementary Tweaks--- | |
sudo add-apt-repository -y ppa:philip.scott/elementary-tweaks && | |
sudo apt update && | |
sudo apt install -y elementary-tweaks && | |
#---GIT--- | |
sudo add-apt-repository -y ppa:git-core/ppa && | |
sudo apt update && | |
sudo apt install -y git && | |
#---NodeJS 9.x--- | |
curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash - && | |
sudo apt-get install -y nodejs | |
#--OSX-Arc-Darker GTK+ Theme | |
wget https://github.com/LinxGem33/OSX-Arc-Darker/releases/download/v1.4.5/osx-arc-collection_1.4.5_amd64.deb && | |
sudo gdebi-gtk osx-arc-collection_1.4.5_amd64.deb && | |
#--Google Play Music Player--- | |
wget https://github.com/MarshallOfSound/Google-Play-Music-Desktop-Player-UNOFFICIAL-/releases/download/v4.4.1/google-play-music-desktop-player_4.4.1_amd64.deb && | |
sudo gdebi-gtk google-play-music-desktop-player_4.4.1_amd64.deb | |
sudo sed -i '/>Monaco/{N;N;N;s/>Cousine/>Monaco/}' /etc/fonts/conf.avail/31-croscore-elementary.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment