diff options
author | InigoGutierrez <inigogf.95@gmail.com> | 2019-04-22 18:28:49 +0200 |
---|---|---|
committer | InigoGutierrez <inigogf.95@gmail.com> | 2019-04-22 18:28:49 +0200 |
commit | 7877ae71cb890fb458afa68b71e9ba10abf52392 (patch) | |
tree | ca42e4ef5186ca18b5c5fae15e02dad545963087 /i3blocks | |
parent | be6588796a2b1f158357c26ca271af4d375b1e86 (diff) | |
download | scripts-7877ae71cb890fb458afa68b71e9ba10abf52392.tar.gz scripts-7877ae71cb890fb458afa68b71e9ba10abf52392.zip |
Created scripts to handle mail.
Diffstat (limited to 'i3blocks')
-rwxr-xr-x | i3blocks/mailbox.sh | 20 |
1 files changed, 20 insertions, 0 deletions
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" |