Skip to content

Instantly share code, notes, and snippets.

@stagfoo
Last active April 16, 2017 04:59
Show Gist options
  • Save stagfoo/79788375dfe281f5aa4f08577a3fc1c0 to your computer and use it in GitHub Desktop.
Save stagfoo/79788375dfe281f5aa4f08577a3fc1c0 to your computer and use it in GitHub Desktop.
New Computer Setup
#bash
cd /home/al/Documents/Code
while read x;
do mkdir "/home/al/Documents/Design/$x";
done << EOF
$(ls $1)
EOF
#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
@stagfoo
Copy link
Author

stagfoo commented Apr 16, 2017

For xubuntu

sudo apt install xfce4-topmenu-plugin libtopmenu-client-gtk2-0 libtopmenu-server-gtk2-0 libtopmenu-client-gtk3-0 libtopmenu-server-gtk3-0 topmenu-gtk2 topmenu-gtk3

pkexec mousepad /etc/profile.d/topmenu-gtk.sh

Paste this

#!/bin/sh
export GTK_MODULES=$GTK_MODULES:topmenu-gtk-module

Dock

sudo add-apt-repository ppa:dockbar-main/ppa
sudo apt-get update
sudo apt-get install dockbarx
sudo apt-get install xfce4-dockbarx-plugin
sudo apt-get install dockbarx-themes-extra

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment