mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2025-12-25 22:22:31 +01:00
Merge 37b87d7e5e into f5d61840ae
This commit is contained in:
commit
a1e4dd23d8
8 changed files with 232 additions and 13 deletions
|
|
@ -101,6 +101,7 @@
|
|||
# battery # internal battery
|
||||
# wifi # wifi speed
|
||||
# example # example user-defined segment (see prompt_example function below)
|
||||
# docker # Docker containers running and exited (https://www.docker.io)
|
||||
)
|
||||
|
||||
# Defines character set used by powerlevel10k. It's best to let `p10k configure` set it for you.
|
||||
|
|
@ -275,6 +276,13 @@
|
|||
# the full directory that was used in previous commands.
|
||||
typeset -g POWERLEVEL9K_DIR_HYPERLINK=false
|
||||
|
||||
# If POWERLEVEL9K_DIR_HYPERLINK is true and using WSL, then set this to make the links work:
|
||||
# You must also map this drive letter on the windows side:
|
||||
# ```
|
||||
# net use L: \\wsl$\Ubuntu-20.04 /persistent:yes
|
||||
# ```
|
||||
# typeset -g POWERLEVEL9K_WSL_NETWORK_DRIVE=L:
|
||||
|
||||
# Enable special styling for non-writable and non-existent directories. See POWERLEVEL9K_LOCK_ICON
|
||||
# and POWERLEVEL9K_DIR_CLASSES below.
|
||||
typeset -g POWERLEVEL9K_DIR_SHOW_WRITABLE=v3
|
||||
|
|
@ -1271,6 +1279,20 @@
|
|||
typeset -g POWERLEVEL9K_TERRAFORM_OTHER_BACKGROUND=0
|
||||
# typeset -g POWERLEVEL9K_TERRAFORM_OTHER_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||
|
||||
#############[ docker: shows the whale when online, and the # running and exited containers (https://www.docker.io/) ]#############
|
||||
# typeset -g POWERLEVEL9K_DOCKER_ICON='🐳'
|
||||
# typeset -g POWERLEVEL9K_DOCKER_CONTAINER_ONLINE_ICON=''
|
||||
# typeset -g POWERLEVEL9K_DOCKER_CONTAINER_ONLINE_ICON=''
|
||||
# typeset -g POWERLEVEL9K_DOCKER_CONTAINER_ONLINE_ICON=''
|
||||
# typeset -g POWERLEVEL9K_DOCKER_CONTAINER_PAUSE_ICON=''
|
||||
# typeset -g POWERLEVEL9K_DOCKER_CONTAINER_EXIT_ICON=''
|
||||
# typeset -g POWERLEVEL9K_DOCKER_CONTAINER_ONLINE_VISUAL_IDENTIFIER_EXPANSION=''
|
||||
# typeset -g POWERLEVEL9K_DOCKER_CONTAINER_ONLINE_VISUAL_IDENTIFIER_EXPANSION=''
|
||||
# typeset -g POWERLEVEL9K_DOCKER_CONTAINER_ONLINE_VISUAL_IDENTIFIER_EXPANSION=''
|
||||
# typeset -g POWERLEVEL9K_DOCKER_CONTAINER_PAUSE_VISUAL_IDENTIFIER_EXPANSION=''
|
||||
# typeset -g POWERLEVEL9K_DOCKER_CONTAINER_EXIT_VISUAL_IDENTIFIER_EXPANSION=''
|
||||
# typeset -g POWERLEVEL9K_DOCKER_CONTENT_EXPANSION='${DOCKER_ONLINE_CONTENT_EXPANSION}${DOCKER_PAUSE_CONTENT_EXPANSION}${DOCKER_EXIT_CONTENT_EXPANSION}'
|
||||
|
||||
#############[ kubecontext: current kubernetes context (https://kubernetes.io/) ]#############
|
||||
# Show kubecontext only when the the command you are typing invokes one of these tools.
|
||||
# Tip: Remove the next line to always show kubecontext.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue