1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

picom: add test for extraConfig

This commit is contained in:
Dixon Sean Low Yan Feng 2025-10-25 10:54:04 +08:00 committed by Austin Horstman
parent 0bc5f414f8
commit b652e703f1
2 changed files with 19 additions and 1 deletions

View file

@ -16,3 +16,11 @@ shadow-opacity = 0.800000;
unredir-if-possible = true;
vsync = true;
wintypes: { dropdown_menu = { opacity = 1.000000; }; popup_menu = { opacity = 1.000000; }; };
animations = (
{
triggers = [ "open", "show" ];
preset = "slide-in";
direction = "up";
duration = 0.2;
}
)

View file

@ -29,6 +29,16 @@
"unredir-if-possible" = true;
"dbe" = true;
};
extraConfig = ''
animations = (
{
triggers = [ "open", "show" ];
preset = "slide-in";
direction = "up";
duration = 0.2;
}
)
'';
extraArgs = [ "--legacy-backends" ];
};