picom: dot not aplly effects on nameless windows

This commit is contained in:
Guilherme Rugai Freire 2021-08-22 00:26:16 -03:00
parent ffc8cd4a8b
commit e37659e3e8
No known key found for this signature in database
GPG Key ID: 0F9FE41723A8A297

View File

@ -18,6 +18,7 @@ size-transition = true
corner-radius = 8.0; corner-radius = 8.0;
rounded-corners-exclude = [ rounded-corners-exclude = [
"class_g = 'Dunst'", "class_g = 'Dunst'",
"! name~=''",
#"window_type = 'normal'", #"window_type = 'normal'",
]; ];
round-borders = 1; round-borders = 1;
@ -49,7 +50,8 @@ fade-out-step = 0.3;
# Specify a list of conditions of windows that should not be faded. # Specify a list of conditions of windows that should not be faded.
# don't need this, we disable fading for all normal windows with wintypes: {} # don't need this, we disable fading for all normal windows with wintypes: {}
fade-exclude = [ fade-exclude = [
"class_g = 'slop'" # maim "class_g = 'slop'", # maim
"! name~=''",
] ]
# Do not fade on window open/close. # Do not fade on window open/close.
@ -94,7 +96,8 @@ blur-background-exclude = [
# when taking selection screenshot with `main` # when taking selection screenshot with `main`
# https://github.com/naelstrof/maim/issues/130 # https://github.com/naelstrof/maim/issues/130
"class_g = 'slop'", "class_g = 'slop'",
"_GTK_FRAME_EXTENTS@:c" "_GTK_FRAME_EXTENTS@:c",
"! name~=''",
]; ];