dotfiles/.bin/notmuch_tag_status

7 lines
224 B
Plaintext
Raw Permalink Normal View History

2019-03-28 18:15:35 +02:00
#!/bin/bash
# Show a table of tag and now many unread emails under that tag
for tag in $(notmuch search --output=tags '*'); do
2019-04-02 17:10:34 +03:00
echo -ne "${tag} | $(notmuch count tag:\"${tag}\" and tag:unread) \n";
2019-03-28 18:15:35 +02:00
done | column -s '|' -t