diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-10-21 17:23:15 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-10-21 17:23:15 +0300 |
commit | f0159ca6425b1c021a3b17d5ce59e867cbd608da (patch) | |
tree | 04713a4f12a42b1d3bc1c23585782e4509b12c3f /internal | |
parent | fdc0ee3708342553ef5ac6d6b0dbdd0d2e3e427d (diff) |
better wizard intro when installing z4h
Diffstat (limited to 'internal')
-rw-r--r-- | internal/wizard.zsh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/internal/wizard.zsh b/internal/wizard.zsh index 5999724d..527f6cef 100644 --- a/internal/wizard.zsh +++ b/internal/wizard.zsh @@ -423,9 +423,12 @@ function ask() { local -i greeting_printed=0 function print_greeting() { - (( in_z4h_wizard )) && return (( greeting_printed )) && return - if (( force )); then + if (( in_z4h_wizard )); then + flowing -c %3FZsh for Humans%f uses %4FPowerlevel10k%f to print command \ + line prompt. This wizard will ask you a few questions and configure \ + prompt for you. + else (( force )); then flowing -c This is %4FPowerlevel10k configuration wizard%f. \ It will ask you a few questions and configure your prompt. else |