Add jobber and bin files

This commit is contained in:
Colin Powell
2020-01-20 21:47:41 -05:00
parent 3526dc90ad
commit 06da32dbea
6 changed files with 188 additions and 0 deletions

14
bin/.bin/checkmail.sh Executable file
View File

@ -0,0 +1,14 @@
#!/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