ATTEMPT custom cursor config
This commit is contained in:
parent
eef7c2e935
commit
14786fdce4
|
@ -45,6 +45,28 @@
|
||||||
source = ../config;
|
source = ../config;
|
||||||
recursive = true;
|
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 = {
|
#xdg.configFile = {
|
||||||
|
|
Loading…
Reference in a new issue