diff options
author | fpi | 2020-07-10 17:46:20 +0200 |
---|---|---|
committer | fpi | 2020-07-10 17:48:53 +0200 |
commit | 46b5b761bf161539c3f44cd7dbecf4114c4372ea (patch) | |
tree | ad75632125200ed306de7f4dbf7b7361f932b127 | |
parent | Merge branch 'gnus+' into emacs (diff) |
Set visible Bell
-rw-r--r-- | emacs-init.org | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/emacs-init.org b/emacs-init.org index 77a5662..fe10500 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -237,9 +237,10 @@ only. #+end_src ** GUI Interface Disable most of the user interface. - #+BEGIN_SRC emacs-lisp (use-package emacs + :custom + <<emacs-custom>> :config (tooltip-mode -1) (tool-bar-mode -1) @@ -247,6 +248,12 @@ Disable most of the user interface. (scroll-bar-mode -1) ) #+END_SRC + +Audible bell is useless when the sound is turned off and annoying when sound is on. Instead use visible bell. +#+begin_src emacs-lisp :tangle no :noweb-ref emacs-custom +(visible-bell t) +#+end_src + In /awesomewm/ and other tiling window managers the emacs window leaves a gap at the bottom. This removes it. #+BEGIN_SRC emacs-lisp |