dot_testing/builds/utils/synchron

16 lines
429 B
Plaintext
Executable File

if [ "$(hostname)" = "localhost" ]; then
mbsync --config=$HOME/.config/isync/phone-config
else
mbsync --config=$HOME/.config/isync/config main
fi
vdirsyncer sync
rbw sync
# check if we have new mail, and if so, notify
new=$(ls ~/Mail/main/INBOX/new | wc -l)
if [ "$new" -gt 0 ]; then
inbox=$(ls ~/Mail/main/INBOX/cur | wc -l)
printf "%i new email(s); %i total in inbox" "$new" "$inbox" > ~/.cache/statusbar_notification
fi