commit 05fcf7b3e113e8b3975e023217caf83007adbf01
parent 06e82c8a1029adfeed3b7761a6200bfe25c9071f
Author: Luke Smith <luke@lukesmith.xyz>
Date: Fri, 28 Feb 2025 09:35:23 +0000
Merge pull request #1003 from staticssleever668/fix_dash_subject
fix(mailsync): delimit notification text from flags
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/mailsync b/bin/mailsync
@@ -45,7 +45,7 @@ case "$(uname)" in
notify() { [ -n "$pgrepoutput" ] && for x in ${displays:-:0}; do
export DISPLAY="$x"
- notify-send --app-name="mutt-wizard" "$1" "$2"
+ notify-send --app-name="mutt-wizard" -- "$1" "$2"
done ;}
;;
esac