From 2c710520304b395070ea6e1a248550b126f16431 Mon Sep 17 00:00:00 2001
From: Antoine Martin <antoine@alarsyo.net>
Date: Tue, 18 Feb 2025 22:33:46 +0100
Subject: [PATCH] home: x: cursors: switch to bibata

Let's try some changes
---
 home/x/cursor.nix | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/home/x/cursor.nix b/home/x/cursor.nix
index 04378b0..aa3ebbb 100644
--- a/home/x/cursor.nix
+++ b/home/x/cursor.nix
@@ -16,12 +16,16 @@ in {
 
   config = mkIf cfg.enable {
     home.pointerCursor = {
-      package = pkgs.capitaine-cursors;
-      name = "capitaine-cursors";
-      # available sizes for capitaine-cursors are:
-      # 24, 30, 36, 48, 60, 72
-      size = 30;
+      #package = pkgs.capitaine-cursors;
+      #name = "capitaine-cursors";
+      #package = pkgs.catppuccin-cursors.frappeDark;
+      #name = "catppuccin-frappe-dark-cursors";
+      package = pkgs.bibata-cursors;
+      name = "Bibata-Modern-Classic";
+      # https://unix.stackexchange.com/a/743543
+      size = 24;
       x11.enable = true;
+      gtk.enable = true;
     };
   };
 }