From ae7ba6003645acfea9bd860409f7cefae904183a Mon Sep 17 00:00:00 2001 From: Nathan Anderson Date: Tue, 19 Mar 2024 11:40:28 -0600 Subject: [PATCH] add fix for cursors on other apps --- nate/modules/home-manager/home.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/nate/modules/home-manager/home.nix b/nate/modules/home-manager/home.nix index 9e1a8fb..ffac287 100644 --- a/nate/modules/home-manager/home.nix +++ b/nate/modules/home-manager/home.nix @@ -215,7 +215,7 @@ }; }; }; - # Symlink in gtk and kvantum theme + # Symlink in gtk and kvantum theme to ~/.config xdg.configFile = { "gtk-4.0/assets".source = "${config.gtk.theme.package}/share/themes/${config.gtk.theme.name}/gtk-4.0/assets"; "gtk-4.0/gtk.css".source = "${config.gtk.theme.package}/share/themes/${config.gtk.theme.name}/gtk-4.0/gtk.css"; @@ -225,7 +225,9 @@ theme=Catppuccin-Frappe-Blue ''; "Kvantum/Catppuccin-Frappe-Blue".source = "${pkgs.catppuccin-kvantum}/share/Kvantum/Catppuccin-Frappe-Blue"; - # "Kvantum/ArcDark".source = "${pkgs.arc-kde-theme}/share/Kvantum/ArcDark"; - # "Kvantum/kvantum.kvconfig".text = "[General]\ntheme=ArcDark"; }; + home.file.".icons/default/index.theme".text = '' + [icon theme] + Inherits=Catppuccin-Macchiato-Lavender-Cursors + ''; }