From f329f259924f3e2c905159fba4a01f13c2fe4706 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Mon, 22 Dec 2025 11:28:38 +0100 Subject: [PATCH] picom: remove --- configs/default.nix | 1 - configs/picom.nix | 25 ------------------------- 2 files changed, 26 deletions(-) delete mode 100644 configs/picom.nix diff --git a/configs/default.nix b/configs/default.nix index 2d54af6..6cca0cb 100644 --- a/configs/default.nix +++ b/configs/default.nix @@ -232,7 +232,6 @@ in ./flameshot.nix ./packages.nix ./virtualization.nix - ./picom.nix ./stardict.nix ./polkit.nix ./printing.nix diff --git a/configs/picom.nix b/configs/picom.nix deleted file mode 100644 index 2f8fc13..0000000 --- a/configs/picom.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ - services.picom = { - enable = true; - # activeOpacity = 1; - fade = true; - fadeDelta = 1; - # inactiveOpacity = 0.9; - # shadow = true; - # menuOpacity = 0.9; - # shadowOpacity = 0.3; - fadeExclude = [ - "class_g = 'slock'" # don't want a transparent lock screen! - "name *?= 'slock'" - "focused = 1" - ]; - opacityRules = [ - # opacity-rule overrides both inactive and active opacity - - # video in browser tabs - # substring /regex match of title bar text - "99:name *?= 'Youtube'" - "99:WM_CLASS@:s *= 'mpv$'" - ]; - }; -}