mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
Added support for customizable context segment
This commit is contained in:
parent
95344af327
commit
554f8ed8ee
2 changed files with 12 additions and 4 deletions
12
README.md
12
README.md
|
@ -257,7 +257,14 @@ only print if you are not your 'normal' user (including if you are root), or if
|
||||||
you are SSH'd to a remote host.
|
you are SSH'd to a remote host.
|
||||||
|
|
||||||
To use this feature, make sure the `context` segment is enabled in your prompt
|
To use this feature, make sure the `context` segment is enabled in your prompt
|
||||||
elements (it is by default), and define a `DEFAULT_USER` in your `~/.zshrc`:
|
elements (it is by default), and define a `DEFAULT_USER` in your `~/.zshrc`.
|
||||||
|
|
||||||
|
You can customize the `context` segment. For example, you can make it to print the
|
||||||
|
full hostname by setting
|
||||||
|
```
|
||||||
|
POWERLEVEL9K_CONTEXT_TEMPLATE="%n@`hostname -f`"
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
You can set the `POWERLEVEL9K_CONTEXT_HOST_DEPTH` variable to change how the
|
You can set the `POWERLEVEL9K_CONTEXT_HOST_DEPTH` variable to change how the
|
||||||
hostname is displayed. See (ZSH Manual)[http://zsh.sourceforge.net/Doc/Release/Prompt-Expansion.html#Login-information]
|
hostname is displayed. See (ZSH Manual)[http://zsh.sourceforge.net/Doc/Release/Prompt-Expansion.html#Login-information]
|
||||||
|
@ -269,9 +276,10 @@ end of the hostname.
|
||||||
| Variable | Default Value | Description |
|
| Variable | Default Value | Description |
|
||||||
|----------|---------------|-------------|
|
|----------|---------------|-------------|
|
||||||
|`DEFAULT_USER`|None|Username to consider a "default context".|
|
|`DEFAULT_USER`|None|Username to consider a "default context".|
|
||||||
|`POWERLEVEL9K_CONTEXT_HOST_DEPTH`|%m|Customizable host depth on prompt.|
|
|
||||||
|`POWERLEVEL9K_ALWAYS_SHOW_CONTEXT`|false|Always show this segment, including $USER and hostname.|
|
|`POWERLEVEL9K_ALWAYS_SHOW_CONTEXT`|false|Always show this segment, including $USER and hostname.|
|
||||||
|`POWERLEVEL9K_ALWAYS_SHOW_USER`|false|Always show the username, but conditionalize the hostname.|
|
|`POWERLEVEL9K_ALWAYS_SHOW_USER`|false|Always show the username, but conditionalize the hostname.|
|
||||||
|
|`DEFAULT_USER`|None|Username to consider a "default context" (you can also use `$USER`)|
|
||||||
|
|`POWERLEVEL9K_CONTEXT_TEMPLATE`|%n@%m|Default context prompt (username@machine). Refer to the [ZSH Documentation](http://zsh.sourceforge.net/Doc/Release/Prompt-Expansion.html) for all possible expansions, including deeper host depths.|
|
||||||
|
|
||||||
##### dir
|
##### dir
|
||||||
|
|
||||||
|
|
|
@ -539,7 +539,7 @@ prompt_public_ip() {
|
||||||
# Note that if $DEFAULT_USER is not set, this prompt segment will always print
|
# Note that if $DEFAULT_USER is not set, this prompt segment will always print
|
||||||
set_default POWERLEVEL9K_ALWAYS_SHOW_CONTEXT false
|
set_default POWERLEVEL9K_ALWAYS_SHOW_CONTEXT false
|
||||||
set_default POWERLEVEL9K_ALWAYS_SHOW_USER false
|
set_default POWERLEVEL9K_ALWAYS_SHOW_USER false
|
||||||
set_default POWERLEVEL9K_CONTEXT_HOST_DEPTH "%m"
|
set_default POWERLEVEL9K_CONTEXT_TEMPLATE "%n@%m"
|
||||||
prompt_context() {
|
prompt_context() {
|
||||||
local current_state="DEFAULT"
|
local current_state="DEFAULT"
|
||||||
typeset -AH context_states
|
typeset -AH context_states
|
||||||
|
@ -556,7 +556,7 @@ prompt_context() {
|
||||||
current_state="ROOT"
|
current_state="ROOT"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
content="$USER@${POWERLEVEL9K_CONTEXT_HOST_DEPTH}"
|
content="${POWERLEVEL9K_CONTEXT_TEMPLATE}"
|
||||||
|
|
||||||
elif [[ "$POWERLEVEL9K_ALWAYS_SHOW_USER" == true ]]; then
|
elif [[ "$POWERLEVEL9K_ALWAYS_SHOW_USER" == true ]]; then
|
||||||
content="$USER"
|
content="$USER"
|
||||||
|
|
Loading…
Reference in a new issue