diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-24 00:12:03 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-24 00:12:03 -0500 |
| commit | 85eb9bfa42bb8d36fef6d05211a266da06894d17 (patch) | |
| tree | e5c94c43069723f452d230ec90f441c643dcb8ee /modules/org-agenda-config.el | |
| parent | 835c2d3a4bd3f695889911edd7a9681c38ff8581 (diff) | |
| download | dotemacs-85eb9bfa42bb8d36fef6d05211a266da06894d17.tar.gz dotemacs-85eb9bfa42bb8d36fef6d05211a266da06894d17.zip | |
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.
Diffstat (limited to 'modules/org-agenda-config.el')
| -rw-r--r-- | modules/org-agenda-config.el | 4 |
1 files 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") |
