From d57b3ccaacb0ea685a63b08c197c9b0ed7d1ffe9 Mon Sep 17 00:00:00 2001 From: Harald Nordgren Date: Fri, 3 Jun 2016 15:00:30 +0200 Subject: [PATCH] Peepcode fix for OS X --- themes/peepcode.zsh-theme | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/themes/peepcode.zsh-theme b/themes/peepcode.zsh-theme index 1db6b8666..98e0c168f 100644 --- a/themes/peepcode.zsh-theme +++ b/themes/peepcode.zsh-theme @@ -23,7 +23,8 @@ git_mode() { git_dirty() { if [[ "$repo_path" != '.' && `git ls-files -m` != "" ]]; then - echo " %{$fg_bold[grey]%}✗%{$reset_color%}" + #echo " %{$fg_bold[grey]%}✗%{$reset_color%}" + echo " %{$fg_bold[grey]%}X%{$reset_color%}" fi }