Adjusted blur, set st to opaque

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
This commit is contained in:
Lucien Cartier-Tilet 2020-03-25 13:05:27 +01:00
parent 822b29808c
commit fd8770fd2e
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 3 additions and 4 deletions

View File

@ -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'",
];
################################################################################