Last active
April 16, 2017 04:59
-
-
Save stagfoo/79788375dfe281f5aa4f08577a3fc1c0 to your computer and use it in GitHub Desktop.
New Computer Setup
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
#bash | |
cd /home/al/Documents/Code | |
while read x; | |
do mkdir "/home/al/Documents/Design/$x"; | |
done << EOF | |
$(ls $1) | |
EOF |
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
#bash | |
cd ~/Downloads/ | |
#VsCode | |
sudo wget -O - https://tagplus5.github.io/vscode-ppa/ubuntu/gpg.key | sudo apt-key add - && \ | |
sudo wget -O /etc/apt/sources.list.d/vscode.list https://tagplus5.github.io/vscode-ppa/ubuntu/vscode.list && \ | |
sudo apt update -y && sudo apt install code | |
#Node | |
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | |
sudo apt-get -y install nodejs | |
sudo apt-get -y git | |
#Git Kraken | |
wget https://release.gitkraken.com/linux/gitkraken-amd64.deb | |
sudo dpkg -i gitkraken-amd64.deb | |
#Viber | |
wget https://download.cdn.viber.com/cdn/desktop/Linux/viber.deb | |
sudo dpkg -i viber.deb | |
# Graphics | |
#Gravit | |
sudo apt-get install -y p7zip-full | |
wget https://app.designer.io/_downloads/linux/GravitDesigner.zip | |
7z x GravitDesigner.zip | |
chmod a+x GravitDesigner.AppImage | |
./GravitDesigner.AppImage | |
sudo apt-get install -y gimp | |
sudo apt-get install -y inkscape | |
sudo apt-get install -y vlc | |
# Flat theme | |
curl -sL https://github.com/nana-4/Flat-Plat/archive/v20170323.tar.gz | tar xz | |
cd Flat-Plat-20170323 && sudo ./install.sh | |
# Paper | |
sudo add-apt-repository -y ppa:snwh/pulp | |
sudo apt-get -y update | |
sudo apt-get -y install paper-icon-theme | |
cd ~/Downloads/ | |
# vpn | |
wget https://download.expressvpn.xyz/clients/linux/expressvpn_1.2.0_amd64.deb | |
sudo dpkg -i expressvpn_1.2.0_amd64.deb | |
# Fira VsCode | |
cd /usr/share/fonts # system wide fonts | |
git clone --depth 1 https://github.com/tonsky/FiraCode.git # get only the last commit of the master branch | |
cd FiraCode | |
git filter-branch --subdirectory-filter distr # This keeps only the contents of the distr/ directory and moves its contents one level up. | |
fc-cache -f -v | |
cd ~/Downloads/ | |
# New Need | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -y - | |
sudo sh -c 'echo "deb https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' | |
sudo apt-get update -y | |
sudo apt-get -y install google-chrome-stable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For xubuntu
Paste this
Dock