summaryrefslogtreecommitdiff
path: root/themes/agnoster.zsh-theme
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2014-11-06 10:42:38 -0800
committerRobby Russell <robby@planetargon.com>2014-11-06 10:42:38 -0800
commit7f75bb90e326fdb39de37c14a0813e52801b1bba (patch)
tree14bc3e5448b5d2afc822bbe890a12864026dc6d4 /themes/agnoster.zsh-theme
parent7034b01cd10cebb2658f54aa07ac0ce5ee64e0e0 (diff)
parent95d795e8cad7d1a754dfad520309d7a41b69275f (diff)
downloadzsh-7f75bb90e326fdb39de37c14a0813e52801b1bba.tar.gz
zsh-7f75bb90e326fdb39de37c14a0813e52801b1bba.tar.bz2
zsh-7f75bb90e326fdb39de37c14a0813e52801b1bba.zip
Merge pull request #3223 from mcornella/use-special-vars
Use special variables where we can
Diffstat (limited to 'themes/agnoster.zsh-theme')
-rw-r--r--themes/agnoster.zsh-theme6
1 files changed, 2 insertions, 4 deletions
diff --git a/themes/agnoster.zsh-theme b/themes/agnoster.zsh-theme
index 2b33c48bc..7a62bd860 100644
--- a/themes/agnoster.zsh-theme
+++ b/themes/agnoster.zsh-theme
@@ -60,10 +60,8 @@ prompt_end() {
# Context: user@hostname (who am I and where am I)
prompt_context() {
- local user=`whoami`
-
- if [[ "$user" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
- prompt_segment black default "%(!.%{%F{yellow}%}.)$user@%m"
+ if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
+ prompt_segment black default "%(!.%{%F{yellow}%}.)$USER@%m"
fi
}