diff options
-rw-r--r-- | .mr/mrconfig | 2 | ||||
-rwxr-xr-x | bin/email | 14 |
2 files changed, 13 insertions, 3 deletions
diff --git a/.mr/mrconfig b/.mr/mrconfig index 95f874e..3914bfb 100644 --- a/.mr/mrconfig +++ b/.mr/mrconfig @@ -2,7 +2,7 @@ checkout = git clone 'git@github.com:uvaes/dotfiles' 'dotfiles' [.personal] -checkout = git clone 'git@github.com:uvaes/personal' '.personal' +checkout = git clone 'urbain@urbainvaes.com:git/perso/personal.git' '.personal' [.vim/vim-plug] checkout = git clone 'https://github.com/junegunn/vim-plug' 'vim-plug' @@ -1,6 +1,16 @@ #! /usr/bin/env bash + +# Necessary to see the notification export DISPLAY=:0 + +# Get all emails mbsync -a -nmails=$(find $HOME/.mail -path '*/new/*' -type f | wc -l) -[[ nmails -ge 1 ]] && /usr/bin/notify-send -t 1 "New mail!" || /usr/bin/notify-send -u low -t 1 "No new mail!" + +new_mails=$(find $HOME/.mail -path '*/new/*' -type f) +subjects=$(cat $(echo -e ${new_mails/'\n'/' '}) | grep "^Subject: " | sed "s/^Subject: //g") + +if [[ ! -z ${new_mails} ]]; then + /usr/bin/notify-send -t 3 "New mail(s)!" "${subjects}" +fi + echo "Email last checked on $(date)". |