cursor theme changed to rose pine cursors
This commit is contained in:
parent
1d72271b23
commit
88b400619a
2 changed files with 16 additions and 0 deletions
15
modules/home/cursor/default.nix
Normal file
15
modules/home/cursor/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
home.pointerCursor = let getFrom = url: hash: name: {
|
||||||
|
gtk.enable = true;
|
||||||
|
x11.enable = true;
|
||||||
|
name = name;
|
||||||
|
size = 24;
|
||||||
|
package = pkgs.runCommand "moveUp" {} ''
|
||||||
|
mkdir -p $out/share/icons
|
||||||
|
ln -s ${pkgs.fetchzip{
|
||||||
|
url = url;
|
||||||
|
hash = hash;
|
||||||
|
}} $out/share/icons/${name}
|
||||||
|
'';
|
||||||
|
}; in getFrom "https://github.com/rose-pine/cursor/releases/download/v1.1.0/BreezeX-RosePine-Linux.tar.xz" "sha256-t5xwAPGhuQUfGThedLsmtZEEp1Ljjo3Udhd5Ql3O67c=" "BreezX-RosePine-Linux";
|
||||||
|
}
|
|
@ -3,6 +3,7 @@
|
||||||
./art
|
./art
|
||||||
./browser
|
./browser
|
||||||
./chat
|
./chat
|
||||||
|
./cursor
|
||||||
./discord
|
./discord
|
||||||
./direnv
|
./direnv
|
||||||
./editor
|
./editor
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue