less transparency

This commit is contained in:
Chris Cochrun 2025-09-15 09:30:16 -05:00
parent 00d79d6edf
commit 4de2d59f08
2 changed files with 7 additions and 6 deletions

View file

@ -41,9 +41,9 @@
(defun chris/set-transparency ()
"Set the frame to be transparent but not the text"
(set-frame-parameter (selected-frame) 'alpha-background 85)
(add-to-list 'default-frame-alist '(alpha-background . 85))
(add-to-list 'initial-frame-alist '(alpha-background . 85)))
(set-frame-parameter (selected-frame) 'alpha-background 95)
(add-to-list 'default-frame-alist '(alpha-background . 95))
(add-to-list 'initial-frame-alist '(alpha-background . 95)))
(if (daemonp) (add-hook 'after-make-frame-functions
(lambda (frame)