From 35ec4486e2f1b851b1a26d04f07b37302c839525 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sat, 19 Nov 2022 16:17:09 +0100 Subject: [PATCH] home/picom: remove options that will deprecate in 22.11 --- home/services/picom.nix | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/home/services/picom.nix b/home/services/picom.nix index e98d59c..842b400 100644 --- a/home/services/picom.nix +++ b/home/services/picom.nix @@ -3,17 +3,6 @@ services.picom = { enable = true; - blur = true; - blurExclude = [ - "class_g = 'slop'" - "class_g = 'XAVA'" - "class_g = 'lattedock'" - "class_g = 'latte-dock'" - "window_type = 'dock'" - "window_type = 'desktop'" - "_GTK_FRAME_EXTENTS@:c" - ]; - fade = true; fadeSteps = [ "0.1" "0.1" ]; fadeExclude = []; @@ -27,11 +16,7 @@ "class_g = 'lattedock'" "class_g = 'latte-dock'" ]; - noDockShadow = true; - noDNDShadow = true; vSync = true; - - extraOptions = ''''; }; }