syncmail.sh 228 B

12345678910111213
  1. #!/bin/sh
  2. STATE=`nmcli networking connectivity`
  3. if [ $STATE = 'full' ]
  4. then
  5. notmuch search --output=files tag:deleted | xargs -l rm
  6. notmuch new
  7. muchsync rhea.unbl.ink
  8. exit 0
  9. fi
  10. echo "No internet connection"
  11. exit 0