refactor(cursor): migrate hyprcursor for modularity

This commit is contained in:
kenji
2026-01-11 14:52:23 -06:00
parent 04627242a8
commit 80e38516a6
2 changed files with 7 additions and 4 deletions
-2
View File
@@ -4,8 +4,6 @@
]; ];
wayland.windowManager.hyprland.settings = { wayland.windowManager.hyprland.settings = {
env = [ env = [
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
"HYPRCURSOR_SIZE,24"
"GUM_CONFIRM_PROMPT_FOREGROUND,6" "GUM_CONFIRM_PROMPT_FOREGROUND,6"
"GUM_CONFIRM_SELECTED_FOREGROUND,0" "GUM_CONFIRM_SELECTED_FOREGROUND,0"
"GUM_CONFIRM_SELECTED_BACKGROUND,2" "GUM_CONFIRM_SELECTED_BACKGROUND,2"
+7 -2
View File
@@ -1,5 +1,4 @@
{ pkgs, ... }: {pkgs, ...}: {
{
imports = [ imports = [
../../apps/matugen ../../apps/matugen
]; ];
@@ -10,4 +9,10 @@
name = "rose-pine-hyprcursor"; name = "rose-pine-hyprcursor";
size = 24; size = 24;
}; };
wayland.windowManager.hyprland.settings = {
env = [
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
"HYPRCURSOR_SIZE,24"
];
};
} }