From fdcabbe543375071870e8305f4c39d3a667ce5a4 Mon Sep 17 00:00:00 2001 From: kenji Date: Thu, 1 Jan 2026 22:09:53 -0600 Subject: [PATCH] add(hypr): dynamic cursor --- apps/hyprland/default.nix | 1 + apps/hyprland/hypr/misc.nix | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/apps/hyprland/default.nix b/apps/hyprland/default.nix index a721d2d..d334425 100644 --- a/apps/hyprland/default.nix +++ b/apps/hyprland/default.nix @@ -14,5 +14,6 @@ wayland.windowManager.hyprland.systemd.enable = false; # for UWSM support... wayland.windowManager.hyprland.plugins = [ pkgs.hyprlandPlugins.hyprsplit + pkgs.hyprlandPlugins.hypr-dynamic-cursors ]; } diff --git a/apps/hyprland/hypr/misc.nix b/apps/hyprland/hypr/misc.nix index 58f23e2..07be368 100644 --- a/apps/hyprland/hypr/misc.nix +++ b/apps/hyprland/hypr/misc.nix @@ -24,6 +24,15 @@ num_workspaces = 5; persistent_workspaces = false; }; + + dynamic-cursors = { + mode = "tilt"; + shake = { + enabled = true; + threshold = 4.0; + factor = 1.5; + }; + }; }; }; }