From d9fc76578df9fd2bc1978326eb56646f5776f819 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Thu, 11 Apr 2019 09:42:53 -0700 Subject: eml: always show notification --- eml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/eml b/eml index 9f598a7..0eb3add 100755 --- a/eml +++ b/eml @@ -2,9 +2,11 @@ count=$(notmuch count tag:inbox and tag:unread) -case "$1" in - -n) [[ $count > 0 ]] && notify-send "New mail" "$count messages" ;; - *) echo $count ;; -esac +if [[ $count > 0 ]]; then + notify-send "New mail" "$count messages" +else + notify-send "No new mail" +fi +echo $count exit 0; -- cgit v1.2.3