First commit.

This commit is contained in:
2022-01-09 21:19:46 +01:00
commit df36844dcc
107 changed files with 6565 additions and 0 deletions

21
lisp/utilities/sauron.el Normal file
View 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