From c6e8a595ab6ee594b019789f5b366cda1d814e87 Mon Sep 17 00:00:00 2001 From: David Majnemer Date: Sun, 19 Sep 2010 16:40:57 -0500 Subject: [PATCH] make prompt look nicer --- zsh/prompt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zsh/prompt b/zsh/prompt index 9308541..cf819e9 100755 --- a/zsh/prompt +++ b/zsh/prompt @@ -18,7 +18,11 @@ case "${TERM}" in BOLDERRORCOLOR=$'%{\e[01;38;5;9m%}' CLOCKCOLOR=$'%{\e[01;38;5;221m%}' JOBCOLOR=$'%{\e[38;5;30m%}' - BLACKCOLOR=$'%{\e[00;30m%}' + if [ "${TERM_PROGRAM}" = "Apple_Terminal" ] ; then + BLACKCOLOR=$'%{\e[00;30m%}' + else + BLACKCOLOR=$'%{\e[38;5;232m%}' + fi ;; dumb) ;;