From 90dfa6fc125c17094a016faa5f013f79768302c7 Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Mon, 19 Nov 2018 21:22:10 +0100 Subject: [PATCH] Change bash git up/down arrow color --- bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bashrc b/bashrc index cc67b33..3592b45 100644 --- a/bashrc +++ b/bashrc @@ -83,9 +83,9 @@ git__prompt () { echo -ne "${gray}:${yellow}↓${behind}" elif [ -z $behind ] then - echo -ne "${gray}:${blue}↑${ahead}" + echo -ne "${gray}:${green}↑${ahead}" else - echo -ne "${gray}:${red}↓${behind}↑${ahead}" + echo -ne "${gray}:${red}↓${behind}${yellow}↑${ahead}" fi fi }