From 09c1072041f4d0a1d3ffb0c0820dc8d55c27ccf9 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 27 May 2021 15:28:39 +0200 Subject: [PATCH] add picom config --- general/.config/picom/picom.conf | 44 ++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 general/.config/picom/picom.conf diff --git a/general/.config/picom/picom.conf b/general/.config/picom/picom.conf new file mode 100644 index 0000000..417cdef --- /dev/null +++ b/general/.config/picom/picom.conf @@ -0,0 +1,44 @@ +backend = "glx"; + +opacity-rule = [ ]; + + +corner-radius = 6.0; +rounded-corners-exclude = [ + # "widthb > 1365 && heightb > 736" # For smart gaps and a non-floating bar + # "class_g = 'Dunst'" +]; + + +# Add dual-kawase blur +blur-background = true; +blur-background-frame = true; +blur-background-fixed = true; +blur-kern = "3x3box"; +blur-method = "dual_kawase"; +blur-strength = 16; +blur-background-exclude = [ + "class_g = 'slop'", + "class_g = 'XAVA'", + "class_g = 'lattedock'", + "class_g = 'latte-dock'" +]; + + +shadow = true; +shadow-radius = 12; +shadow-opacity = 0.25; +shadow-offset-x = -7; +shadow-offset-y = -7; +shadow-exclude = [ + "class_g = 'XAVA'" + "class_g = 'stalonetray'" + "class_g = 'lattedock'", + "class_g = 'latte-dock'" +]; + + +fading = true; +fade-in-step = 0.1; +fade-out-step = 0.1; +fade-exclude = [ ];