Move mu4e and add a timeout to its invocation.
This commit is contained in:
parent
e531abc1a2
commit
1f79d43d41
@ -2,6 +2,7 @@ MAILDIR="$HOME/Mail/INBOX/"
|
|||||||
SYNC_STAMP="$HOME/.mail-sync"
|
SYNC_STAMP="$HOME/.mail-sync"
|
||||||
APP_ICON="$(dotfiles_directory)/resources/gmail_logo.png"
|
APP_ICON="$(dotfiles_directory)/resources/gmail_logo.png"
|
||||||
SYNC_COMMAND="offlineimap -f INBOX"
|
SYNC_COMMAND="offlineimap -f INBOX"
|
||||||
|
TIMEOUT="60"
|
||||||
|
|
||||||
function mu4e_alert_for_filename {
|
function mu4e_alert_for_filename {
|
||||||
local message="$(mu view $1 | grep -B 10 Date)"
|
local message="$(mu view $1 | grep -B 10 Date)"
|
||||||
@ -20,6 +21,10 @@ function mu4e_alert_for_filename {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function mu4e_update_mail {
|
function mu4e_update_mail {
|
||||||
|
timeout $TIMEOUT zsh -c "_mu4e_update_mail"
|
||||||
|
}
|
||||||
|
|
||||||
|
function _mu4e_update_mail {
|
||||||
eval $SYNC_COMMAND
|
eval $SYNC_COMMAND
|
||||||
if test -z "$(find "$MAILDIR" -cnewer "$SYNC_STAMP" -a -type f)"; then
|
if test -z "$(find "$MAILDIR" -cnewer "$SYNC_STAMP" -a -type f)"; then
|
||||||
echo "$(date) - No new messages, skipping alerting and indexing."
|
echo "$(date) - No new messages, skipping alerting and indexing."
|
Loading…
Reference in New Issue
Block a user