Desktop notifications for agenda alerts

This commit is contained in:
Curt Spark 2026-03-04 20:41:25 +00:00
parent 97979326ba
commit a84cf8bdd7
1 changed files with 27 additions and 23 deletions

View File

@ -247,6 +247,9 @@
:notifier :notifier
(lambda (info) (lambda (info)
; 'info' is a plist containing :title, :message, :severity, etc. ; 'info' is a plist containing :title, :message, :severity, etc.
(notifications-notify
:title "Emacs Alert"
:body (plist-get info :message))
(sound-alert (concat "ORG ALERT: " (sound-alert (concat "ORG ALERT: "
;(plist-get info :title) ;(plist-get info :title)
(plist-get info :message))))) (plist-get info :message)))))
@ -277,7 +280,8 @@
:ensure t :ensure t
:after org ; if you don't want it to start until org has been loaded :after org ; if you don't want it to start until org has been loaded
:config :config
(org-upcoming-modeline-mode)) (org-upcoming-modeline-mode)
)
; Org Mode Journalling ; Org Mode Journalling
(use-package org-journal (use-package org-journal