From 47005d1994773967635808ab5a0a48e52517392a Mon Sep 17 00:00:00 2001 From: Jens Luedicke Date: Mon, 29 Sep 2025 17:34:50 +0200 Subject: [PATCH] Add picom config * modified: picom/picom.conf --- picom/picom.conf | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/picom/picom.conf b/picom/picom.conf index f6f5e43..e159fb4 100644 --- a/picom/picom.conf +++ b/picom/picom.conf @@ -7,12 +7,22 @@ glx-copy-from-front = false; # Opacity active-opacity = 1; -inactive-opacity = 1; +inactive-opacity = 0.95; frame-opacity = 1; inactive-opacity-override = false; +# Window-specific opacity rules +opacity-rule = [ + "90:class_g = 'Alacritty' && focused", + "85:class_g = 'Alacritty' && !focused", + "85:class_g = 'Rofi'", + "80:class_g = 'dunst'" +]; + # Blur -blur-background = false; +blur-background = true; +blur-method = "dual_kawase"; +blur-strength = 5; # Fading fading = true; @@ -50,4 +60,4 @@ wintypes: opacity = 1; focus = true; }; -}; \ No newline at end of file +};