summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTslil Clingman <hiato1@gmail.com>2015-02-01 23:11:53 +0200
committerTslil Clingman <hiato1@gmail.com>2015-02-01 23:11:53 +0200
commitb4194e2e13eb50f5b5e354937453723be2756ad0 (patch)
tree7bed04aff7733f4c9a327e4239e302359a194c1a
parentce6884394a82f6b377ec1d659ce59be92fdf5f7c (diff)
Made unicode more tty friendly
-rwxr-xr-xvcs4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcs b/vcs
index bc0fb84..b19dd32 100755
--- a/vcs
+++ b/vcs
@@ -18,7 +18,7 @@ if [[ $1 == "--zsh-colour" ]]; then
cSND="%F{blue}"
cEND="%f"
else
- nstr="✪"
+ nstr="@"
mstr="±"
rstr="↑"
cFST=""
@@ -28,7 +28,7 @@ fi
if [[ -d ".git" || -d "../.git" || -d "../../.git" ]]; then
outp=$(git status)
- VCS_STR="×"
+ VCS_STR="*"
VCS_INF=$(echo "$outp" | head -n 1 | cut -d' ' -f 3-)
check "^Untracked files:$" "$outp"
[[ $? = 0 ]] && VCS_NEW=$nstr