diff options
author | Marc Cornellà <marc.cornella@live.com> | 2014-10-09 17:05:48 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2014-11-06 18:33:56 +0100 |
commit | 95d795e8cad7d1a754dfad520309d7a41b69275f (patch) | |
tree | 14bc3e5448b5d2afc822bbe890a12864026dc6d4 /themes/dieter.zsh-theme | |
parent | 4310a15de5d0587ef135f9e12857620c4788dec2 (diff) | |
download | zsh-95d795e8cad7d1a754dfad520309d7a41b69275f.tar.gz zsh-95d795e8cad7d1a754dfad520309d7a41b69275f.tar.bz2 zsh-95d795e8cad7d1a754dfad520309d7a41b69275f.zip |
Change all hostname calls for $HOST or $SHORT_HOST
Diffstat (limited to 'themes/dieter.zsh-theme')
-rw-r--r-- | themes/dieter.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/dieter.zsh-theme b/themes/dieter.zsh-theme index 0a5e9265b..58d9f88a9 100644 --- a/themes/dieter.zsh-theme +++ b/themes/dieter.zsh-theme @@ -21,7 +21,7 @@ local user="%(!.%{$fg[blue]%}.%{$fg[blue]%})%n%{$reset_color%}" # Hostname part. compressed and colorcoded per host_repr array # if not found, regular hostname in default color -local host="@${host_repr[$(hostname)]:-$(hostname)}%{$reset_color%}" +local host="@${host_repr[$HOST]:-$HOST}%{$reset_color%}" # Compacted $PWD local pwd="%{$fg[blue]%}%c%{$reset_color%}" |