aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2021-11-06 01:15:25 -0700
committerGravatar Tom Willemse2021-11-06 01:15:25 -0700
commit9befbb9c7940c8acf62de947788a0c81e4eb9691 (patch)
treedb8baf3609346cb3cf7fd35bae9b90d8127d94cd
downloadcount-emails-9befbb9c7940c8acf62de947788a0c81e4eb9691.tar.gz
count-emails-9befbb9c7940c8acf62de947788a0c81e4eb9691.zip
Show the total number of unread emails
-rwxr-xr-xcount-emails15
1 files changed, 15 insertions, 0 deletions
diff --git a/count-emails b/count-emails
new file mode 100755
index 0000000..98a2573
--- /dev/null
+++ b/count-emails
@@ -0,0 +1,15 @@
+#!/usr/bin/env -S scsh -s
+;; -*- mode: scheme; -*-
+!#
+
+(define mail-root (string-append (getenv "HOME") "/documents/mail"))
+
+(define unread-emails
+ (run/sexp (pipe (find ,mail-root -type f -name "*:2,*" -and -not -name "*:2,*S*")
+ (wc -l))))
+
+(define new-emails
+ (run/sexp (pipe (find ,mail-root -type f -wholename "*/new/*")
+ (wc -l))))
+
+(display (+ unread-emails new-emails))