4 lines
102 B
Bash
Executable file
4 lines
102 B
Bash
Executable file
#!/bin/sh
|
|
|
|
NEWEMAILS=$(notmuch search tag:unread and not tag:archive | wc -l)
|
|
echo "Mail: $NEWEMAILS"
|