Skip to content

Commit

Permalink
phinger-cursors: Downgrade from 2.0 to 1.1 (again)
Browse files Browse the repository at this point in the history
2.0 introduces some kind of breaking change that results in the cursor
appearing larger than usual, which I haven't been able to find an answer
for. The 1.1 cursor has been great already, so I'll probably stick with
that until further notice.
  • Loading branch information
donovanglover committed Apr 19, 2024
1 parent 54a392b commit 65c815d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion modules/desktop.nix
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ in

cursor = {
package = phinger-cursors;
name = "phinger-cursors-dark";
name = "phinger-cursors";
size = 24;
};

Expand Down
10 changes: 10 additions & 0 deletions overlays/phinger-cursors.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
final: prev: {
phinger-cursors = prev.phinger-cursors.overrideAttrs (oldAttrs: rec {
version = "1.1";

src = prev.fetchurl {
url = "https://github.com/phisch/phinger-cursors/releases/download/v${version}/phinger-cursors-variants.tar.bz2";
sha256 = "sha256-II+1x+rcjGRRVB8GYkVwkKVHNHcNaBKRb6C613901oc=";
};
});
}

0 comments on commit 65c815d

Please sign in to comment.