zeesh/zshrc-stub

19 lines
557 B
Plaintext
Raw Normal View History

2020-04-19 12:02:41 -07:00
# vim: ft=zsh :
2020-04-19 12:16:56 -07:00
autoload -U colors && colors
PROMPT="%{$fg[cyan]%}%n%{$fg[white]%}@%{$fg[magenta]%}%m %{$fg[white]%}%~ %# "
2020-04-19 12:02:41 -07:00
RPROMPT="%{$fg_bold[black]%}%T%{$reset_color%}"
2020-04-19 12:16:56 -07:00
_zshrc_updates_pending=0
if type md5sum &> /dev/null; then
current_stub_sum="$(md5sum ~/.zshrc | awk '{ print $1 }')"
new_stub_sum="$(md5sum ~/.local/share/zeesh/zshrc-stub | awk '{ print $1 }')"
if [[ ! current_stub_sum == new_stub_sum ]]; then
cp ~/.local/share/zshrc-stub ~/.zshrc
_zshrc_updates_pending=1
fi
fi