summaryrefslogtreecommitdiff
path: root/i3blocks-mail.sh
blob: ecc45ff76caa25b1c95108bd45b049e6749ab6cf (plain) (blame)
1
2
3
4
5
#!/bin/sh
icon=󰶋

unread=$(ls -l ~/.mail/gmail/Inbox/new | wc -l | cut -w -f2)
[ $unread -gt 0 ] && printf "%s%s\n" $icon $unread && notify-send "$unread unread emails"