I’m experimenting with how alert frequency should be handled. I think I’m approaching something that fits what I want personally, but I’m interested in what others will find useful.
Currently, alerts are displayed at an interval, regardless of proximity to the deadline. It may be more useful to have alerts that start appearing at a specified time before the deadline and increase in severity as the deadline approaches.
I’m experimenting with a configuration variable like this:
(defvar org-alert-interval 300
"Interval in seconds to recheck and display deadlines.")
(defvar org-alert-severity '(:low 60 :medium 30 :high 5))
As written, the alerts should start appearing 60 minutes before the deadline at low severity, increase to medium severity at 30 minutes, then become high severity at 5 minutes.
Is this something that would be useful to other users?
I’m experimenting with how alert frequency should be handled. I think I’m approaching something that fits what I want personally, but I’m interested in what others will find useful.
Currently, alerts are displayed at an interval, regardless of proximity to the deadline. It may be more useful to have alerts that start appearing at a specified time before the deadline and increase in severity as the deadline approaches.
I’m experimenting with a configuration variable like this:
As written, the alerts should start appearing 60 minutes before the deadline at low severity, increase to medium severity at 30 minutes, then become high severity at 5 minutes.
Is this something that would be useful to other users?