2018-03-14 13:33:11 +00:00
|
|
|
# make word splitting behave like bash
|
2018-03-10 04:04:29 +00:00
|
|
|
setopt SH_WORD_SPLIT
|
|
|
|
|
|
|
|
# gpg-agent
|
|
|
|
export GPG_TTY=$(tty)
|
|
|
|
gpg-connect-agent updatestartuptty /bye >/dev/null
|
|
|
|
|
2018-10-25 22:27:08 +00:00
|
|
|
# Color for hostname
|
|
|
|
function get_hostname_color () {
|
|
|
|
local col
|
|
|
|
for hash_func in md5sum sha1sum sha256sum; do
|
|
|
|
col="$(printf "%03d" "$((16#$(hostname | $hash_func | head -c2)))")"
|
|
|
|
if [[ $col -ne 0 ]] \
|
|
|
|
&& [[ $col -lt 16 || $col -gt 21 ]] \
|
|
|
|
&& [[ $col -lt 232 || $col -gt 243 ]]; then
|
|
|
|
# we found a color that isn't too dark
|
|
|
|
echo $col>>~/test.log
|
|
|
|
break
|
|
|
|
else
|
|
|
|
# default color
|
|
|
|
col="002"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
printf "$col"
|
|
|
|
}
|
2018-10-25 23:20:38 +00:00
|
|
|
case "$HOST" in
|
|
|
|
"devbox")
|
|
|
|
ZSH_THEME_HOSTNAME_COLOR="002"
|
|
|
|
;;
|
|
|
|
"pallet")
|
|
|
|
ZSH_THEME_HOSTNAME_COLOR="004"
|
|
|
|
;;
|
|
|
|
"pewter")
|
|
|
|
ZSH_THEME_HOSTNAME_COLOR="005"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
ZSH_THEME_HOSTNAME_COLOR="$(get_hostname_color)"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
export ZSH_THEME_HOSTNAME_COLOR
|
2018-10-25 22:27:08 +00:00
|
|
|
unset -f get_hostname_color
|