diff options
Diffstat (limited to 'functions')
-rw-r--r-- | functions | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -662,7 +662,7 @@ if [[ $USECOLOR = [yY][eE][sS] ]]; then if tput setaf 0 &>/dev/null; then C_CLEAR=$(tput sgr0) # clear text C_MAIN=${C_CLEAR}$(tput bold) # main text - C_OTHER=${C_MAIN}$(tput setaf 4) # prefix & brackets + C_OTHER=${C_MAIN}$(tput setaf 5) # prefix & brackets C_SEPARATOR=${C_MAIN}$(tput setaf 0) # separator C_BUSY=${C_CLEAR}$(tput setaf 6) # busy C_FAIL=${C_MAIN}$(tput setaf 1) # failed @@ -673,7 +673,7 @@ if [[ $USECOLOR = [yY][eE][sS] ]]; then else C_CLEAR="\e[m" # clear text C_MAIN="\e[;1m" # main text - C_OTHER="\e[1;34m" # prefix & brackets + C_OTHER="\e[1;35m" # prefix & brackets C_SEPARATOR="\e[1;30m" # separator C_BUSY="\e[;36m" # busy C_FAIL="\e[1;31m" # failed |