Last active
August 16, 2016 03:47
-
-
Save tophermade/dbc7b1ba46d03e9ba1635d4dbe441b42 to your computer and use it in GitHub Desktop.
New mint install head start
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 | |
#update | |
sudo apt-get update | |
sudo apt-get upgrade | |
#chrome | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' | |
sudo apt-get update | |
sudo apt-get install google-chrome-stable | |
#linuxbrew | |
sudo apt-get install build-essential curl git python-setuptools ruby | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install)" | |
source ~/.bashrc | |
#node | |
brew install npm | |
#meteor | |
curl https://install.meteor.com/ | sh | |
#wine | |
sudo apt-get install wine | |
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks | |
chmod +x winetricks | |
#numix | |
sudo apt-add-repository ppa:numix/ppa | |
sudo apt-get update | |
sudo apt-get install numix-icon-theme numix-icon-theme-circle | |
touch ~/.themes | |
wget https://github.com/zagortenay333/numix-cinnamon.git | |
mv ~/.themes/numix-cinnamon-master/Numix-Cinnamon/ ~/.themes/Numix-Cinnamon/ | |
#sublime | |
sudo add-apt-repository ppa:webupd8team/sublime-text-3 | |
sudo apt-get update | |
sudo apt-get install sublime-text-installer | |
#virtualbox | |
sudo apt-add-repository "deb http://download.virtualbox.org/virtualbox/debian xenial contrib" | |
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install virtualbox-5.0 | |
#vagrant | |
wget https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0_x86_64.deb | |
sudo dpkg -i vagrant_1.8.0_x86_64.deb | |
vagrant plugin install vagrant-vbguest | |
vagrant plugin install vagrant-triggers | |
vagrant plugin install vagrant-hostsupdater | |
#gpick | |
sudo apt-get install gpick | |
#xclip | |
sudo apt-get install xclip | |
#albert | |
sudo add-apt-repository ppa:nilarimogard/webupd8 | |
sudo apt-get update | |
sudo apt-get install albert | |
#plank | |
sudo add-apt-repository ppa:ricotz/docky | |
sudo apt-get update | |
sudo apt-get install plank | |
#filezilla | |
sudo apt-get install filezilla |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment