💄 Disable background transparency

This commit is contained in:
Marcel Kapfer 2025-02-10 17:56:01 +01:00
parent b6d142d42c
commit 10a1667872
Signed by: mmk2410
GPG key ID: CADE6F0C09F21B09

View file

@ -545,10 +545,10 @@ Installing and enabling ef-themes.
Add a slight transparency to the frames. Code provided by David Wilson / System Crafters [[https://github.com/daviwil/emacs-from-scratch/blob/master/Emacs.org][Emacs from Scratch]] video series.
#+begin_src emacs-lisp
(setq mmk2410/alpha-background 95)
(setq mmk2410/frame-transparency 100)
(set-frame-parameter nil 'alpha-background mmk2410/alpha-background)
(add-to-list 'default-frame-alist `(alpha-background . ,mmk2410/alpha-background))
(set-frame-parameter nil 'alpha-background mmk2410/frame-transparency)
(add-to-list 'default-frame-alist `(alpha-background . ,mmk2410/frame-transparency))
#+end_src
#+begin_src emacs-lisp