Changed notification package

This commit is contained in:
Aleksandr Lebedev 2025-02-02 18:53:56 +01:00
parent 792fb9fd7e
commit ba49398d6a

View file

@ -588,7 +588,7 @@ Org-tempo is not a separate package but a module within org that can be enabled.
#+end_src
** Org Agenda Notifications
Found the solution [[https://www.reddit.com/r/orgmode/comments/15ayqvv/orgnotifications_for_scheduled_tasks_in_orgagenda/][Here]]
#+begin_src emacs-lisp
#+begin_src emacs-lispp
(use-package org-wild-notifier
:ensure t
:after 'org
@ -605,6 +605,20 @@ Found the solution [[https://www.reddit.com/r/orgmode/comments/15ayqvv/orgnotifi
)
#+end_src
#+begin_src emacs-lisp
;; Org-alert configuration
(use-package org-alert
:ensure t
:after org
:config
(progn ;; Setup
(setq org-alert-interval 300
org-alert-notification-title "Org Agenda Reminder")
(org-alert-enable)
)
)
#+end_src
* ORG ROAM
** Org Roam itself
#+begin_src emacs-lisp