1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2025-10-17 19:41:01 +00:00

Colon before path should not be bold.

This commit is contained in:
Holger Just 2010-08-03 16:35:02 +02:00
parent cc5a9a40d5
commit 517df0c895

View File

@ -177,7 +177,7 @@ ps1_pwd='\[\033[1;30m\]\W\[\033[00m\]'
# Building $PS1.
if [ -n "$ps1_user" ] && [ -n "$ps1_host" ]; then ps1_user="$ps1_user@"; fi
PS1="$ps1_user$ps1_host"
if [ "$PS1" != "" ]; then PS1="$PS1\[\033[01;30m\]:\[\033[00m\]"; fi
if [ "$PS1" != "" ]; then PS1="$PS1\[\033[00m\]:"; fi
export PS1="$PS1$ps1_pwd$ps1_vcs$ps1_ruby \$ "