Initial commit.

This commit is contained in:
Jonathan Harker 2012-09-28 02:24:04 +01:00
commit 0658661220
25 changed files with 1104 additions and 0 deletions

15
skel/.bash_logout Normal file
View file

@ -0,0 +1,15 @@
# ~/.bash_logout: executed by bash(1) when login shell exits.
# Set title bar to something sensible.
case $TERM in
*xterm*)
echo -e "\033]0;xterm\007"
;;
esac
# when leaving the console clear the screen to increase privacy
case "`tty`" in
/dev/tty[0-9]) clear
esac