diff options
author | Luke Smith <luke@lukesmith.xyz> | 2025-02-28 09:35:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-28 09:35:23 +0000 |
commit | 05fcf7b3e113e8b3975e023217caf83007adbf01 (patch) | |
tree | ed620bbde0259acb4c5dd557aeff2ab7017757f9 | |
parent | 06e82c8a1029adfeed3b7761a6200bfe25c9071f (diff) | |
parent | 824feedc6889ae9630891c9b75e83b5387896838 (diff) |
Merge pull request #1003 from staticssleever668/fix_dash_subject
fix(mailsync): delimit notification text from flags
-rwxr-xr-x | bin/mailsync | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mailsync b/bin/mailsync index 4e6bfc4..1407e7c 100755 --- 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 |