From fd8770fd2eeadb2156d4576a0d01c7765d27b4ae Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Wed, 25 Mar 2020 13:05:27 +0100 Subject: [PATCH] Adjusted blur, set st to opaque MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Blur is a little less strong, and is also active for background of opaque windows with transparent background Incidentally, st’s transparency is now handled by Xresources and not by compton anymore --- .config/compton.conf | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.config/compton.conf b/.config/compton.conf index 39dd18b..50a6a31 100644 --- a/.config/compton.conf +++ b/.config/compton.conf @@ -123,11 +123,11 @@ alpha-step = 0.06; # Blur backgound of transparent windows. Bad performance with X Render backend. # GLX is preffered. blur-method = "kawase"; -blur-strength = 12; +blur-strength = 10; blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1"; blur-background = true; # Blur background of opaque windows with transparent frames as well. -# blur-background-frame = true; +blur-background-frame = true; # Do not let blur radius adjust based on window opacity blur-background-fixed = false; blur-background-exclude = [ @@ -137,8 +137,7 @@ blur-background-exclude = [ ]; opacity-rule = [ "85:class_g = 'Polybar'", - "80:class_g = 'St'", - "75:class_g *?= 'Rofi'" + "100:class_g = 'St'", ]; ################################################################################