;;; init-org-wild-notifier.el --- Initialize org-wild-notifier -*- lexical-binding: t -*- ;;; Commentary: ;; https://github.com/akhramov/org-wild-notifier.el ;;; Code: (unless (package-installed-p 'org-wild-notifier) (package-install 'org-wild-notifier)) (require 'org-wild-notifier) (setq org-wild-notifier-alert-time '(1)) (setq org-wild-notifier-notification-title "Task") (setq org-wild-notifier-display-time-format-string "") (org-wild-notifier-mode 1) (provide 'init-org-wild-notifier) ;;; init-org-wild-notifier.el ends here