Mercurial > dotfiles
diff .shell.d/99.prompt.bash @ 39:62bfb554ab85
Reorganize zsh files so that bash can work as well.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Mon, 26 Jan 2009 13:21:00 -0600 |
parents | |
children | cb6704a7cef2 |
line wrap: on
line diff
new file mode 100644 --- /dev/null +++ b/.shell.d/99.prompt.bash @@ -0,0 +1,13 @@ +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