attempt to fine tune org notifications on windows ; failed but updated code is present for future attempts
This commit is contained in:
parent
508396466a
commit
6ca04c92b9
23
org/init.el
23
org/init.el
|
@ -66,22 +66,25 @@
|
|||
'(ox-hugo org-super-agenda org-alert alert-toast alert)
|
||||
)
|
||||
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; Load misc extensions
|
||||
(require 'org)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; org-alert - windows only
|
||||
(when (eq system-type 'windows-nt)
|
||||
(use-package org-alert)
|
||||
(use-package alert-toast :after alert)
|
||||
(setq alert-default-style 'toast)
|
||||
(setq org-alert-interval 300
|
||||
org-alert-notify-cutoff 15
|
||||
org-alert-notify-after-event-cutoff 86400)
|
||||
(org-alert-enable)
|
||||
)
|
||||
;(when (eq system-type 'windows-nt)
|
||||
;(use-package org-alert)
|
||||
;(use-package alert-toast :after alert)
|
||||
;(alert-define-style 'toast-kmn :title "Windows 10 toast notification"
|
||||
; :severity (assq 'normal alert-toast-priorities)
|
||||
; :persistent t
|
||||
; :notifier #'alert-toast-notify)
|
||||
;(setq alert-default-style 'toast-kmn)
|
||||
;(setq org-alert-interval 300
|
||||
; org-alert-notify-cutoff 15
|
||||
; org-alert-notify-after-event-cutoff 86400)
|
||||
;(org-alert-enable)
|
||||
;)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; Update/add auto file handling
|
||||
|
|
Reference in a new issue