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 | 911792c3d7c7976aeaad9b82eb6b3ac7568791cc (patch) | |
| tree | 3a7e455ab9db44ebc742a6429709fc95faab7621 /modules | |
| parent | 815b22ba4a947bda4e19133e26a28887159f4984 (diff) | |
| download | dotemacs-911792c3d7c7976aeaad9b82eb6b3ac7568791cc.tar.gz dotemacs-911792c3d7c7976aeaad9b82eb6b3ac7568791cc.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.
Diffstat (limited to 'modules')
| -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 70ca9d4a..37f9e7e9 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)) |
