diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-11-13 19:44:34 +0100 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-11-13 19:44:34 +0100 |
commit | 50b206b70e069ec0527ed185e5f41a7a7a4b24c5 (patch) | |
tree | fd4f9562d7b356c92b09c789750dd55a9e3485b5 | |
parent | 85dc6f1a20d4dd2596ac4fc22d03777db3059a4e (diff) | |
download | dotfiles-50b206b70e069ec0527ed185e5f41a7a7a4b24c5.tar.gz dotfiles-50b206b70e069ec0527ed185e5f41a7a7a4b24c5.tar.bz2 dotfiles-50b206b70e069ec0527ed185e5f41a7a7a4b24c5.zip |
.bash_prompt: Use `tput setaf 0` for white
Using `tput setaf 0` instead of `tput setaf 256` makes sure that `WHITE` is white instead of the previous color.
Thanks to @rudolph9 for reporting this in #153.
-rw-r--r-- | .bash_prompt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.bash_prompt b/.bash_prompt index 8e719c1..2ce0bed 100644 --- a/.bash_prompt +++ b/.bash_prompt @@ -15,7 +15,7 @@ if tput setaf 1 &> /dev/null; then ORANGE=$(tput setaf 172) GREEN=$(tput setaf 190) PURPLE=$(tput setaf 141) - WHITE=$(tput setaf 256) + WHITE=$(tput setaf 0) else MAGENTA=$(tput setaf 5) ORANGE=$(tput setaf 4) |