diff options
author | Luke Smith <luke@lukesmith.xyz> | 2018-08-24 00:49:27 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2018-08-24 00:49:27 -0400 |
commit | 6f4f531445861bab13a62711ade547da5d1f117f (patch) | |
tree | efa1e04cdf1a89942240982131f3b2f76046e384 /etc | |
parent | 810c7710f016f452e6aeec39be6bcde24b586c1f (diff) |
mpv in notify command, no wait
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/mailsync.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/etc/mailsync.sh b/etc/mailsync.sh index b673ecf..eb40ce3 100755 --- a/etc/mailsync.sh +++ b/etc/mailsync.sh @@ -14,10 +14,10 @@ export DISPLAY=:0.0 if [ "$(uname)" == "Darwin" ] then ping -q -t 1 -c 1 `ip r | grep -m 1 default | cut -d ' ' -f 3` >/dev/null || exit - notify() { osascript -e "display notification \"$2 in $1\" with title \"Youve got Mail\" subtitle \"Account: $account\"" && sleep 2 ;} + notify() { osascript -e "display notification \"$2 in $1\" with title \"You've got Mail\" subtitle \"Account: $account\"" && sleep 2 ;} else ping -q -w 1 -c 1 `ip r | grep -m 1 default | cut -d ' ' -f 3` >/dev/null || exit - notify() { pgrep -x dunst && notify-send -i ~/.config/mutt/etc/email.gif "$2 new mail(s) in \`$1\` account." ;} + notify() { mpv --really-quiet ~/.config/mutt/etc/notify.opus & pgrep -x dunst && notify-send -i ~/.config/mutt/etc/email.gif "$2 new mail(s) in \`$1\` account." ;} fi echo 🔃 > ~/.config/mutt/.dl @@ -36,7 +36,6 @@ do if [ "$newcount" -gt "0" ] then notify "$account" "$newcount" & disown - mpv --really-quiet ~/.config/mutt/etc/notify.opus fi done notmuch new |