From ba49398d6a850b72005d2a770ca929650febab7f Mon Sep 17 00:00:00 2001 From: Aleksandr Lebedev Date: Sun, 2 Feb 2025 18:53:56 +0100 Subject: [PATCH] Changed notification package --- config.org | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index 9733bb3..3ee7d9d 100644 --- a/config.org +++ b/config.org @@ -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