feat: updated niri

This commit is contained in:
Nick 2025-05-16 20:03:42 -05:00
parent 2b91a4d407
commit ee42e007a7
13 changed files with 562 additions and 488 deletions

View file

@ -0,0 +1,55 @@
{ flake, ... }:
let
inherit (flake.config.aesthetics.themes) cursor;
in
{
cursor = {
size = cursor.size;
theme = "catppuccin-macchiato-dark-cursors";
};
animations = {
enable = true;
config-notification-open-close = {
spring = {
damping-ratio = 0.600000;
epsilon = 0.001000;
stiffness = 1000;
};
};
horizontal-view-movement = {
spring = {
damping-ratio = 1.000000;
epsilon = 0.000100;
stiffness = 800;
};
};
window-close = {
easing = {
curve = "ease-out-quad";
duration-ms = 150;
};
};
window-open = {
spring = {
damping-ratio = 1.000000;
epsilon = 0.000100;
stiffness = 800;
};
};
window-resize = {
spring = {
damping-ratio = 1.000000;
epsilon = 0.000100;
stiffness = 800;
};
};
workspace-switch = {
spring = {
damping-ratio = 1.000000;
epsilon = 0.000100;
stiffness = 1000;
};
};
};
}