Skip to content

Instantly share code, notes, and snippets.

@CarloMicieli
Last active December 17, 2015 23:09
Show Gist options
  • Save CarloMicieli/5687479 to your computer and use it in GitHub Desktop.
Save CarloMicieli/5687479 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo 'Starting setup...'
echo 'Adding repositories..'
sudo add-apt-repository -y ppa:tiheum/equinox
sudo add-apt-repository -y ppa:openshot.developers/ppa
## Ubuntu tweaks
sudo add-apt-repository -y ppa:tualatrix/ppa
## node.js
sudo add-apt-repository -y ppa:chris-lea/node.js
sudo add-apt-repository -y ppa:libreoffice/ppa
sudo add-apt-repository -y ppa:atareao/sunflower
sudo add-apt-repository -y ppa:salience-team/salience-devel-ppa
sudo add-apt-repository -y ppa:ubuntu-wine/ppa
sudo add-apt-repository -y ppa:mozillateam/firefox-next
## Opera
sudo sh -c 'echo "deb http://deb.opera.com/opera/ stable non-free" >> /etc/apt/sources.list.d/opera.list'
sudo sh -c 'wget -O - http://deb.opera.com/archive.key | apt-key add -'
## Mongodb
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/10gen.list
## VirtualBox
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add -
echo 'deb http://download.virtualbox.org/virtualbox/debian precise contrib' | sudo tee /etc/apt/sources.list.d/virtualbox.list
## spotify
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 94558F59
echo 'deb http://repository.spotify.com stable non-free' | sudo tee /etc/apt/sources.list.d/spotify.list
sudo add-apt-repository -y ppa:n-muench/calibre2
sudo add-apt-repository -y ppa:otto-kesselgulasch/gimp
sudo add-apt-repository -y ppa:webupd8team/sublime-text-2
sudo add-apt-repository -y ppa:noobslab/themes
sudo add-apt-repository -y ppa:markjtully/ppa
sudo add-apt-repository -y ppa:stebbins/handbrake-releases
echo 'Updating apt cache...'
sudo apt-get update
echo 'Start the packages installation...'
yes | sudo apt-get install unity-lens-askubuntu ubuntu-tweak faience-icon-theme \
faenza-icon-theme variety openshot frei0r-plugins nodejs git inkscape curl \
openjdk-7-jdk openjdk-7-jre openjdk-7-doc filezilla asunder avidemux vlc p7zip-full \
gparted gnome-tweak-tool shutter ubuntu-restricted-extras scummvm deluge tree ncdu \
sunflower salience-theme wine1.7 winetricks opera calibre gimp sublime-text \
mongodb-10gen virtualbox-4.3 elementaryish spotify-client handbrake-gtk handbrake-cli ia32-libs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment