diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2020-01-21 13:39:39 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2020-01-21 13:39:39 +0300 |
commit | fc7178ad923aff0f4a395336062800ebd6028ffc (patch) | |
tree | a3be5c2e1ea266177356655c268d211d19ed0865 /internal/wizard.zsh | |
parent | 7144ebb46531d7bde302ad9e323cf48fc461c90f (diff) |
check for truecolor before offering snazzy
Diffstat (limited to 'internal/wizard.zsh')
-rwxr-xr-x | internal/wizard.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/wizard.zsh b/internal/wizard.zsh index 92f94bb3..004037f4 100755 --- a/internal/wizard.zsh +++ b/internal/wizard.zsh @@ -641,7 +641,7 @@ function ask_color_scheme() { ;; esac done - elif [[ $style == pure ]]; then + elif [[ $style == pure && $has_truecolor == 1 ]]; then while true; do clear flowing -c "%BPrompt Colors%b" |