diff options
| author | Craig Jennings <c@cjennings.net> | 2025-11-09 15:34:51 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-11-09 15:34:51 -0600 |
| commit | c64e5cb94eda334111308b8c0f20a939cfb829b7 (patch) | |
| tree | 2b15c23176e7d6e165ab43bdc99f7b6426175343 | |
| parent | f342090a4457d28b6223dc16e03606c518b8241f (diff) | |
| download | dotemacs-c64e5cb94eda334111308b8c0f20a939cfb829b7.tar.gz dotemacs-c64e5cb94eda334111308b8c0f20a939cfb829b7.zip | |
feat:chime: Add calendar URL configuration
Set the calendar URL in chime configuration for better integration
with Google Calendar. Debug mode remains available but disabled by
default.
| -rw-r--r-- | modules/org-agenda-config.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/org-agenda-config.el b/modules/org-agenda-config.el index 70ca9d4a8..37f9e7e94 100644 --- a/modules/org-agenda-config.el +++ b/modules/org-agenda-config.el @@ -264,7 +264,7 @@ This allows a line to show in an agenda without being scheduled or a deadline." :load-path "~/code/chime.el" :init ;; Debug mode (keep set to nil, but available for troubleshooting) - ;; (setq chime-debug nil) + (setq chime-debug nil) :bind ("C-c A" . chime-check) :config @@ -299,6 +299,9 @@ This allows a line to show in an agenda without being scheduled or a deadline." ;; Notification title (setq chime-notification-title "Reminder") + ;; Calendar URL + (setq chime-calendar-url "https://calendar.google.com/calendar/u/0/r") + ;; Enable chime-mode (chime-mode 1)) |
