From 30b35fac9b8b65e6026bf732f7da182e6d46b047 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Mon, 24 Apr 2023 11:39:45 -0400 Subject: [PATCH] adjust alert notification times to ensure scheduled events pop up and then 'go away' after the scheduled time ; this config will notify every 5 minutes if a deadline item is past due -- the deadline alert times/repitions do not seem tunable --- org/init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org/init.el b/org/init.el index 45db211..0eac5ea 100644 --- a/org/init.el +++ b/org/init.el @@ -89,8 +89,8 @@ (setq alert-default-style 'burnt-toast) ) (setq org-alert-interval 300 - org-alert-notify-cutoff 0 - org-alert-notify-after-event-cutoff 0) + org-alert-notify-cutoff 5 + org-alert-notify-after-event-cutoff 5) (org-alert-enable) )