From 85eb9bfa42bb8d36fef6d05211a266da06894d17 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 24 May 2026 00:12:03 -0500 Subject: feat(chime): limit the event tooltip to the next 3 days The tooltip looked ahead a full week (chime-tooltip-lookahead-hours was 7 * 24), which crowded it with events I don't need at a glance. I dropped it to 3 * 24, so it shows today, tomorrow, and the next day only. I also fixed the comment above it, which still claimed 10 events within 6 days when the code already said 20 within 7. --- modules/org-agenda-config.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/org-agenda-config.el b/modules/org-agenda-config.el index c37ec1c9..22bc569c 100644 --- a/modules/org-agenda-config.el +++ b/modules/org-agenda-config.el @@ -455,9 +455,9 @@ This allows a line to show in an agenda without being scheduled or a deadline." ;; Modeline display: show upcoming events within 6 hours (setq chime-modeline-lookahead-minutes (* 6 60)) - ;; Tooltip settings: show up to 10 upcoming events within 6 days + ;; Tooltip settings: show up to 20 upcoming events within the next 3 days (setq chime-modeline-tooltip-max-events 20) - (setq chime-tooltip-lookahead-hours (* 7 24)) + (setq chime-tooltip-lookahead-hours (* 3 24)) ;; today, tomorrow, and the next ;; Modeline content: show title and countdown only (omit event time) (setq chime-notification-text-format "%t %u") -- cgit v1.2.3