summaryrefslogtreecommitdiffstats
path: root/.local/bin/status/sb-mailbox
blob: f7a37864aa9039c3cd52b4a17e10476bf009a281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/sh

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

case $BLOCK_BUTTON in
	1) setsid -f "$TERMINAL" -e neomutt ;;
	2) setsid -f mw -Y >/dev/null ;;
	3) notify-send "📬 Mail module" "\- Shows unread mail
- Shows 🔃 if syncing mail
- Left click opens neomutt
- Middle click syncs mail" ;;
	6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac

mb_a="$(ls "${MAIL:-/var/mail/jozan}"/gmail_br/INBOX/new/ | wc -l 2>/dev/null)"
mb_b="$(ls "${MAIL:-/var/mail/jozan}"/gmail_oon/INBOX/new/ | wc -l 2>/dev/null)"
mb_c="$(ls "${MAIL:-/var/mail/jozan}"/gmail_tos/INBOX/new/ | wc -l 2>/dev/null)"

sync=0
if pidof mbsync >/dev/null 2>&1; then
	sync=1
fi

case "$sync" in
	0) ([ "$mb_a" -gt 0 ] || [ "$mb_b" -gt 0 ] || [ "$mb_c" -gt 0 ] || [ "$mb_d" -gt 0 ]) && echo -n " " ;;
	1) echo -n " " ;;
	*) ;;
esac	

if [ "$mb_a" -gt 0 ]; then
	echo -n "br:" $mb_a
fi

if [ "$mb_a" -gt 0 ] && [ "$mb_b" -gt 0 ]; then
	echo -n " - "
fi

if [ "$mb_b" -gt 0 ]; then
	echo -n "oon:" $mb_b
fi

if [ "$mb_b" -gt 0 ] && [ "$mb_c" -gt 0 ]; then
	echo -n " - "
elif [ "$mb_a" -gt 0 ] && [ "$mb_c" -gt 0 ]; then
	echo -n " - "
fi

if [ "$mb_c" -gt 0 ]; then
	echo -n "tos:" $mb_c
fi