mirror of
https://github.com/artizirk/dotfiles.git
synced 2024-11-22 08:20:59 +02:00
Add notmuch_unread_tags script
This commit is contained in:
parent
138ff6d8e2
commit
82a3b47ca4
6
.bin/notmuch_tag_status
Executable file
6
.bin/notmuch_tag_status
Executable file
@ -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…
Reference in New Issue
Block a user