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.

35 lines
595 B

16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
  1. eliteprompt() {
  2. local NOCOLOR='\[\033[0m\]'
  3. local BLUE='\[\033[1;34m\]'
  4. local CYAN='\[\033[1;36m\]'
  5. local ps1=
  6. local ps1a=
  7. local TTY='$(TTY=`tty` && echo ${TTY:5})'
  8. local TITLEBAR=
  9. case "$TERM" in
  10. screen|screen-256color|putty|xterm*|rxvt)
  11. TITLEBAR='\[\033]0;\u@\h \w\007\]'
  12. ;;
  13. linux)
  14. ;;
  15. esac
  16. # timestamp
  17. ps1="$BLUE[$CYAN\\t$BLUE]"
  18. # user/host
  19. ps1a="$NOCOLOR\\u$CYAN@$NOCOLOR\\h"
  20. # workdir and tty
  21. ps1="$ps1 $BLUE[$ps1a$CYAN($NOCOLOR$TTY$CYAN)$NOCOLOR\\W$BLUE]"
  22. # and the prompt
  23. export PS1="$TITLEBAR$ps1$CYAN\\\$$NOCOLOR "
  24. }
  25. eliteprompt
  26. unset eliteprompt