aboutsummaryrefslogtreecommitdiff
path: root/chime.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-04-04 13:59:45 -0500
committerCraig Jennings <c@cjennings.net>2026-04-04 13:59:45 -0500
commit7a0141f90ed214e1a7d87c2c1d04d7b0d084db09 (patch)
tree63c80d5644db39b2c48c10300450d7ca46a83a4e /chime.el
parentb6fbf45c1130e90a1e50b5ade1b6889d42ce6b2d (diff)
downloadchime-7a0141f90ed214e1a7d87c2c1d04d7b0d084db09.tar.gz
chime-7a0141f90ed214e1a7d87c2c1d04d7b0d084db09.zip
Improve defaults: 2-hour modeline window, notify at event time
Bump chime-modeline-lookahead-minutes from 60 to 120 so events within the next 2 hours show in the modeline. The old 60-minute default hid events most users would expect to see. Add (0 . high) to default chime-alert-intervals so users get a notification at event time in addition to 10 minutes before. The single-notification default meant a missed alert had no backup.
Diffstat (limited to 'chime.el')
-rw-r--r--chime.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/chime.el b/chime.el
index e79ca1e..0907d67 100644
--- a/chime.el
+++ b/chime.el
@@ -78,7 +78,7 @@
"Chime customization options."
:group 'org)
-(defcustom chime-alert-intervals '((10 . medium))
+(defcustom chime-alert-intervals '((10 . medium) (0 . high))
"Alert intervals with severity levels for upcoming events.
Each element is a cons cell (MINUTES . SEVERITY) where:
- MINUTES: Number of minutes before event to notify (0 = at event time)
@@ -341,7 +341,7 @@ chime-mode is active."
:group 'chime
:type 'string)
-(defcustom chime-modeline-lookahead-minutes 60
+(defcustom chime-modeline-lookahead-minutes 120
"Minutes ahead to look for next event to display in modeline.
Should be larger than notification alert times for advance awareness.
Set to 0 to disable modeline display.