Ver 1.0
This commit is contained in:
parent
b6b87d5aed
commit
9c72a71585
3546 changed files with 18655 additions and 0 deletions
27
nixosVista/homeManager/hyprland/style/animation.nix
Normal file
27
nixosVista/homeManager/hyprland/style/animation.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
nixosVista,
|
||||
...
|
||||
}: let
|
||||
cfg = nixosVista.hyprland.style.animation;
|
||||
|
||||
animationLines =
|
||||
lib.concatStringsSep "\n " cfg.config;
|
||||
in {
|
||||
config = lib.mkIf nixosVista.enable {
|
||||
#warnings = [ ">>> HYPRLAND Animations MODULE ACTIVE <<<" ];
|
||||
|
||||
nixosVista.hyprland.fragments.animation = ''
|
||||
|
||||
############################################################
|
||||
# Animations
|
||||
############################################################
|
||||
animations {
|
||||
enabled = ${lib.boolToString cfg.enabled}
|
||||
|
||||
${animationLines}
|
||||
}
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue