mutt-wizard

default description
git clone https://git.awy.one/mutt-wizard.git
Log | Files | Refs | README | LICENSE

commit c56b1396141b604ee3aa1e5a4f675ff62f137b79
parent c5e12600b919a9bebfb14c12421b4ab6d742a785
Author: Kr1ss <kr1ss.x@yandex.com>
Date:   Tue,  7 May 2019 14:39:01 +0200

mailsync: fix early exit on graphical(-only) login

Resolves https://github.com/LukeSmithxyz/mutt-wizard/issues/197.

Diffstat:
Mbin/mailsync | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/mailsync b/bin/mailsync @@ -2,7 +2,7 @@ # Sync mail and give notification if there is new mail. # Run only if user logged in (prevent cron errors) -w | grep "^$USER\W" >/dev/null || exit +pgrep -cu "$USER" >/dev/null || exit # Checks for internet connection and set notification script. ping -q -c 1 1.1.1.1 > /dev/null || exit