mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
fix(michelebologna): use $HOST
variable instead of running hostname
(#10724)
This commit is contained in:
parent
0b0af4df6a
commit
201e9dea59
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ local username_root_color=$red
|
|||
local hostname_root_color=$red
|
||||
|
||||
# calculating hostname color with hostname characters
|
||||
for i in `hostname`; local hostname_normal_color=$color_array[$[((#i))%7+1]]
|
||||
for i in $HOST; local hostname_normal_color=$color_array[$[((#i))%7+1]]
|
||||
local -a hostname_color
|
||||
hostname_color=%(!.$hostname_root_color.$hostname_normal_color)
|
||||
|
||||
|
|
Loading…
Reference in a new issue