1
0
Fork 0
dotfiles/files/.config/zsh/custom/000-env.zsh

42 lines
1.0 KiB
Bash
Raw Normal View History

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
# 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
unset -f get_hostname_color