Auto-commit: 2026-01-05 19:52:50

This commit is contained in:
2026-01-05 19:52:50 +00:00
parent ddf5af23b2
commit 27dd68f86b
15 changed files with 0 additions and 12 deletions

View File

@@ -0,0 +1,45 @@
{ lib, nixosConfig, ... }:
let
cfg = nixosConfig.my.desktop;
in
{
wayland.windowManager.hyprland = lib.mkIf (cfg.enable && cfg.hyprland.enable) {
settings = {
animations = {
enabled = true;
bezier = [
# Curves
"expressiveFastSpatial, 0.42, 1.67, 0.21, 0.90"
"expressiveSlowSpatial, 0.39, 1.29, 0.35, 0.98"
"expressiveDefaultSpatial, 0.38, 1.21, 0.22, 1.00"
"emphasizedDecel, 0.05, 0.7, 0.1, 1"
"emphasizedAccel, 0.3, 0, 0.8, 0.15"
"standardDecel, 0, 0, 0, 1"
"menu_decel, 0.1, 1, 0, 1"
"menu_accel, 0.52, 0.03, 0.72, 0.08"
];
animation = [
# Configs
# windows
"windowsIn, 1, 2, emphasizedDecel, popin 80%"
"windowsOut, 1, 3, emphasizedDecel, popin 90%"
"windowsMove, 1, 3, emphasizedDecel, slide"
"border, 1, 10, emphasizedDecel"
# layers
"layersIn, 1, 2.7, emphasizedDecel, popin 93%"
"layersOut, 1, 2.4, menu_accel, popin 94%"
# fade
"fadeLayersIn, 1, 0.5, menu_decel"
"fadeLayersOut, 1, 2.7, menu_accel"
"fade, 1, 2, emphasizedDecel"
# workspaces
"workspaces, 1, 7, menu_decel, slide"
## specialWorkspace
"specialWorkspaceIn, 1, 2.8, emphasizedDecel, slidevert"
"specialWorkspaceOut, 1, 1.2, emphasizedAccel, slidevert"
];
};
};
};
}