From d3d43ae6c7297e6dabb674c03673d765ce3dddfb Mon Sep 17 00:00:00 2001 From: Spotlight Date: Tue, 2 Nov 2021 23:26:44 -0500 Subject: [PATCH] Don't use weird yellow coloring for context --- p10k.zsh | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/p10k.zsh b/p10k.zsh index b1654ee..2c1411e 100644 --- a/p10k.zsh +++ b/p10k.zsh @@ -478,14 +478,8 @@ ##################################[ context: user@hostname ]################################## # Context color when running with privileges. - typeset -g POWERLEVEL9K_CONTEXT_ROOT_FOREGROUND=1 - typeset -g POWERLEVEL9K_CONTEXT_ROOT_BACKGROUND=0 - # Context color in SSH without privileges. - typeset -g POWERLEVEL9K_CONTEXT_{REMOTE,REMOTE_SUDO}_FOREGROUND=3 - typeset -g POWERLEVEL9K_CONTEXT_{REMOTE,REMOTE_SUDO}_BACKGROUND=0 - # Default context color (no privileges, no SSH). - typeset -g POWERLEVEL9K_CONTEXT_FOREGROUND=3 - typeset -g POWERLEVEL9K_CONTEXT_BACKGROUND=0 + typeset -g POWERLEVEL9K_CONTEXT_FOREGROUND=0 + typeset -g POWERLEVEL9K_CONTEXT_BACKGROUND=7 # Context format when running with privileges: user@hostname. typeset -g POWERLEVEL9K_CONTEXT_ROOT_TEMPLATE='%n@%m'