From ef041b4364a481f7e65237f93d71bdb1b647e000 Mon Sep 17 00:00:00 2001 From: romkatv Date: Wed, 17 Jul 2019 00:55:34 +0200 Subject: [PATCH] make right prompt multiline; add public_ip --- config/lean.zsh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config/lean.zsh b/config/lean.zsh index 6e59ce5b..52759a5a 100644 --- a/config/lean.zsh +++ b/config/lean.zsh @@ -14,6 +14,7 @@ fi # Line #1 dir # current directory vcs # git status + # Line #2 newline prompt_char # prompt symbol @@ -24,6 +25,7 @@ fi # automatically hidden when the input line reaches it. Right prompt above the # last prompt line gets hidden if it would overlap with left prompt. typeset -ga POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=( + # Line #1 status # exit code of the last command command_execution_time # duration of the last command background_jobs # presence of background jobs @@ -36,6 +38,10 @@ fi # node_version # node.js version # kubecontext # current kubernetes context (https://kubernetes.io/) context # user@host + + # Line #2 + newline + # public_ip # public IP address # time # current time ) @@ -241,6 +247,9 @@ fi # Show the trailing "/default" in kubernetes context. typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_DEFAULT_NAMESPACE=true + # Public IP color. + typeset -g POWERLEVEL9K_PUBLIC_IP_FOREGROUND=144 + # Current time color. typeset -g POWERLEVEL9K_TIME_FOREGROUND=66 # Format for the current time: 09:51:02. See `man 3 strftime`.