From e37659e3e89ea3e02a680628473ca5db4bc49c6e Mon Sep 17 00:00:00 2001 From: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Date: Sun, 22 Aug 2021 00:26:16 -0300 Subject: [PATCH] picom: dot not aplly effects on nameless windows --- .config/picom/picom.conf | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf index cb4ff07..ddb01bb 100644 --- a/.config/picom/picom.conf +++ b/.config/picom/picom.conf @@ -18,6 +18,7 @@ size-transition = true corner-radius = 8.0; rounded-corners-exclude = [ "class_g = 'Dunst'", + "! name~=''", #"window_type = 'normal'", ]; round-borders = 1; @@ -49,7 +50,8 @@ fade-out-step = 0.3; # 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: {} fade-exclude = [ - "class_g = 'slop'" # maim + "class_g = 'slop'", # maim + "! name~=''", ] # Do not fade on window open/close. @@ -94,7 +96,8 @@ blur-background-exclude = [ # when taking selection screenshot with `main` # https://github.com/naelstrof/maim/issues/130 "class_g = 'slop'", - "_GTK_FRAME_EXTENTS@:c" + "_GTK_FRAME_EXTENTS@:c", + "! name~=''", ];