[Emacs] Filter notifications for tasks that are assigned to someone else

This commit is contained in:
Ivan Malison 2023-08-31 11:56:02 -06:00
parent 33ccb09d26
commit 9fbce617d9

View File

@ -855,6 +855,12 @@ alphanumeric characters only."
(org-wild-notifier-tags-blacklist '("nonotify")) (org-wild-notifier-tags-blacklist '("nonotify"))
(org-wild-notifier-alert-time '(30 5 0)) (org-wild-notifier-alert-time '(30 5 0))
(org-wild-notifier-extra-alert-plist '(:persistent t)) (org-wild-notifier-extra-alert-plist '(:persistent t))
(org-wild-notifier-predicate-whitelist
'((lambda (marker)
(save-excursion
(set-buffer (marker-buffer marker))
(goto-char (marker-position marker))
(imalison:assigned-to-me)))))
(org-wild-notifier-predicate-blacklist (org-wild-notifier-predicate-blacklist
'(org-wild-notifier-done-keywords-predicate)) '(org-wild-notifier-done-keywords-predicate))
(org-wild-notifier-show-any-overdue-with-day-wide-alerts t) (org-wild-notifier-show-any-overdue-with-day-wide-alerts t)