about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@tvl.su>2024-09-07T11·50+0300
committerclbot <clbot@tvl.fyi>2024-09-07T17·18+0000
commitbdf1162d4733fb2a5c0c6eb6b615342acd98cb8b (patch)
tree2516842a882745e1a19209d64dcda4aaee0e753c
parent7903d260541ed23e118c598a97d0619b6fb5e42e (diff)
fix(tazjin/home): fix cursor sizes on hidpi/non-hidpi machines r/8665
Change-Id: If2e2c7ffeadcd920e518c107b30156a62ea7c5c4
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12449
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
-rw-r--r--users/tazjin/home/shared.nix2
-rw-r--r--users/tazjin/home/zamalek.nix2
2 files changed, 3 insertions, 1 deletions
diff --git a/users/tazjin/home/shared.nix b/users/tazjin/home/shared.nix
index 887668a2f9fd..a5aa5296a132 100644
--- a/users/tazjin/home/shared.nix
+++ b/users/tazjin/home/shared.nix
@@ -110,7 +110,7 @@ in
     iconTheme.name = "Chicago95-tux";
     iconTheme.package = chicago95;
 
-    cursorTheme.name = "Chicago95_Animated_Hourglass_Cursors_HiDPI";
+    cursorTheme.name = lib.mkDefault "Chicago95_Animated_Hourglass_Cursors";
     cursorTheme.package = chicago95;
   };
 
diff --git a/users/tazjin/home/zamalek.nix b/users/tazjin/home/zamalek.nix
index d24de945bb28..98da5e6b233e 100644
--- a/users/tazjin/home/zamalek.nix
+++ b/users/tazjin/home/zamalek.nix
@@ -8,4 +8,6 @@
     depot.users.tazjin.home.shared
     depot.users.tazjin.home.persistence
   ];
+
+  gtk.cursorTheme.name = lib.mkForce "Chicago95_Animated_Hourglass_Cursors_HiDPI";
 }