21 lines
688 B
Bash
Executable File
21 lines
688 B
Bash
Executable File
#!/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 claws-mail --alternate-config-dir "$CLAWSRC" ;;
|
|
2) setsid -f mw -Y >/dev/null ;;
|
|
3) notify-send " Mail module" "\- Shows unread mail
|
|
- Shows 痢 if syncing mail
|
|
- Left click opens claws mail
|
|
- Middle click syncs mail" ;;
|
|
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
|
esac
|
|
|
|
unread="$(find "${XDG_DATA_HOME:-$HOME/.config}"/claws-mail/imapcache/imap.gmail.com/luca.bilke/*/[Ii][Nn][Bb][Oo][Xx]/new/* -type f | wc -l 2>/dev/null)"
|
|
|
|
pidof mbsync >/dev/null 2>&1 && icon="痢"
|
|
|
|
[ "$unread" = "0" ] && [ "$icon" = "" ] || echo " $unread$icon"
|