Changed notification package
This commit is contained in:
parent
792fb9fd7e
commit
ba49398d6a
1 changed files with 15 additions and 1 deletions
16
config.org
16
config.org
|
|
@ -588,7 +588,7 @@ Org-tempo is not a separate package but a module within org that can be enabled.
|
||||||
#+end_src
|
#+end_src
|
||||||
** Org Agenda Notifications
|
** Org Agenda Notifications
|
||||||
Found the solution [[https://www.reddit.com/r/orgmode/comments/15ayqvv/orgnotifications_for_scheduled_tasks_in_orgagenda/][Here]]
|
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
|
(use-package org-wild-notifier
|
||||||
:ensure t
|
:ensure t
|
||||||
:after 'org
|
:after 'org
|
||||||
|
|
@ -605,6 +605,20 @@ Found the solution [[https://www.reddit.com/r/orgmode/comments/15ayqvv/orgnotifi
|
||||||
)
|
)
|
||||||
|
|
||||||
#+end_src
|
#+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
|
||||||
** Org Roam itself
|
** Org Roam itself
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue