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) ;;