Mercurial > dotfiles
view .shell.d/99.prompt.bash @ 49:60dbe5b005cc
Fix a bug in shell quoting.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Wed, 11 Feb 2009 10:27:43 -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