#!/bin/bash echo "#######################################"; echo "### Setup My Ubuntu: Part 1 ###"; echo "## created by Benjamin Trice ###"; echo "### May 06, 2010 ###"; echo "#######################################"; echo; echo; echo; echo "START SCRIPT"; # change location bar to text gconftool-2 --set "/apps/nautilus/preferences/always_use_location_entry" --type bool "True" echo "Change Location Bar to Text => DONE"; # move window buttons to right gconftool-2 --set "/apps/metacity/general/button_layout" --type string "menu:minimize,maximize,close" echo "Move Window Buttons To Right => DONE"; # Install backed up applications from repository #sudo aptitude install dselect #dpkg --set-selections < "/backup/installed-software.log" #echo "Install Previous Programs => DONE"; echo "END SCRIPT";