dotfiles/mutt/.mutt/mailnotify.sh
Sanchayan Maity d29f4e0e27 mutt: Update mutt config
Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
2020-01-01 14:03:31 +05:30

15 lines
316 B
Bash
Executable file

#!/bin/bash
imapfilter -c /home/core/.imapfilter/config.lua
mbsync -Va
notmuch new
export DISPLAY=:0
let inbox=`ls /home/core/Mail/Inbox/new/|wc -l`
if (("$inbox" > 0)); then
sudo -u core DISPLAY=:0 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus notify-send "You have
$inbox new mails in Inbox"
fi