First commit.
This commit is contained in:
21
lisp/utilities/sauron.el
Normal file
21
lisp/utilities/sauron.el
Normal file
@@ -0,0 +1,21 @@
|
||||
;;; sauron.el --- Emacs event tracker -*- lexical-binding: t; -*-
|
||||
;;; Commentary: sauron is an emacs mode for keeping track of events happening in the (emacs) world around you.
|
||||
;;; Code: https://github.com/djcb/sauron
|
||||
|
||||
(use-package sauron
|
||||
:defer
|
||||
:bind-wrap
|
||||
((:key :util :notifications) . sauron-toggle-hide-show)
|
||||
:config
|
||||
(validate-setq
|
||||
;; Display sauron in current frame.
|
||||
sauron-separate-frame nil)
|
||||
|
||||
(with-eval-after-load 'alert
|
||||
(add-hook 'sauron-event-added-functions 'sauron-alert-el-adapter))
|
||||
|
||||
(sauron-start-hidden))
|
||||
|
||||
|
||||
(provide 'utilities/sauron)
|
||||
;;; sauron.el ends here
|
Reference in New Issue
Block a user