aboutsummaryrefslogtreecommitdiff
path: root/i3blocks/i3mailbox.sh
blob: 213eb6a45ec67b0c1375c1df105d186884ecccbd (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
#!/bin/sh

# i3mailbox.sh (i3blocks mail module)
#
# Usage: i3mailbox.sh
#
# Displays number of unread mail and an loading icon if updating.
# When clicked, brings up `neomutt`.

case $BLOCK_BUTTON in
	1) "$TERMINAL" -e mail.sh ;;
	2) setsid "$HOME/scripts/floats/urxvtFloat.sh" 66 3 syncMail.sh >/dev/null & ;;
	3) pgrep -x dunst >/dev/null && dunstify "📬 Mail module" "\- Shows unread mail
- Shows 🔃 if syncing mail
- Left click opens neomutt
- Middle click syncs mail" ;;
esac

gmailInbox="$CONFIG_FOLDER_GMAIL_INBOX"
unioviInbox="$CONFIG_FOLDER_UNIOVI_INBOX"
output=""
syncIcon=""
[ -n "$(pgrep mbsync)" ] && syncIcon="🔃"
output="$output$syncIcon"

if [ -n "$gmailInbox" ]; then
	gmailN="$(ls "$gmailInbox"/* 2>/dev/null | wc -l)"
	output="$output Gmail: $gmailN "
fi
if [ -n "$unioviInbox" ]; then
	unioviN="$(ls "$unioviInbox"/* 2>/dev/null | wc -l)"
	output="$output Uniovi: $unioviN "
fi

#echo "$(cat /tmp/imapsyncicon) Gmail: $gmailN  uniovi: $unioviN"
echo "${output% }"