From 85ed0392e9aaae17becfb318cc05ce90dec36a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Czy=C5=BC?= Date: Tue, 31 Dec 2024 13:38:45 +0100 Subject: [PATCH] feat: picom config removed as it caused issues --- home/dwm/picom.nix | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/home/dwm/picom.nix b/home/dwm/picom.nix index e08ee1b..cd13235 100644 --- a/home/dwm/picom.nix +++ b/home/dwm/picom.nix @@ -5,23 +5,27 @@ ... }: { - home.file = { - # ".config/picom/picom.conf" = { - # text = builtins.readFile ./picom.conf; - # }; + # home.file = { + # ".config/picom/picom.conf" = { + # text = builtins.readFile ./picom.conf; + # }; + # + # ".config/picom/picom-animations.conf" = { + # text = builtins.readFile ./picom-animations.conf; + # }; + # + # ".config/picom/black_to_transparent.frag" = { + # text = builtins.readFile ./black_to_transparent.frag; + # }; + # }; - ".config/picom/picom-animations.conf" = { - text = builtins.readFile ./picom-animations.conf; - }; + home.packages = with pkgs; [ + picom + ]; - ".config/picom/black_to_transparent.frag" = { - text = builtins.readFile ./black_to_transparent.frag; - }; - }; - - services.picom = { - enable = true; - package = pkgs.picom; + # services.picom = { + # enable = true; + # package = pkgs.picom; # backend = "glx"; # # shadow = true; @@ -110,5 +114,5 @@ # #"nordify.glsl:class_g = 'miru'" # ]; # }; - }; + # }; }