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