Browse Source

Add notmuch_unread_tags script

master
Arti Zirk 6 years ago
parent
commit
82a3b47ca4
  1. 6
      .bin/notmuch_tag_status

6
.bin/notmuch_tag_status

@ -0,0 +1,6 @@ @@ -0,0 +1,6 @@
#!/bin/bash
# Show a table of tag and now many unread emails under that tag
for tag in $(notmuch search --output=tags '*'); do
echo -ne "${tag} | $(notmuch count tag:${tag} and tag:unread) \n";
done | column -s '|' -t
Loading…
Cancel
Save