OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
626 B

  1. #
  2. # Example login script
  3. #
  4. # Add the current directory to the path
  5. #
  6. PATH="$PATH:."
  7. # We want to get write(1) and talk(1) messages
  8. #
  9. # mesg y
  10. # Let's use the gnome desktop per default (overwrite system default)
  11. #
  12. # export WINDOWMANAGER=gnome
  13. # Set personal timezone and language
  14. #
  15. # export TZ=Europe/Vienna # Austrian time - list at /usr/share/zoneinfo
  16. # export LANG=de_AT # German (AT) - see 'locale -a' output
  17. # Write the hostname in the window title
  18. # (interactive shells in xterm terminals only)
  19. #
  20. # if [ "$PS1" ] ; then
  21. # case "$TERM" in xterm*)
  22. # echo -ne "\033]0;`hostname --fqdn`\007" ;;
  23. # esac
  24. # fi