2020-02-08 23:43:37 +00:00
|
|
|
#!/bin/sh
|
2019-11-23 21:23:24 +00:00
|
|
|
|
|
|
|
# Displays number of unread mail and an loading icon if updating.
|
|
|
|
# When clicked, brings up `neomutt`.
|
|
|
|
|
|
|
|
case $BLOCK_BUTTON in
|
2020-05-30 21:01:18 +00:00
|
|
|
1) setsid -f "$TERMINAL" -e neomutt ;;
|
2020-09-17 13:52:30 +00:00
|
|
|
2) setsid -f mw sync >/dev/null ;;
|
2020-04-09 02:01:51 +00:00
|
|
|
3) notify-send "📬 Mail module" "\- Shows unread mail
|
2019-11-23 21:23:24 +00:00
|
|
|
- Shows 🔃 if syncing mail
|
|
|
|
- Left click opens neomutt
|
|
|
|
- Middle click syncs mail" ;;
|
2020-05-07 21:31:42 +00:00
|
|
|
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
2019-11-23 21:23:24 +00:00
|
|
|
esac
|
|
|
|
|
2020-05-07 12:09:04 +00:00
|
|
|
unread="$(find "${XDG_DATA_HOME:-$HOME/.local/share}"/mail/*/[Ii][Nn][Bb][Oo][Xx]/new/* -type f | wc -l 2>/dev/null)"
|
2020-02-09 00:28:25 +00:00
|
|
|
|
2020-05-26 00:52:08 +00:00
|
|
|
pidof mbsync >/dev/null 2>&1 && icon="🔃"
|
2020-02-09 00:28:25 +00:00
|
|
|
|
2020-05-25 21:06:24 +00:00
|
|
|
[ "$unread" = "0" ] && [ "$icon" = "" ] || echo "📬$unread$icon"
|