12 lines
178 B
Bash
Executable File
12 lines
178 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# check for internet connection
|
|
ip route ls | grep -q '.'
|
|
|
|
# check if the gpg-agent is running
|
|
pgrep gpg-agent > /dev/null
|
|
|
|
notmuch new --quiet 2>&1
|
|
|
|
exec sleep 3m
|