summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorromkatv <roman.perepelitsa@gmail.com>2019-07-31 19:21:37 +0300
committerromkatv <roman.perepelitsa@gmail.com>2019-07-31 19:21:37 +0300
commita6b572da4597626fb55b11abb9d3fb0dc255a5cd (patch)
tree5811d3e3b3a83b985e236a8cd2646b306216202a
parent070697a91401e1fb06ca7affa306b303b6d7701c (diff)
add p10k configure
-rw-r--r--README.md6
-rw-r--r--config/p10k-pure.zsh2
-rw-r--r--internal/configure.zsh2
-rwxr-xr-xinternal/p10k.zsh10
-rwxr-xr-xinternal/wizard.zsh6
5 files changed, 18 insertions, 8 deletions
diff --git a/README.md b/README.md
index 5e91f68f..1ff0bea0 100644
--- a/README.md
+++ b/README.md
@@ -83,7 +83,7 @@ Add `antibody bundle romkatv/powerlevel10k` to your `~/.zshrc`.
### For new users
On the first run Powerlevel10k configuration wizard will ask you a few questions and configure
-your prompt. If it doesn't trigger automatically, type `p9k_configure`.
+your prompt. If it doesn't trigger automatically, type `p10k configure`.
### For Powerlevel9k users
@@ -92,7 +92,7 @@ will pick them up and provide you with the same prompt UI you are used to. Power
all configuration options used by Powerlevel9k. See Powerlevel9k
[configuration guide](https://github.com/bhilburn/powerlevel9k#prompt-customization).
-To go beyond the functionality of Powerlevel9k, type `p9k_configure` and explore the unique styles
+To go beyond the functionality of Powerlevel9k, type `p10k configure` and explore the unique styles
and features Powerlevel10k has to offer.
## Fonts
@@ -120,7 +120,7 @@ sudo apt install libglib2.0-bin
gsettings set org.gnome.desktop.interface monospace-font-name 'MesloLGS NF 11'
```
-Run `p9k_configure` to pick the best style for your new font.
+Run `p10k configure` to pick the best style for your new font.
_Using a different terminal and know how to set font for it? Share your knowledge by sending a PR
to expand the list!_
diff --git a/config/p10k-pure.zsh b/config/p10k-pure.zsh
index 271504e2..aa6e5b7f 100644
--- a/config/p10k-pure.zsh
+++ b/config/p10k-pure.zsh
@@ -11,7 +11,7 @@
# For example, just like in Pure, prompt will provide no indication of Git status being stale.
# This is likely to make user experience worse than with any other Powerlevel10k config. If
# you like the general style of Pure but not particularly attached to all its quirks, type
-# `p9k_configure` while having Powerlevel10k theme active and pick lean style.
+# `p10k configure` while having Powerlevel10k theme active and pick lean style.
# Temporarily disable aliases.
if [[ -o 'aliases' ]]; then
diff --git a/internal/configure.zsh b/internal/configure.zsh
index 9e676183..4dc8de1c 100644
--- a/internal/configure.zsh
+++ b/internal/configure.zsh
@@ -14,7 +14,7 @@ function _p9k_can_configure() {
setopt err_return extended_glob no_prompt_{bang,subst} prompt_{cr,percent,sp}
[[ $1 == '-q' ]] && local -i q=1 || local -i q=0
function $0_error() {
- (( q )) || print -P "%1F[ERROR]%f %Bp9k_configure%b: $1" >&2
+ (( q )) || print -P "%1F[ERROR]%f %Bp10k configure%b: $1" >&2
return 1
}
{
diff --git a/internal/p10k.zsh b/internal/p10k.zsh
index 4059bd87..71a47362 100755
--- a/internal/p10k.zsh
+++ b/internal/p10k.zsh
@@ -4329,6 +4329,16 @@ prompt_powerlevel9k_teardown() {
fi
}
+function p10k() {
+ emulate -L zsh && setopt no_hist_expand extended_glob
+ if [[ $# == 1 && $1 == configure ]]; then
+ p9k_configure
+ else
+ print -P "Usage: %2Fp10k%f %Bconfigure%b" >&2
+ return 1
+ fi
+}
+
# Hook for zplugin.
powerlevel10k_plugin_unload() { prompt_powerlevel9k_teardown; }
diff --git a/internal/wizard.zsh b/internal/wizard.zsh
index a26de7df..066be483 100755
--- a/internal/wizard.zsh
+++ b/internal/wizard.zsh
@@ -138,7 +138,7 @@ function quit() {
if (( force )); then
print -P "Powerlevel10k configuration wizard has been aborted. To run it again, type:"
print -P ""
- print -P " %2Fp9k_configure%f"
+ print -P " %2Fp10k%f %Bconfigure%b"
print -P ""
else
print -P "Powerlevel10k configuration wizard has been aborted. It will run again"
@@ -150,7 +150,7 @@ function quit() {
print -P ""
print -P "To run Powerlevel10k configuration wizard right now, type:"
print -P ""
- print -P " %2Fp9k_configure%f"
+ print -P " %2Fp10k%f %Bconfigure%b"
print -P ""
fi
exit 1
@@ -936,7 +936,7 @@ function write_zshrc() {
fi
local comments=(
- "# To customize prompt, run \`p9k_configure\` or edit $__p9k_cfg_path_u."
+ "# To customize prompt, run \`p10k configure\` or edit $__p9k_cfg_path_u."
)
print -lr -- "" $comments "source $__p9k_cfg_path_u" >>$__p9k_zshrc