voidrice/.local/bin/statusbar/mailbox

21 lines
630 B
Text
Raw Normal View History

#!/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
1) setsid -f "$TERMINAL" -e neomutt ;;
2020-09-17 13:52:30 +00:00
2) setsid -f mw sync >/dev/null ;;
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" ;;
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"