overlays: Update picom to v12-rc2 for animations

Trying this out with dwm and it seems to work. Note that we aren't using
the windowmap patch since it causes windows such as kitty to not focus
properly when switching between tags.
This commit is contained in:
Donovan Glover 2024-08-23 18:16:56 -04:00
parent fa15715cc7
commit d058a3bd70
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

16
overlays/picom.nix Normal file
View File

@ -0,0 +1,16 @@
final: prev: {
picom = prev.picom.overrideAttrs (oldAttrs: rec {
version = "12-rc2";
src = prev.fetchFromGitHub {
owner = "yshui";
repo = "picom";
rev = "v${version}";
hash = "sha256-59I6uozu4g9hll5U/r0nf4q92+zwRlbOD/z4R8TpSdo=";
};
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ (with prev; [
asciidoctor
]);
});
}