Advertisement
Guest User

Untitled

a guest
Nov 14th, 2013
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.29 KB | None | 0 0
  1.  
  2. echo "Performing first-time system upgrade..."
  3.  
  4. apt-get update && apt-get -y upgrade
  5.  
  6. echo "Adding repositories..."
  7.  
  8. wget https://dl.dropboxusercontent.com/s/2l3vl7r3w7n1yxs/debsources.list
  9. wget https://dl.dropboxusercontent.com/s/jbwtog1xjflvaw7/vbsources.list
  10.  
  11. add-apt-repository -y ppa:kilian/f.lux
  12. add-apt-repository -y ppa:alecive/antigone
  13.  
  14. cat debsources.list vbsources.list >> /etc/apt/sources.list
  15.  
  16. echo "Authenticating repositories..."
  17. wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add -
  18.  
  19. apt-get update
  20.  
  21. echo "Installing from repositories..."
  22.  
  23. apt-get -y install lsb-release rxvt-unicode mc elinks emacs irssi mpd cmus pianobar ruby rubygems idle audacious audtty i3 nemo-dropbox deluge dropbox fortune-mod tilda wine winetricks scrot ruby-debian radeontool python-sphinx iceweasel gtk2-engine gsynaptics gpointing-device-settings conky-all docky
  24.  
  25. echo "Installing Dropbox..."
  26. wget -O ~/dropbox.tar.gz "http://www.dropbox.com/download/?plat=lnx.x86"
  27. tar -tzf dropbox.tar.gz
  28. tar -xvzf dropbox.tar.gz
  29. /.dropbox-dist/dropboxd
  30.  
  31. echo "Installing Screenfetch..."
  32. wget -O screenfetch "https://raw.github.com/KittyKatt/screenFetch/master/screenfetch-dev"
  33. chmod +x screenfetch
  34. mv screenfetch /usr/bin/
  35. echo screenfetch >> .bashrc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement