diff options
author | Ole Martin Ruud <barskern@outlook.com> | 2019-11-27 14:16:37 +0100 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2019-11-27 08:16:37 -0500 |
commit | dfdc3162bafa4abebcb91106085aaf4f575db57d (patch) | |
tree | a277cf8a5693fb27dd3f56b2636f1fe1d4a7a1f1 | |
parent | c19d305c4f9681568b79e52c43532def4356df71 (diff) |
Add app name to notify-send invocation (#324)
This enables users to easily recognize notifications to be able to
modify or style them through notification daemons.
-rwxr-xr-x | bin/mailsync | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/mailsync b/bin/mailsync index f7c3211..2cec271 100755 --- a/bin/mailsync +++ b/bin/mailsync @@ -20,7 +20,7 @@ command -v notify-send >/dev/null || echo "Note that \`libnotify\` or \`libnotif if [ "$(uname)" = "Darwin" ]; then notify() { osascript -e "display notification \"$2 in $1\" with title \"You've got Mail\" subtitle \"Account: $account\"" && sleep 2 ;} else - notify() { notify-send "mutt-wizard" "📬 $2 new mail(s) in \`$1\` account." ;} + notify() { notify-send --app-name="mutt-wizard" "mutt-wizard" "📬 $2 new mail(s) in \`$1\` account." ;} fi # Check account for new mail. Notify if there is new content. @@ -35,7 +35,7 @@ syncandnotify() { # Extract subject and sender from mail. from=$(awk '/^From: / && ++n ==1,/^\<.*\>:/' "$file" | perl -CS -MEncode -ne 'print decode("MIME-Header", $_)' | awk '{ $1=""; if (NF>=3)$NF=""; print $0 }' | sed 's/^[[:blank:]]*[\"'\''\<]*//;s/[\"'\''\>]*[[:blank:]]*$//') subject=$(awk '/^Subject: / && ++n == 1,/^\<.*\>: / && ++i == 2' "$file" | head -n-1 | perl -CS -MEncode -ne 'print decode("MIME-Header", $_)' | sed 's/^Subject: //' | sed 's/^{[[:blank:]]*[\"'\''\<]*//;s/[\"'\''\>]*[[:blank:]]*$//' | tr -d '\n') - notify-send "📧$from:" "$subject" & + notify-send --app-name="mutt-wizard" "📧$from:" "$subject" & done fi } |