diff options
author | Henry Chang <mr.changyuheng@gmail.com> | 2017-04-16 09:04:33 +0300 |
---|---|---|
committer | Henry Chang <mr.changyuheng@gmail.com> | 2017-04-16 09:04:33 +0300 |
commit | 18fc317cf7876642ea5b3f38bb4dcddde07aa134 (patch) | |
tree | d7464cdf6bb330e71fe63869cc48d59cf9650fef /powerlevel9k.zsh-theme | |
parent | 37174ea91191108a1d5af0c6f0dece6ceb077b0e (diff) |
Set tick to color name green instead of color code
So the tick will not be too bright in light background color scheme such
as Solarized Light.
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rwxr-xr-x | powerlevel9k.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index bbd1ec44..cfb34292 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -1003,7 +1003,7 @@ prompt_status() { "$1_prompt_segment" "$0_ERROR" "$2" "$DEFAULT_COLOR" "red" "" 'FAIL_ICON' fi elif [[ "$POWERLEVEL9K_STATUS_VERBOSE" == true || "$POWERLEVEL9K_STATUS_OK_IN_NON_VERBOSE" == true ]]; then - "$1_prompt_segment" "$0_OK" "$2" "$DEFAULT_COLOR" "046" "" 'OK_ICON' + "$1_prompt_segment" "$0_OK" "$2" "$DEFAULT_COLOR" "green" "" 'OK_ICON' fi } |