From 7877ae71cb890fb458afa68b71e9ba10abf52392 Mon Sep 17 00:00:00 2001 From: InigoGutierrez Date: Mon, 22 Apr 2019 18:28:49 +0200 Subject: Created scripts to handle mail. --- i3blocks/mailbox.sh | 20 ++++++++++++++++++++ mail.sh | 9 +++++++++ syncMail.sh | 10 ++++++++++ 3 files changed, 39 insertions(+) create mode 100755 i3blocks/mailbox.sh create mode 100755 mail.sh create mode 100755 syncMail.sh diff --git a/i3blocks/mailbox.sh b/i3blocks/mailbox.sh new file mode 100755 index 0000000..89fb49a --- /dev/null +++ b/i3blocks/mailbox.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +# i3blocks mail module. +# 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 + +gmailN="$(du -a ~/.mail/gmail/INBOX/new/* 2>/dev/null | sed -n '$=')" +[ "$gmailN" ] || gmailN="0" +unioviN="$(du -a ~/.mail/uniovi/INBOX/new/* 2>/dev/null | sed -n '$=')" +[ "$unioviN" ] || unioviN="0" +echo "$(cat /tmp/imapsyncicon) Gmail: $gmailN uniovi: $unioviN" diff --git a/mail.sh b/mail.sh new file mode 100755 index 0000000..7798354 --- /dev/null +++ b/mail.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# Opens a mailbox using neomutt (and isync if neomutt configured to do so) + +pkill -SIGRTMIN+15 i3blocks +account="$(printf "gmail\nuniovi" | fzf)" +[ "$account" = "gmail" ] && neomutt -F "$HOME/.config/mutt/gmmuttrc" +[ "$account" = "uniovi" ] && neomutt -F "$HOME/.config/mutt/cumuttrc" +pkill -SIGRTMIN+15 i3blocks diff --git a/syncMail.sh b/syncMail.sh new file mode 100755 index 0000000..ecaa05a --- /dev/null +++ b/syncMail.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +# Calls mbsync (isync binary) to syncronize mailboxes + +echo "🔃" > /tmp/imapsyncicon +pkill -SIGRTMIN+15 i3blocks +mbsync -c ~/.config/isync/gmmbsyncrc -a +mbsync -c ~/.config/isync/uombsyncrc -a +rm /tmp/imapsyncicon +pkill -SIGRTMIN+15 i3blocks -- cgit v1.2.1