summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xeml10
1 files 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;