diff options
author | Luke Smith <luke@lukesmith.xyz> | 2018-10-14 13:02:58 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2018-10-14 13:02:58 -0400 |
commit | b931b83379006de6278684301dbf3c037177f5bf (patch) | |
tree | b7f2333bb540bf021dd329f5b8ce4c09423f3c39 | |
parent | 182a99fd20192a3cf8bcce792d10731f083dc24f (diff) |
no setsid
-rwxr-xr-x | etc/mailsync.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/mailsync.sh b/etc/mailsync.sh index 5f8d8a7..4d8f190 100755 --- a/etc/mailsync.sh +++ b/etc/mailsync.sh @@ -35,7 +35,7 @@ do newcount=$(find ~/.mail/"$account"/INBOX/new/ -type f -newer ~/.config/mutt/etc/mailsynclastrun 2> /dev/null | wc -l) if [ "$newcount" -gt "0" ] then - setsid notify "$account" "$newcount" & + notify "$account" "$newcount" & fi done notmuch new |