voidrice/.local/bin/statusbar/mailbox

21 lines
630 B
Text
Raw Normal View History

#!/bin/sh
2019-11-23 16:23:24 -05: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 15:52:30 +02:00
2) setsid -f mw sync >/dev/null ;;
3) notify-send "📬 Mail module" "\- Shows unread mail
2019-11-23 16:23:24 -05:00
- Shows 🔃 if syncing mail
- Left click opens neomutt
- Middle click syncs mail" ;;
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
2019-11-23 16:23:24 -05:00
esac
2020-05-07 08:09:04 -04: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-08 19:28:25 -05:00
2020-05-25 20:52:08 -04:00
pidof mbsync >/dev/null 2>&1 && icon="🔃"
2020-02-08 19:28:25 -05:00
2020-05-25 17:06:24 -04:00
[ "$unread" = "0" ] && [ "$icon" = "" ] || echo "📬$unread$icon"