diff options
author | Luke Smith <luke@lukesmith.xyz> | 2025-02-28 09:34:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-28 09:34:59 +0000 |
commit | 06e82c8a1029adfeed3b7761a6200bfe25c9071f (patch) | |
tree | 570952f82196c76cb071c358e93e6ccc6009c8a3 | |
parent | 1d6dc7b8f6d299167905d02fd948c07e624ae2fb (diff) | |
parent | ed946ef98beead0c0163cbe8568daa24b3ee68b0 (diff) |
Merge pull request #967 from appeasementPolitik/patch-1
Fix notify-send not coming through with goimapnotify
-rwxr-xr-x | bin/mailsync | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/mailsync b/bin/mailsync index eb23497..4e6bfc4 100755 --- a/bin/mailsync +++ b/bin/mailsync @@ -63,11 +63,11 @@ syncandnotify() { newcount=$(echo "$new" | sed '/^\s*$/d' | wc -l) case 1 in $((newcount > 5)) ) - echo "$newcount new mails for $2." + echo "$newcount new mails for $2." >/dev/tty [ -z "$MAILSYNC_MUTE" ] && notify "New Mail!" "📬 $newcount new mails in \`$2\` account." ;; $((newcount > 0)) ) - echo "$newcount new mail(s) for $2." + echo "$newcount new mail(s) for $2." >/dev/tty [ -z "$MAILSYNC_MUTE" ] && for file in $new; do # Extract and decode subject and sender from mail. |