mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-16 17:50:09 +00:00
make right prompt multiline; add public_ip
This commit is contained in:
parent
30c160926d
commit
ef041b4364
1 changed files with 9 additions and 0 deletions
|
@ -14,6 +14,7 @@ fi
|
||||||
# Line #1
|
# Line #1
|
||||||
dir # current directory
|
dir # current directory
|
||||||
vcs # git status
|
vcs # git status
|
||||||
|
|
||||||
# Line #2
|
# Line #2
|
||||||
newline
|
newline
|
||||||
prompt_char # prompt symbol
|
prompt_char # prompt symbol
|
||||||
|
@ -24,6 +25,7 @@ fi
|
||||||
# automatically hidden when the input line reaches it. Right prompt above the
|
# automatically hidden when the input line reaches it. Right prompt above the
|
||||||
# last prompt line gets hidden if it would overlap with left prompt.
|
# last prompt line gets hidden if it would overlap with left prompt.
|
||||||
typeset -ga POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(
|
typeset -ga POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(
|
||||||
|
# Line #1
|
||||||
status # exit code of the last command
|
status # exit code of the last command
|
||||||
command_execution_time # duration of the last command
|
command_execution_time # duration of the last command
|
||||||
background_jobs # presence of background jobs
|
background_jobs # presence of background jobs
|
||||||
|
@ -36,6 +38,10 @@ fi
|
||||||
# node_version # node.js version
|
# node_version # node.js version
|
||||||
# kubecontext # current kubernetes context (https://kubernetes.io/)
|
# kubecontext # current kubernetes context (https://kubernetes.io/)
|
||||||
context # user@host
|
context # user@host
|
||||||
|
|
||||||
|
# Line #2
|
||||||
|
newline
|
||||||
|
# public_ip # public IP address
|
||||||
# time # current time
|
# time # current time
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -241,6 +247,9 @@ fi
|
||||||
# Show the trailing "/default" in kubernetes context.
|
# Show the trailing "/default" in kubernetes context.
|
||||||
typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_DEFAULT_NAMESPACE=true
|
typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_DEFAULT_NAMESPACE=true
|
||||||
|
|
||||||
|
# Public IP color.
|
||||||
|
typeset -g POWERLEVEL9K_PUBLIC_IP_FOREGROUND=144
|
||||||
|
|
||||||
# Current time color.
|
# Current time color.
|
||||||
typeset -g POWERLEVEL9K_TIME_FOREGROUND=66
|
typeset -g POWERLEVEL9K_TIME_FOREGROUND=66
|
||||||
# Format for the current time: 09:51:02. See `man 3 strftime`.
|
# Format for the current time: 09:51:02. See `man 3 strftime`.
|
||||||
|
|
Loading…
Reference in a new issue