diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-09-15 01:31:05 +0300 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-09-15 01:31:05 +0300 |
commit | 3cf95e8ea2baa48babc2253386bc09f60e0ae322 (patch) | |
tree | 3bf8454f831e7933cc42a85bca7f29dc023ffab5 /.config/eww/scripts/email-listener | |
parent | 275d6de472ffe0e295f9478020e9d3a618b54fd1 (diff) |
meta: Don’t pass ‘-u normal’ to ‘notify-send’
Diffstat (limited to '.config/eww/scripts/email-listener')
-rwxr-xr-x | .config/eww/scripts/email-listener | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/eww/scripts/email-listener b/.config/eww/scripts/email-listener index b8c7ad7..a555d09 100755 --- a/.config/eww/scripts/email-listener +++ b/.config/eww/scripts/email-listener @@ -18,7 +18,7 @@ count() ;; esac - [ $x -gt ${prev:=0} ] && notify-send -a email -u normal 'New Email' \ + [ $x -gt ${prev:=0} ] && notify-send -a email 'New Email' \ "A new unread email has been recieved. $cnt." prev=$x } |