22 lines
599 B
EmacsLisp
22 lines
599 B
EmacsLisp
;;; 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
|