Customise alert package, add org-alert
This commit is contained in:
parent
a002a85761
commit
ad058643bf
16
README.org
16
README.org
|
@ -325,7 +325,13 @@ Loading this file is handled automatically on my [[https://git.xenia.me.uk/xenia
|
|||
;; per mode with `ligature-mode'.
|
||||
(global-ligature-mode t))
|
||||
#+end_src
|
||||
|
||||
** Notifications
|
||||
#+begin_src emacs-lisp
|
||||
(use-package alert
|
||||
:ensure t
|
||||
:custom
|
||||
(alert-default-style 'libnotify))
|
||||
#+end_src
|
||||
** Modeline
|
||||
#+begin_src emacs-lisp
|
||||
(line-number-mode +1)
|
||||
|
@ -521,6 +527,12 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
|
|||
(search . " %-12:c")))
|
||||
#+end_src
|
||||
|
||||
** org-alert
|
||||
#+begin_src emacs-lisp
|
||||
(use-package org-alert
|
||||
:ensure t
|
||||
:after alert)
|
||||
#+end_src
|
||||
** org-journal
|
||||
#+BEGIN_SRC emacs-lisp :results output silent
|
||||
(use-package org-journal
|
||||
|
@ -1211,7 +1223,7 @@ Set fill column to 88 and enable display in python buffers
|
|||
(mu4e-refile-folder . "/Outlook/Archive"))))))
|
||||
|
||||
(use-package mu4e-alert
|
||||
:after mu4e
|
||||
:after (mu4e alert)
|
||||
:config
|
||||
(mu4e-alert-set-default-style 'libnotify)
|
||||
(mu4e-alert-enable-notifications)
|
||||
|
|
Loading…
Reference in a new issue