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 | ed131bdf4c420d139fdc1c7aaf84681024b4b286 (patch) | |
| tree | 85e44db9b5fa3ba7a5643b522a3cad499fca4c67 | |
| parent | 38bddc76f2982efa27b5a07346d28402a6708a6b (diff) | |
| download | dotemacs-ed131bdf4c420d139fdc1c7aaf84681024b4b286.tar.gz dotemacs-ed131bdf4c420d139fdc1c7aaf84681024b4b286.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.
| -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 c37ec1c9e..22bc569c2 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") |
