Update gitprompt colors

This commit is contained in:
Talia 2020-02-05 09:41:58 +01:00
parent d53cdfc901
commit e7a7c5e889
1 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ git__prompt () {
then
/bin/echo -ne # "${gray}:\033[01;36m$modif" # No modified files
else
/bin/echo -ne " ${green}≠$modif" # Modified files
/bin/echo -ne " \033[01;36m≠$modif" # Modified files
fi
if [ "$added" -ne 0 ]
then
@ -109,7 +109,7 @@ git__prompt () {
fi
if [ "$untracked" -ne 0 ]
then
/bin/echo -ne " ${gray}+$untracked"
/bin/echo -ne " ${yellow}+$untracked"
fi
else
exit 1