5 # Add the current directory to the path
9 # We want to get write(1) and talk(1) messages
13 # Let's use the gnome desktop per default (overwrite system default)
15 # export WINDOWMANAGER=gnome
17 # Set personal timezone and language
19 # export TZ=Europe/Vienna # Austrian time - list at /usr/share/zoneinfo
20 # export LANG=de_AT # German (AT) - see 'locale -a' output
22 # Write the hostname in the window title
23 # (interactive shells in xterm terminals only)
25 # if [ "$PS1" ] ; then
26 # case "$TERM" in xterm*)
27 # echo -ne "\033]0;`hostname --fqdn`\007" ;;