context: fixing conditionals in for always showing $USER

pull/22/head
Ben Hilburn 8 years ago
parent 6512796afe
commit c65e3217b5

@ -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

Loading…
Cancel
Save