From da57b313ed544d291753291f1b4ac7ca89a9e745 Mon Sep 17 00:00:00 2001 From: James Dixon Date: Fri, 18 Dec 2020 20:01:05 -0500 Subject: [PATCH] color fix --- files/bash/.bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/bash/.bashrc b/files/bash/.bashrc index f85d151..fc53b6f 100644 --- a/files/bash/.bashrc +++ b/files/bash/.bashrc @@ -185,7 +185,7 @@ parse_git() { else printf "\001${unesc_reset}${unesc_bold}\002:(%s)" "${BRANCH}" printf "\001${unesc_white}\002%s" "[" - if echo "${STATUS}" | grep -c "nothing to commit" &> /dev/null; then printf "\001${unesc_blue}\002%s" "="; fi + if echo "${STATUS}" | grep -c "nothing to commit" &> /dev/null; then printf "\001${unesc_bright_blue}\002%s" "="; fi if echo "${STATUS}" | grep -c "renamed:" &> /dev/null; then printf "\001${unesc_red}\002%s" "%"; fi if echo "${STATUS}" | grep -c "deleted:" &> /dev/null; then printf "\001${unesc_red}\002%s" "-"; fi if echo "${STATUS}" | grep -c "new file:" &> /dev/null; then printf "\001${unesc_green}\002%s" "+"; fi