1
0
Fork 0

feat: Change cursor theme

This commit is contained in:
lwad 2024-04-12 10:44:36 +01:00
parent ebab3608ff
commit 93dfaee078
1 changed files with 18 additions and 2 deletions

View File

@ -46,8 +46,24 @@ in {
];
pointerCursor = {
gtk.enable = true;
name = "breeze_cursors";
package = pkgs.breeze-gtk;
name = "Posy's Cursor";
package = pkgs.stdenvNoCC.mkDerivation {
name = "posy-improved-cursor";
src = pkgs.fetchFromGitHub {
owner = "simtrami";
repo = "posy-improved-cursor-linux";
rev = "bd2bac08bf01e25846a6643dd30e2acffa9517d4";
hash = "sha256-ndxz0KEU18ZKbPK2vTtEWUkOB/KqA362ipJMjVEgzYQ=";
};
dontBuild = true;
installPhase = ''
mkdir -p $out/share/icons
mv Posy_Cursor "$out/share/icons/Posy's Cursor"
'';
};
size = 16;
x11.enable = true;
};