Files
dotfiles/systemd/.config/systemd/user/checkmail.sh
Colin Powell 9f890fa68c Mail updates
2019-09-26 16:50:05 -04:00

15 lines
184 B
Bash
Executable File

#!/bin/sh
STATE=`nmcli networking connectivity`
if [ $STATE = 'full' ]
then
afew --m --new
mbsync -a
notmuch new
afew --tag --new
exit 0
fi
echo "No internet connection"
exit 0