From a0cd6257233852173107f48faccc69f1e8e98173 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sat, 17 Jun 2023 17:38:36 -0400 Subject: [PATCH] Fix transparency --- config.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index cab5ba5..dc3c08a 100644 --- a/config.org +++ b/config.org @@ -306,7 +306,8 @@ Include part of the path to uniquify buffer names Make the background transparent on linux #+begin_src emacs-lisp (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 * Basic Editing ** Evil Mode