ATTEMPT custom cursor config

This commit is contained in:
Innovation 2024-05-01 03:51:31 -05:00
parent eef7c2e935
commit 14786fdce4

View file

@ -45,6 +45,28 @@
source = ../config;
recursive = true;
};
pointerCursor =
let
getFrom = url: hash: name: {
gtk.enable = true;
x11.enable = true;
name = name;
size = 48;
package =
pkgs.runCommand "moveUp" {} ''
mkdir -p $out/share/icons
ln -s ${pkgs.fetchzip {
url = url;
hash = hash;
}} $out/share/icons/${name}
'';
};
in
getFrom
"https://git.innovation-inc.org/Innovation/milkcursor/archive/0.0.1.zip"
"sha256-a206fe782e3269bd1c6144f2d2a07061b61a8d8ac804be34c3cae3e969efad04"
"MilkCursor";
};
#xdg.configFile = {