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 }