Skip to content

Instantly share code, notes, and snippets.

@drola
Last active December 15, 2015 13:49
Show Gist options
  • Save drola/5270471 to your computer and use it in GitHub Desktop.
Save drola/5270471 to your computer and use it in GitHub Desktop.
Ubuntu GNOME dev bootstrap
#!/bin/bash
#Repositiories
sudo add-apt-repository ppa:webupd8team/sublime-text-3
sudo add-apt-repository ppa:webupd8team/java
sudo add-apt-repository ppa:chris-lea/node.js
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
wget -O - http://deb.opera.com/archive.key | sudo apt-key add -
sudo sh -c 'echo "deb http://deb.opera.com/opera/ stable non-free" >> /etc/apt/sources.list.d/opera.list'
sudo apt-get update
sudo apt-get --yes --force-yes install oracle-java7-installer sublime-text-installer zsh git wget curl
#Zsh and Oh My Zsh
wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
chsh -s $(which zsh)
#Google Chrome (stable)
sudo apt-get --yes --force-yes install google-chrome-stable
#Opera
sudo apt-get --yes --force-yes install opera
#XChat
sudo apt-get --yes --force-yes install xchat
#Filezilla
sudo apt-get --yes --force-yes install filezilla
#Set git user and email
git config --global user.email "email@example.com"
git config --global user.name "Firstname Lastname"
#Install Node.js and NPM
sudo apt-get --yes --force-yes install nodejs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment