aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-01-08 12:10:16 -0800
committerGravatar Tom Willemse2026-01-08 12:10:25 -0800
commit15047038f7d109e029bff2ff4308fb91c78de2c0 (patch)
treec975358fcb309801955fc78b3e30c3f72710087a
parentba349c7cc342d8e078ff6699384e8153bfd5a01d (diff)
downloademacs-config-15047038f7d109e029bff2ff4308fb91c78de2c0.tar.gz
emacs-config-15047038f7d109e029bff2ff4308fb91c78de2c0.zip
Remove beacon-mode
It doesn't really work very well, it's slow, intrusive. I'll use pulse instead where I want something.
-rw-r--r--oni-eshell.el7
-rw-r--r--oni-ui.el10
-rw-r--r--oni-vterm.el8
3 files changed, 4 insertions, 21 deletions
diff --git a/oni-eshell.el b/oni-eshell.el
index 411f7ac..6e01ad1 100644
--- a/oni-eshell.el
+++ b/oni-eshell.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2025.1215.002605
+;; Version: 2025.1222.160029
;; Package-Requires: (eshell-fringe-status esh-autosuggest xterm-color eshell-syntax-highlighting)
;; This program is free software; you can redistribute it and/or modify
@@ -81,10 +81,6 @@
(eshell/cd (file-name-directory (buffer-file-name (get-buffer buffer-name))))
(eshell-reset))
-(defun oni-eshell-disable-beacon-on-scroll ()
- "Disable ‘beacon-blink-when-window-scrolls’ in the current buffer."
- (setq-local beacon-blink-when-window-scrolls nil))
-
(defun oni-eshell-change-font ()
"Remap the default font to the one I use for terminals."
(face-remap-add-relative 'default :family "Classic Console Neue"))
@@ -104,7 +100,6 @@
(add-hook 'eshell-load-hook #'oni-eshell--enable-truncating-buffers)
(add-hook 'eshell-load-hook #'oni-eshell--enable-xterm-filter)
(add-hook 'eshell-mode-hook #'oni-eshell-change-font)
-(add-hook 'eshell-mode-hook #'oni-eshell-disable-beacon-on-scroll)
(add-hook 'eshell-mode-hook #'oni-eshell-set-imenu-expression)
(add-hook 'eshell-mode-hook #'oni-eshell-set-page-delimiter)
(add-hook 'eshell-mode-hook 'esh-autosuggest-mode)
diff --git a/oni-ui.el b/oni-ui.el
index a6350a3..854f4b3 100644
--- a/oni-ui.el
+++ b/oni-ui.el
@@ -4,8 +4,8 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2021.1123.003239
-;; Package-Requires: (beacon diminish)
+;; Version: 2025.1021.110116
+;; Package-Requires: (diminish)
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@@ -26,21 +26,15 @@
;;; Code:
-(require 'beacon)
(require 'diminish)
(require 'tool-bar)
-(with-eval-after-load 'beacon
- (diminish 'beacon-mode)
- (add-to-list 'beacon-dont-blink-major-modes 'circe-channel-mode))
-
(menu-bar-mode -1)
(tool-bar-mode -1)
(blink-cursor-mode -1)
(show-paren-mode)
-(beacon-mode)
(setq inhibit-startup-screen t)
diff --git a/oni-vterm.el b/oni-vterm.el
index d2b7314..33542eb 100644
--- a/oni-vterm.el
+++ b/oni-vterm.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2021.0715.215412
+;; Version: 2025.1021.110152
;; Package-Requires: (vterm)
;; This program is free software; you can redistribute it and/or modify
@@ -31,12 +31,6 @@
(require 'vterm)
-(defun oni-vterm-disable-beacon-on-scroll ()
- "Disable ‘beacon-blink-when-window-scrolls’ in the current buffer."
- (setq-local beacon-blink-when-window-scrolls nil))
-
-(add-hook 'vterm-mode-hook #'oni-vterm-disable-beacon-on-scroll)
-
(setq vterm-buffer-name-string "*vterm* %s")
(provide 'oni-vterm)