view .shell.d/99.prompt.bash @ 41:ef5c69032d20

Multi-hg serving code I seem to use often.
author Augie Fackler <durin42@gmail.com>
date Thu, 05 Feb 2009 23:43:28 -0600
parents 62bfb554ab85
children cb6704a7cef2
line wrap: on
line source

if [ "x`whoami`" = "xroot" ] ; then
    PS1='\e];\u@\h: \w [bash]\a[\h:\w] \e[31m\u\e[0m# '
else
    PS1='\[\e];\u@\h: \w [bash]\a\][\h:\w] \[\e[34m\]\u\[\e[0m\]$ '
fi

if [ "$TERM" = "rxvt" ] || [ "$TERM" = "xterm" ] \
  || [ "$TERM" = "xterm-color" ] || [ "$TERM" = "screen" ]; then
        export FANCYTYPE="YES"
else
        export FANCYTYPE="NO"
        PS1='[\h:\w] \u$ '
fi