dotfiles/scripts/prefix/bin/msmtp-runqueue-on-notify
2017-08-21 11:56:07 +02:00

11 lines
189 B
Bash
Executable file

#!/bin/sh
while true
do
# Wait here
inotifywait -qq -e modify /home/eeva/.msmtpqueue
# Send
echo "Queue modified. Calling runqueue…"
/home/eeva/prefix/bin/msmtp-runqueue
done