From 4a32cf270f87faf83803f815af3d91296600a537 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Wed, 10 Apr 2024 20:47:00 -0400 Subject: [PATCH] fix(picom): radically minimize picom config Signed-off-by: Lucas Sta Maria --- .config/picom.conf | 38 +++----------------------------------- 1 file changed, 3 insertions(+), 35 deletions(-) diff --git a/.config/picom.conf b/.config/picom.conf index 3d12c5f..e0634ee 100644 --- a/.config/picom.conf +++ b/.config/picom.conf @@ -2,26 +2,14 @@ # Corners # ################################# -corner-radius = 10.0; -round-borders = 1; -rounded-corners-exclude = [ - "window_type = 'dock'", - "class_g ?= 'Dmenu'", -]; +corner-radius = 0; +round-borders = 0; ################################# # Shadows # ################################# -shadow = true; -shadow-radius = 25; -shadow-opacity = 1; -shadow-offset-x = -25; -shadow-offset-y = -25; -shadow-exclude = [ - "window_type = 'dock'", - "class_g ?= 'Dunst'", -]; +shadow = false; ################################# # Transparency / Opacity # @@ -39,26 +27,6 @@ focus-exclude = [ opacity-rule = [ ]; - -################################# -# Background-Blurring # -################################# - -blur-kern = "3x3box"; -blur: { - method = "dual_kawase"; - strength = 10; - background = true; - background-frame = false; - background-fixed = false; -} -blur-background-exclude = [ - "class_g ?= 'peek'", - "class_g ?= 'Peek'" -# "window_type = 'dock'", -# -]; - ################################# # General Settings # #################################