This commit is contained in:
Aleksandr Lebedev 2025-03-07 17:21:04 +01:00
parent afeb65d2ec
commit 609814457e

View file

@ -1033,6 +1033,7 @@ Automatically copies all *DONE* TODOs to Today's daily
Found the solution [[https://www.reddit.com/r/orgmode/comments/15ayqvv/orgnotifications_for_scheduled_tasks_in_orgagenda/][Here]]
But it doesn't work on Android in GUI because of async (interprocess communications)
#+begin_src emacs-lisp
(unless (string-equal system-type "android")
(use-package org-wild-notifier
:ensure t
:after 'org
@ -1047,7 +1048,7 @@ But it doesn't work on Android in GUI because of async (interprocess communicati
org-wild-notifier-display-time-format-string "%H:%M"
alert-fade-time 50
)
)
#+end_src
*** Org alert
Actually works, but is too basic
@ -1067,7 +1068,8 @@ Actually works, but is too basic
*** Appt
Internal emacs tool and [[https://github.com/jwiegley/alert][alert]]. Settings for alert are at the beginning of this file.
This solution was found [[https://igormelo.org/you_dont_need_org_alert.html][here]].
#+begin_src emacs-lispp
#+begin_src emacs-lisp
(when (string-equal system-type "android")
(use-package emacs
:config
;; start warning 60 minutes before the appointment
@ -1090,6 +1092,7 @@ This solution was found [[https://igormelo.org/you_dont_need_org_alert.html][her
(appt-activate t))
(setq alert-fade-time 50)
)
#+end_src
**** Appt on modeline
#+begin_src emacs-lisp