Created
May 9, 2012 14:24
-
-
Save eltimn/2644855 to your computer and use it in GitHub Desktop.
New Install
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/sh | |
# Things to do after a fresh install | |
# Ubuntu 12.04 LTS | |
# Author : Tim Nelson <http://eltimn.com/> | |
# License : Apache 2.0 | |
# update system | |
sudo apt-get update | |
sudo apt-get upgrade | |
echo "System Updated Successfully" | |
# proprietary codecs/libraries | |
sudo apt-get -y install ubuntu-restricted-extras libdvdread4 | |
sudo /usr/share/doc/libdvdread4/install-css.sh | |
# multimedia stuff | |
sudo apt-get -y install easytag vlc | |
# unsettings | |
sudo add-apt-repository ppa:diesch/testing | |
sudo apt-get update | |
sudo apt-get -y install unsettings | |
# desktop tweak tools | |
sudo apt-get -y install gconf-editor compizconfig-settings-manager conky | |
# Java | |
#sudo apt-get purge openjdk* | |
# indicators | |
sudo apt-get -y install indicator-weather | |
# dev tools | |
sudo apt-get -y install ack-grep git xclip maven2 meld ack-grep curl parcellite | |
# vbox | |
sudo apt-get -y install virtualbox-ose virtualbox-guest-additions | |
# other apps | |
sudo apt-get -y install keepassx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment