mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
context: fixing conditionals in for always showing $USER
This commit is contained in:
parent
6512796afe
commit
c65e3217b5
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue