From c65e3217b5fcecf84773c0c9a8a5805a9a97d812 Mon Sep 17 00:00:00 2001 From: Ben Hilburn Date: Tue, 14 Feb 2017 08:58:40 -0500 Subject: [PATCH] context: fixing conditionals in for always showing $USER --- powerlevel9k.zsh-theme | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index cf6ad5df..5960dbe8 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -550,7 +550,7 @@ prompt_context() { local content="" - if [[ "POWERLEVEL9K_ALWAYS_SHOW_CONTEXT" == true ]] || [[ "$USER" != "$DEFAULT_USER" ]] || [[ -n "$SSH_CLIENT" || -n "$SSH_TTY" ]]; then + if [[ "$POWERLEVEL9K_ALWAYS_SHOW_CONTEXT" == true ]] || [[ "$USER" != "$DEFAULT_USER" ]] || [[ -n "$SSH_CLIENT" || -n "$SSH_TTY" ]]; then if [[ $(print -P "%#") == '#' ]]; then current_state="ROOT" @@ -558,7 +558,7 @@ prompt_context() { content="$USER@${POWERLEVEL9K_CONTEXT_HOST_DEPTH}" - elif [[ "POWERLEVEL9K_ALWAYS_SHOW_USER" == true ]]; then + elif [[ "$POWERLEVEL9K_ALWAYS_SHOW_USER" == true ]]; then content="$USER" else return