diff options
author | Clément DOUIN <soywod@users.noreply.github.com> | 2021-02-02 22:49:15 +0100 |
---|---|---|
committer | Clément DOUIN <soywod@users.noreply.github.com> | 2021-02-02 22:50:24 +0100 |
commit | 0ff14fee55e68e59df6a40d72205f8953df056a3 (patch) | |
tree | 957c2fd09679c39380edb1fec4f8b348d6810284 /bin/mailsync | |
parent | dccd4d4cbf741c2c0d06e761bc1fb63561d5f1e6 (diff) |
fix notifications on Xwayland
Diffstat (limited to 'bin/mailsync')
-rwxr-xr-x | bin/mailsync | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mailsync b/bin/mailsync index 8ca83c6..6741804 100755 --- a/bin/mailsync +++ b/bin/mailsync @@ -39,7 +39,7 @@ case "$(uname)" in messageinfo() { osascript -e "display notification with title \"📧 $from\" subtitle \"$subject\"" ;} ;; *) - displays="$(pgrep -a Xorg | grep -wo "[0-9]*:[0-9]\+" | sort -u)" + displays="$(pgrep -a X\(org\|wayland\) | grep -wo "[0-9]*:[0-9]\+" | sort -u)" notify() { for x in $displays; do export DISPLAY=$x notify-send --app-name="mutt-wizard" "mutt-wizard" "📬 $2 new mail(s) in \`$1\` account." |