From f9426b18c85817f37d3c24526a2f070b63d3cdbf Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 18 Apr 2024 20:33:30 -0400 Subject: [PATCH] meta: Drop xcursor This doesn't seem to change anything nowadays with Hyprland so it should be okay to drop in 2024. Edit: This seems to get set with pointerCursor in home-manager which gets set by stylix, so it shouldn't matter either way. See: https://github.com/nix-community/home-manager/blob/ff1c3646541316258b1ca64e9b25d4c9cca8e587/modules/config/home-cursor.nix#L172-L175 And: https://github.com/danth/stylix/blob/b36fb34a9c8fb728c7efe5dbbb222bb23dcaa967/stylix/hm/cursor.nix#L15 --- containers/default.nix | 1 - home/hyprland.nix | 1 - home/xcursor.nix | 6 ------ 3 files changed, 8 deletions(-) delete mode 100644 home/xcursor.nix diff --git a/containers/default.nix b/containers/default.nix index 64d90158..51b08f59 100644 --- a/containers/default.nix +++ b/containers/default.nix @@ -11,7 +11,6 @@ ../home/gtk.nix ../home/kitty.nix ../home/neovim.nix - ../home/xcursor.nix ../home/xresources.nix ../home/yazi.nix ]; diff --git a/home/hyprland.nix b/home/hyprland.nix index d3fc58d7..9059a851 100644 --- a/home/hyprland.nix +++ b/home/hyprland.nix @@ -46,7 +46,6 @@ in settings = { env = [ - "XCURSOR_SIZE,24" "BROWSER,librewolf" "QT_IM_MODULE,fcitx" "XMODIFIERS,@im=fcitx" diff --git a/home/xcursor.nix b/home/xcursor.nix deleted file mode 100644 index 1a32c11c..00000000 --- a/home/xcursor.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ - home.file.".icons/default/index.theme".text = /* ini */ '' - [icon theme] - Inherits=phinger-cursors-dark - ''; -}