From b801bfe7d0b74bf6f3bda6bd1f1591d40bfc3bc2 Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Tue, 27 Jan 2015 15:27:50 -0800 Subject: [PATCH] Update bash promp --- bash/functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash/functions b/bash/functions index bc243e7..75948b0 100644 --- a/bash/functions +++ b/bash/functions @@ -24,12 +24,12 @@ function parse_git_status { return fi if [[ $(git status 2> /dev/null | grep "working directory clean" | wc -l) -eq 0 ]]; then - echo '∓' + echo ' ∓' fi } function parse_git_branch { - git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' + git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/' } function get-create-date {