From 5453b8950b994aca608fe71d3a0561893f74edc0 Mon Sep 17 00:00:00 2001 From: James Dixon Date: Fri, 18 Dec 2020 20:19:48 -0500 Subject: [PATCH] reset prompt colors --- files/bash/.bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/bash/.bashrc b/files/bash/.bashrc index fc53b6f..547d3e7 100644 --- a/files/bash/.bashrc +++ b/files/bash/.bashrc @@ -193,7 +193,7 @@ parse_git() { if echo "${STATUS}" | grep -c "branch is behind" &> /dev/null; then printf "\001${unesc_bright_yellow}\002%s" "<"; fi if echo "${STATUS}" | grep -c "Untracked files:" &> /dev/null; then printf "\001${unesc_bright_yellow}\002%s" "?"; fi if echo "${STATUS}" | grep -c "modified:" &> /dev/null; then printf "\001${unesc_bright_yellow}\002%s" "*"; fi - printf "\001${unesc_white}${unesc_reset}\002%s" "]" + printf "\001${unesc_reset}${unesc_bold}${unesc_white}\002%s" "]" fi }