New cursor theme: suwako
This commit is contained in:
parent
3278589ca0
commit
b4f80b0844
|
@ -77,9 +77,10 @@ in
|
||||||
|
|
||||||
# Cursor
|
# Cursor
|
||||||
home.pointerCursor = {
|
home.pointerCursor = {
|
||||||
package = pkgs.numix-cursor-theme;
|
package = pkgs.suwako-cursors;
|
||||||
name = "Numix-Cursor";
|
gtk.enable = true;
|
||||||
size = 24;
|
name = "Suwako";
|
||||||
|
size = 32;
|
||||||
};
|
};
|
||||||
|
|
||||||
# MIME set ups
|
# MIME set ups
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
final: prev: {
|
final: prev: {
|
||||||
epfl-cups-drivers = final.callPackage ./epfl-cups-drivers { };
|
epfl-cups-drivers = final.callPackage ./epfl-cups-drivers { };
|
||||||
ttaenc = final.callPackage ./ttaenc.nix { };
|
ttaenc = final.callPackage ./ttaenc.nix { };
|
||||||
|
suwako-cursors = final.callPackage ./suwako-cursors { };
|
||||||
}
|
}
|
||||||
|
|
3
packages/common/suwako-cursors/README.md
Normal file
3
packages/common/suwako-cursors/README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
## Suwako Cursors
|
||||||
|
|
||||||
|
From https://www.gnome-look.org/p/1937763/. All rights belong to the creator.
|
BIN
packages/common/suwako-cursors/Suwako.zip
Normal file
BIN
packages/common/suwako-cursors/Suwako.zip
Normal file
Binary file not shown.
6
packages/common/suwako-cursors/default.nix
Normal file
6
packages/common/suwako-cursors/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ runCommandLocal, unzip }:
|
||||||
|
runCommandLocal "suwako-cursors" { } ''
|
||||||
|
mkdir -p $out/share/icons
|
||||||
|
${unzip}/bin/unzip ${./Suwako.zip} -d $out/share/icons
|
||||||
|
''
|
||||||
|
|
Loading…
Reference in a new issue