#!/bin/sh
#
#  backtowork.sh, a bash script by duus made on Tue Jul 24 13:10:52 EDT 2007 
#  lives in: ~/Documents/Software/unixscripts//backtowork/backtowork.sh 
#  run binedit backtowork to edit.  see binedit help for more information
#
_SCRIPT_NAME=backtowork             
_SCRIPT_LOCATION=~/bin/             
#             
if [ "$1" = "version" ]                
	then                                 
	echo " backtowork by duus"          
	echo " ~/Documents/Software/unixscripts//backtowork/backtowork.sh "
	exit 1;
elif [ "$1" = "help" -o "$1" = "h" ]
	then
	grep "^#h" ${_SCRIPT_LOCATION}/${_SCRIPT_NAME} | more
	exit 1;
fi
#h get back to work turns off airport
#h   runs boodha (i.e. boodler buddhamachine)
#h   the 10-minute dash flextime program, and
#h   quits iTunes, and hides Firefox and Mail.
boodler kill &
itunes stop &
airport off &
boodha 4 &
dash norm &
hide Firefox &
hide Mail &
wisdom # add "today" when that gets implemented
dhamma # add "today" when that gets implemented
#echo "# add \"today\" when that gets implemented"
runlater s 15 thunder &
# -------------------------- 
# 
# end backtowork, ~/Documents/Software/unixscripts//backtowork/backtowork.sh
