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

13
bin/.bin/syncmail.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
STATE=`nmcli networking connectivity`
if [ $STATE = 'full' ]
then
notmuch search --output=files tag:deleted | xargs -l rm
notmuch new
muchsync rhea.unbl.ink
exit 0
fi
echo "No internet connection"
exit 0