Skip to content

Instantly share code, notes, and snippets.

@tusharvikky
Last active August 29, 2015 14:07
Show Gist options
  • Save tusharvikky/ea270487690a7fa1164b to your computer and use it in GitHub Desktop.
Save tusharvikky/ea270487690a7fa1164b to your computer and use it in GitHub Desktop.
eOS/Ubuntu Essential packages Installer (14.04+)
#!/bin/bash
# Adding List of ppa
echo <<EOF
Adding PPA...
EOF
sudo add-apt-repository -y ppa:donadigo/power-installer
sudo add-apt-repository -y ppa:indicator-multiload/stable-daily
sudo add-apt-repository -y ppa:tomahawk/ppa
sudo add-apt-repository -y ppa:birdie-team/stable
sudo add-apt-repository -y ppa:ubuntu-mozilla-daily/firefox-aurora
sudo add-apt-repository -y ppa:plushuang-tw/uget-stable
# Updating apt-get
echo <<EOF
Updating apt-get...
EOF
sudo apt-get update
# Install Power Installer (https://launchpad.net/power-installer)
echo <<EOF
Installing Power Installer...
EOF
sudo apt-get install -y power-installer
# Install System Load Indicator (https://launchpad.net/indicator-multiload)
echo <<EOF
Installing System Load Indicator...
EOF
sudo apt-get install indicator-multiload
# Install Tomahawk Music Player (https://launchpad.net/~tomahawk/+archive/ubuntu/ppa)
echo <<EOF
Installing Tomahawk Music Player...
EOF
sudo apt-get install tomahawk
# Install Birdie (Twitter Client) (http://www.birdieapp.eu/)
echo <<EOF
Installing Birdie (Twitter Client)...
EOF
sudo apt-get install birdie
# Install Firefox Developer Edition (https://www.mozilla.org/en-US/firefox/developer/)
echo <<EOF
Installing Firefox Developer Edition...
EOF
sudo apt-get install firefox
# Install uget Download Manager (http://ugetdm.com/downloads-elementary)
echo <<EOF
Installing uget Download Manager...
EOF
sudo apt-get install uget
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment