From 7a628f3c8d7b41be119aa00711308b6a9999b68c Mon Sep 17 00:00:00 2001 From: Ryan Kes <> Date: Wed, 20 Jan 2021 21:40:15 +0100 Subject: [PATCH] fix(neomutt): updated notify-send command --- neomutt/.local/bin/mailsync | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neomutt/.local/bin/mailsync b/neomutt/.local/bin/mailsync index f0379eb..5c1ee1d 100755 --- a/neomutt/.local/bin/mailsync +++ b/neomutt/.local/bin/mailsync @@ -28,12 +28,12 @@ for account in $accounts; do new="$(find "$HOME/.local/share/mail/$acc/INBOX/new/" "$HOME/.local/share/mail/$acc/Inbox/new/" "$HOME/.local/share/mail/$acc/inbox/new/" -type f -newer "/tmp/.mailsynclastrun" 2>/dev/null)" newcount="$(echo "$new" | sed '/^\s*$/d' | wc -l)" if [ "$newcount" -gt "0" ]; then - # notify-send.py -i mutt -c mailtotal "Mail" "$newcount new mail(s) in \`$acc\` account." & + # notify-send -i mutt -c mailtotal "Mail" "$newcount new mail(s) in \`$acc\` account." & for file in $new; do # 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.py -i mutt "$from:" "$subject" & + notify-send -i mutt "$from:" "$subject" & done fi done