diff options
author | Charles Peterson <cpeterson@brokerbin.com> | 2017-12-31 23:34:01 +0300 |
---|---|---|
committer | Charles Peterson <cpeterson@brokerbin.com> | 2017-12-31 23:34:01 +0300 |
commit | 0c943ac6d5beebc381b3e49858a5ef6861289d29 (patch) | |
tree | 291f558b0fca70edd8f077ba28400f73bfe7b973 /functions/colors.zsh | |
parent | ef0f8f0ba4afb4e81cd931fea1fb81edf8c5633d (diff) |
colors checking optimized and added tput for check the colors
moved to colors functions, because it makes sense.
Diffstat (limited to 'functions/colors.zsh')
-rw-r--r-- | functions/colors.zsh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/functions/colors.zsh b/functions/colors.zsh index 3a7da27f..253de7cb 100644 --- a/functions/colors.zsh +++ b/functions/colors.zsh @@ -6,6 +6,22 @@ # https://github.com/bhilburn/powerlevel9k ################################################################ +function termColors() { + local term_colors + + if which tput &>/dev/null; then + term_colors=$(tput colors) + else + term_colors=$(echotc Co) + fi + if (( ! $? && ${term_colors:-0} < 256 )); then + print -P "%F{red}WARNING!%f Your terminal appears to support fewer than 256 colors!" + print -P "If your terminal supports 256 colors, please export the appropriate environment variable" + print -P "_before_ loading this theme in your \~\/.zshrc. In most terminal emulators, putting" + print -P "%F{blue}export TERM=\"xterm-256color\"%f at the top of your \~\/.zshrc is sufficient." + fi +} + # get the proper color code if it does not exist as a name. function getColor() { # no need to check numerical values |