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 | |
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')
-rw-r--r-- | themes/candy-kingdom.zsh-theme | 2 | ||||
-rw-r--r-- | themes/dieter.zsh-theme | 2 | ||||
-rw-r--r-- | themes/fino-time.zsh-theme | 2 | ||||
-rw-r--r-- | themes/fino.zsh-theme | 2 | ||||
-rw-r--r-- | themes/kardan.zsh-theme | 2 | ||||
-rw-r--r-- | themes/michelebologna.zsh-theme | 2 | ||||
-rw-r--r-- | themes/ys.zsh-theme | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/themes/candy-kingdom.zsh-theme b/themes/candy-kingdom.zsh-theme index 718977d90..889128758 100644 --- a/themes/candy-kingdom.zsh-theme +++ b/themes/candy-kingdom.zsh-theme @@ -13,7 +13,7 @@ patches: <patches|join( → )|pre_applied(%{$fg[yellow]%})|post_applied(%{$reset } function box_name { - [ -f ~/.box-name ] && cat ~/.box-name || hostname -s + [ -f ~/.box-name ] && cat ~/.box-name || echo $SHORT_HOST || echo $HOST } PROMPT=' 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%}" diff --git a/themes/fino-time.zsh-theme b/themes/fino-time.zsh-theme index 901c4d99f..67b6b6e08 100644 --- a/themes/fino-time.zsh-theme +++ b/themes/fino-time.zsh-theme @@ -21,7 +21,7 @@ function prompt_char { } function box_name { - [ -f ~/.box-name ] && cat ~/.box-name || hostname -s + [ -f ~/.box-name ] && cat ~/.box-name || echo $SHORT_HOST || echo $HOST } diff --git a/themes/fino.zsh-theme b/themes/fino.zsh-theme index 411dec9b9..50d41e899 100644 --- a/themes/fino.zsh-theme +++ b/themes/fino.zsh-theme @@ -17,7 +17,7 @@ function prompt_char { } function box_name { - [ -f ~/.box-name ] && cat ~/.box-name || hostname -s + [ -f ~/.box-name ] && cat ~/.box-name || echo $SHORT_HOST || echo $HOST } local ruby_env='' diff --git a/themes/kardan.zsh-theme b/themes/kardan.zsh-theme index fd6586a9d..9a3d59109 100644 --- a/themes/kardan.zsh-theme +++ b/themes/kardan.zsh-theme @@ -1,7 +1,7 @@ # Simple theme based on my old zsh settings. function get_host { - echo '@'`hostname`'' + echo '@'$HOST } PROMPT='> ' diff --git a/themes/michelebologna.zsh-theme b/themes/michelebologna.zsh-theme index ef4c6d740..a7599c8f5 100644 --- a/themes/michelebologna.zsh-theme +++ b/themes/michelebologna.zsh-theme @@ -17,7 +17,7 @@ USERNAME_NORMAL_COLOR=$WHITE USERNAME_ROOT_COLOR=$RED HOSTNAME_NORMAL_COLOR=$BLUE # uncomment next line if you want auto-generated hostname color -#for i in `hostname`; HOSTNAME_NORMAL_COLOR=$COLOR_ARRAY[$[((#i))%7+1]] +#for i in $HOST; HOSTNAME_NORMAL_COLOR=$COLOR_ARRAY[$[((#i))%7+1]] HOSTNAME_ROOT_COLOR=$RED HOSTNAME_COLOR=%(!.$HOSTNAME_ROOT_COLOR.$HOSTNAME_NORMAL_COLOR) CURRENT_DIR_COLOR=$CYAN diff --git a/themes/ys.zsh-theme b/themes/ys.zsh-theme index 65448964d..017139100 100644 --- a/themes/ys.zsh-theme +++ b/themes/ys.zsh-theme @@ -8,7 +8,7 @@ # Machine name. function box_name { - [ -f ~/.box-name ] && cat ~/.box-name || hostname + [ -f ~/.box-name ] && cat ~/.box-name || echo $HOST } # Directory info. |