From 3da9e55f1fb29db205904e237be5ea5379ef1ec4 Mon Sep 17 00:00:00 2001 From: Anas Elgarhy Date: Fri, 20 Jan 2023 22:12:33 +0200 Subject: [PATCH] Update the picom configs :P --- .config/picom/picom.conf | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf index 9eb4a9b..2692818 100644 --- a/.config/picom/picom.conf +++ b/.config/picom/picom.conf @@ -1,3 +1,29 @@ +########## GLX Backend ########## + +backend = "glx"; +glx-no-stencil = true; + +###### Background-Blurring ###### + +blur-background = true; +blur-background-frame = true; +blur-background-fixed = true; +blur-method = "dual_kawase"; +blur-strength = 3; + +########## Rounded Corners ########## + +# corner-radius = 18.0; +# detect-rounded-corners = true; + +# rounded-corners-exclude = [ +# "class_g = 'dwm'", + +# ]; + +#### Transparency / Opacity ##### + +frame-opacity = 1; opacity-rule = [ - "80:class_g = 'Alacritty'", + "70:class_g = 'Alacritty'", ];