summaryrefslogtreecommitdiffstats
path: root/.scripts/i3mail
blob: e80df86c8b6ec04f1d5b873750ee001221dd1b09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

# i3blocks mail module.
# Displays number of unread mail and an loading icon if updating.
# When clicked, brings up `neomutt`.

case $BLOCK_BUTTON in
	1) $TERMINAL -e neomutt ;;
esac

echo "$(du -a ~/.mail/*/INBOX/new/* | sed -n '$=')" $(cat ~/.config/mutt/.dl)