New cursor theme: suwako

This commit is contained in:
Natsu Kagami 2023-10-15 14:17:12 +02:00
parent 3278589ca0
commit b4f80b0844
Signed by: nki
GPG key ID: 55A032EB38B49ADB
5 changed files with 14 additions and 3 deletions

View file

@ -77,9 +77,10 @@ in
# Cursor
home.pointerCursor = {
package = pkgs.numix-cursor-theme;
name = "Numix-Cursor";
size = 24;
package = pkgs.suwako-cursors;
gtk.enable = true;
name = "Suwako";
size = 32;
};
# MIME set ups

View file

@ -1,4 +1,5 @@
final: prev: {
epfl-cups-drivers = final.callPackage ./epfl-cups-drivers { };
ttaenc = final.callPackage ./ttaenc.nix { };
suwako-cursors = final.callPackage ./suwako-cursors { };
}

View file

@ -0,0 +1,3 @@
## Suwako Cursors
From https://www.gnome-look.org/p/1937763/. All rights belong to the creator.

Binary file not shown.

View file

@ -0,0 +1,6 @@
{ runCommandLocal, unzip }:
runCommandLocal "suwako-cursors" { } ''
mkdir -p $out/share/icons
${unzip}/bin/unzip ${./Suwako.zip} -d $out/share/icons
''