From a5a1f9a42c407ffe80d610aef85982a7e3a67f8b Mon Sep 17 00:00:00 2001 From: Michael Chalupiak Date: Thu, 7 Nov 2024 13:43:15 -0500 Subject: [PATCH] blur --- config/.Xresources | 2 ++ config/.config/picom/picom.conf | 2 +- config/.doom.d/config.el | 3 +++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/config/.Xresources b/config/.Xresources index e236182..f218bb9 100644 --- a/config/.Xresources +++ b/config/.Xresources @@ -1,6 +1,8 @@ ! High DPI Settings for Window Managers !Xft.dpi: 192 +#define background_opacity 80 #include ".theme.xresources" +.alpha: 0.2 font: monospace:12 //*font: "Cascadia Code" diff --git a/config/.config/picom/picom.conf b/config/.config/picom/picom.conf index 7d92783..aba9b59 100644 --- a/config/.config/picom/picom.conf +++ b/config/.config/picom/picom.conf @@ -198,7 +198,7 @@ blur-kern = "3x3box"; # Exclude conditions for background blur. # blur-background-exclude = [] blur-background-exclude = [ - "window_type = 'dock'", +# "window_type = 'dock'", "window_type = 'desktop'", "_GTK_FRAME_EXTENTS@:c" ]; diff --git a/config/.doom.d/config.el b/config/.doom.d/config.el index ce1b375..4c5c746 100644 --- a/config/.doom.d/config.el +++ b/config/.doom.d/config.el @@ -145,3 +145,6 @@ (defun open-mpc () (interactive) (setq mpc-host (read-string "IP Address:")) (call-interactively 'mpc)) + +(set-frame-parameter nil 'alpha-background 80) ; For current frame +(add-to-list 'default-frame-alist '(alpha-background . 80)) ; For all new frames henceforth