positiveinternet-userpackage/skel/.bash_logout
2012-09-28 02:30:23 +01:00

15 lines
305 B
Bash

# ~/.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