diff options
author | Stéphane Dupille <stephane@dupille.org> | 2015-11-13 14:06:03 +0300 |
---|---|---|
committer | Stéphane Dupille <stephane@dupille.org> | 2015-11-13 14:06:03 +0300 |
commit | 81a4b3907de32b3dfb54fe6b626c1aa2b5faa13b (patch) | |
tree | 68bee40a60292931f84b4321f8258dc1822a3879 /powerlevel9k.zsh-theme | |
parent | 04319d3a95d026927ae08985a899c2754b0586b0 (diff) |
Get terminal capabilities using a zsh builtin for portability
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 0d4b3e7c..b039f0d7 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -947,7 +947,7 @@ function zle-keymap-select { powerlevel9k_init() { # Display a warning if the terminal does not support 256 colors local term_colors - term_colors=$(tput colors) + term_colors=$(echotc Co) if (( term_colors < 256 )); then print -P "%F{red}WARNING!%f Your terminal supports less than 256 colors!" print -P "You should put: %F{blue}export TERM=\"xterm-256color\"%f in your \~\/.zshrc" |