diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2019-07-30 16:11:38 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2019-07-30 16:11:38 +0300 |
commit | 89f3ec16d027bcf7d549d0b3e7087d162d91934c (patch) | |
tree | 49035c13384f6e98500191e7254f1aa994e7a693 /internal/wizard.zsh | |
parent | f702fe5b78076eaa326ec8af64a541e14dc0f9b4 (diff) |
better message on quit
Diffstat (limited to 'internal/wizard.zsh')
-rwxr-xr-x | internal/wizard.zsh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/internal/wizard.zsh b/internal/wizard.zsh index abd88591..23ecbdad 100755 --- a/internal/wizard.zsh +++ b/internal/wizard.zsh @@ -139,10 +139,11 @@ function quit() { print -P "Powerlevel10k configuration wizard has been aborted. To run it again, type:" print -P "" print -P " %2Fp9k_configure%f" + print -P "" else - print -P "Powerlevel10k configuration wizard will run again next time unless" - print -P "you define at least one Powerlevel10k configuration option. To define" - print -P "an option that does nothing except for disabling Powerlevel10k" + print -P "Powerlevel10k configuration wizard has been aborted. It will run again" + print -P "next time unless you define at least one Powerlevel10k configuration option." + print -P "To define an option that does nothing except for disabling Powerlevel10k" print -P "configuration wizard, type the following command:" print -P "" print -P " %2Fecho%f %3F'POWERLEVEL9K_MODE='%f >>! $__p9k_zshrc_u" @@ -150,6 +151,7 @@ function quit() { print -P "To run Powerlevel10k configuration wizard right now, type:" print -P "" print -P " %2Fp9k_configure%f" + print -P "" fi } |