Fix transparency

This commit is contained in:
Nathan McCarty 2023-06-17 17:38:36 -04:00
parent 2adab7b749
commit a0cd625723
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
1 changed files with 2 additions and 1 deletions

View File

@ -306,7 +306,8 @@ Include part of the path to uniquify buffer names
Make the background transparent on linux Make the background transparent on linux
#+begin_src emacs-lisp #+begin_src emacs-lisp
(when (and IS-LINUX (version<= "29.0.0" emacs-version)) (when (and IS-LINUX (version<= "29.0.0" emacs-version))
(set-frame-parameter nil 'alpha-background 95)) (set-frame-parameter nil 'alpha-background 95)
(add-to-list 'default-frame-alist '(alpha-background . 95)))
#+end_src #+end_src
* Basic Editing * Basic Editing
** Evil Mode ** Evil Mode