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:
parent
0bc5f414f8
commit
b652e703f1
2 changed files with 19 additions and 1 deletions
|
|
@ -16,3 +16,11 @@ shadow-opacity = 0.800000;
|
||||||
unredir-if-possible = true;
|
unredir-if-possible = true;
|
||||||
vsync = true;
|
vsync = true;
|
||||||
wintypes: { dropdown_menu = { opacity = 1.000000; }; popup_menu = { opacity = 1.000000; }; };
|
wintypes: { dropdown_menu = { opacity = 1.000000; }; popup_menu = { opacity = 1.000000; }; };
|
||||||
|
animations = (
|
||||||
|
{
|
||||||
|
triggers = [ "open", "show" ];
|
||||||
|
preset = "slide-in";
|
||||||
|
direction = "up";
|
||||||
|
duration = 0.2;
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,16 @@
|
||||||
"unredir-if-possible" = true;
|
"unredir-if-possible" = true;
|
||||||
"dbe" = true;
|
"dbe" = true;
|
||||||
};
|
};
|
||||||
|
extraConfig = ''
|
||||||
|
animations = (
|
||||||
|
{
|
||||||
|
triggers = [ "open", "show" ];
|
||||||
|
preset = "slide-in";
|
||||||
|
direction = "up";
|
||||||
|
duration = 0.2;
|
||||||
|
}
|
||||||
|
)
|
||||||
|
'';
|
||||||
extraArgs = [ "--legacy-backends" ];
|
extraArgs = [ "--legacy-backends" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue