org-wild-notifier.el icon indicating copy to clipboard operation
org-wild-notifier.el copied to clipboard

Notifications do not show on doom emacs

Open Dev380 opened this issue 10 months ago • 0 comments

I tried to test out the package by manually calling the check command when there's a notification in the future. I am on doom emacs. Here is my config:

(use-package! org-wild-notifier
  :hook  (doom-post-init . #'org-wild-notifier-mode)
  :custom
  (org-wild-notifier-keyword-whitelist nil)
  :config
  (alert-add-rule :predicate (lambda (info) (string-equal org-wild-notifier-notification-title (plist-get info :title))) :style 'notifications))

And here is the entry:

* Test
<2024-04-06 Sat 17:11>

Although making it a scheduled event doesn't seem to work too. I called org-wild-notifier--notify and that seemed to work, so I think it's an issue with this package and not alert.el.

Dev380 avatar Apr 06 '24 21:04 Dev380