diff options
author | NeodarZ <neodarz@neodarz.ovh> | 2016-09-21 20:06:02 +0200 |
---|---|---|
committer | NeodarZ <neodarz@neodarz.ovh> | 2016-09-21 20:06:02 +0200 |
commit | f0b7ce9877b22014022ff1a3035a2f3be262b337 (patch) | |
tree | a37046f05a746886bb336ec42e8997632cd0aaf9 /.i3-blocks/blocks/mail | |
parent | afb981f0fe8fa0de77f7451d6907f5094c38f1b5 (diff) | |
parent | 78db7d43845d3ea276b8028bec6d67b5a5641a1b (diff) | |
download | dotfiles-f0b7ce9877b22014022ff1a3035a2f3be262b337.tar.xz dotfiles-f0b7ce9877b22014022ff1a3035a2f3be262b337.zip |
Ajout de la police awesome
Diffstat (limited to '.i3-blocks/blocks/mail')
-rwxr-xr-x | .i3-blocks/blocks/mail | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/.i3-blocks/blocks/mail b/.i3-blocks/blocks/mail deleted file mode 100755 index 66b1d0a..0000000 --- a/.i3-blocks/blocks/mail +++ /dev/null @@ -1,59 +0,0 @@ -#!/bin/bash - -# Requires https://www.google.com/settings/security/lesssecureapps for gmail. - -CONFIG_FILE="${BLOCK_INSTANCE}" -CONFIG_FILE=${CONFIG_FILE/\~/$HOME} - -# Config file needs the following settings: -#MAIL_SERVER="imap.domain.tld:993" -#MAIL_USER="user@domain.tld" -#MAIL_PASSWORD="secret" -#MAIL_FOLDER="INBOX" - -if [[ ! -f "${CONFIG_FILE}" ]]; then - echo "${CONFIG_FILE}" - exit 33 -fi - -source "${CONFIG_FILE}" - -MAIN_DOMAIN=$(expr match "${MAIL_SERVER}" '.*\.\(.*\..*\)' | awk -F ':' '{print $1}') - -# Add https so xdg knows that it's a website -if [[ "${MAIN_DOMAIN}" != http* ]]; then - MAIN_DOMAIN="https://${MAIN_DOMAIN}" -fi - -# Left click -if [[ "${BLOCK_BUTTON}" -eq 1 ]]; then - xdg-open "${MAIN_DOMAIN}" -fi - -MAIL_FILE="/tmp/.mail" -URGENT_VALUE="100" - -GET_UNREAD=$(cat<<EOF -? LOGIN "${MAIL_USER}" "${MAIL_PASSWORD}" -? STATUS "${MAIL_FOLDER}" (unseen) -? LOGOUT -EOF -) - -echo "${GET_UNREAD}" | openssl s_client -connect "${MAIL_SERVER}" -crlf -ign_eof > "${MAIL_FILE}" 2>/dev/null -UNREAD_COUNT=$(cat "${MAIL_FILE}" | grep -i "UNSEEN" | grep -oE "[0-9]*" | head -n 1) - -# For security reasons -rm "${MAIL_FILE}" - -if [[ "${UNREAD_COUNT}" = "" ]]; then - exit -fi - -echo "${UNREAD_COUNT}" -echo "${UNREAD_COUNT}" -echo "" - -if [[ "${UNREAD_COUNT}" -ge URGENT_VALUE ]]; then - exit 33 -fi
\ No newline at end of file |