mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-07 06:29:00 +01:00
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:
parent
fa15715cc7
commit
d058a3bd70
16
overlays/picom.nix
Normal file
16
overlays/picom.nix
Normal 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
|
||||
]);
|
||||
});
|
||||
}
|
Loading…
Reference in New Issue
Block a user