From 66c3c65ee2aac22d67a941d18f79eb133091b810 Mon Sep 17 00:00:00 2001 From: Przemek Grondek Date: Tue, 1 Aug 2023 22:22:16 +0200 Subject: [PATCH] Update picom exclude scratchpad from rounding corners --- .config/picom.conf | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.config/picom.conf b/.config/picom.conf index c0e9113..451c6a5 100644 --- a/.config/picom.conf +++ b/.config/picom.conf @@ -7,22 +7,24 @@ panting-on-overlay = true; opengl-swc = true; # Fading -fading = true; +fading = false; fade-in-step = 0.05; fade-out-step = 0.05; # Corners corner-radius = 10; -round-borders = 1; -detect-rounded-corners = true; +round-borders = 2; +shadow-opacity = 1; +detect-rounded-corners = false; round-borders-rule = [ - "3:class_g = 'XTerm'", - "3:class_g = 'URxvt'", - "15:class_g = 'Signal'" + "class_g = 'XTerm'", + "class_g = 'URxvt'", + "class_g = 'Signal'" ]; rounded-corners-exclude = [ "class_g = 'dwmtray'", "class_g = 'dwm'", "class_g = 'dmenu'", - "class_g = 'Dunst'" + "class_g = 'Dunst'", + "name = 'scratchpad'" ]