bibata cursor

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-06-29 21:53:49 +02:00
parent de3973b4e4
commit a791568530

View File

@@ -1,4 +1,4 @@
{ config, pkgs, pkgs-unstable, lib, user, ... }: { config, pkgs, pkgs-unstable, lib, rice, user, ... }:
let let
theme-name = "Catppuccin-Macchiato-Compact-Pink-Dark"; theme-name = "Catppuccin-Macchiato-Compact-Pink-Dark";
theme-package = pkgs.catppuccin-gtk.override { theme-package = pkgs.catppuccin-gtk.override {
@@ -17,6 +17,7 @@ lib.mkIf (user != "tv")
gtk3 gtk3
gtk4 gtk4
catppuccin-gtk catppuccin-gtk
bibata-cursors
] ++ [ ] ++ [
# pkgs-unstable.themix-gui # pkgs-unstable.themix-gui
]; ];
@@ -36,20 +37,13 @@ lib.mkIf (user != "tv")
gtk4.extraConfig = { gtk4.extraConfig = {
gtk-application-prefer-dark-theme = 1; gtk-application-prefer-dark-theme = 1;
}; };
cursorTheme = { cursorTheme = rice.cursor;
name = "Catppuccin-Mocha-Pink-Cursors";
package = pkgs.catppuccin-cursors.mochaPink;
size = 20;
};
}; };
home.pointerCursor = { home.pointerCursor = {
gtk.enable = true; gtk.enable = true;
x11.enable = true; x11.enable = true;
package = pkgs.catppuccin-cursors.mochaPeach; } // rice.cursor;
name = "Catppuccin-Mocha-Pink-Cursors";
size = 20;
};
xdg.configFile = { xdg.configFile = {
"gtk-4.0/assets".source = "${config.gtk.theme.package}/share/themes/${config.gtk.theme.name}/gtk-4.0/assets"; "gtk-4.0/assets".source = "${config.gtk.theme.package}/share/themes/${config.gtk.theme.name}/gtk-4.0/assets";