mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 22:19:45 +00:00
15 lines
204 B
Text
15 lines
204 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# Prints number of unread mail
|
||
|
# Requires mutt/neomutt
|
||
|
|
||
|
MAIL_DIR="/home/$USER/Mail/INBOX/new/*"
|
||
|
PREFIX=' :'
|
||
|
|
||
|
get_mail()
|
||
|
{
|
||
|
echo "$PREFIX$(du -a $MAIL_DIR 2>/dev/null | wc -l)"
|
||
|
}
|
||
|
|
||
|
get_mail
|