checkmail.sh 184 B

1234567891011121314
  1. #!/bin/sh
  2. STATE=`nmcli networking connectivity`
  3. if [ $STATE = 'full' ]
  4. then
  5. afew --m --new
  6. mbsync -a
  7. notmuch new
  8. afew --tag --new
  9. exit 0
  10. fi
  11. echo "No internet connection"
  12. exit 0