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 +};