Skip to content

Commit

Permalink
fix(home-manager): gtk cursors are now lowercase (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelroses authored Jun 10, 2024
1 parent 0cdfa29 commit 6336fb8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/home-manager/gtk.nix
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,10 @@ in

cursorTheme =
let
flavorUpper = ctp.mkUpper cfg.cursor.flavor;
accentUpper = ctp.mkUpper cfg.cursor.accent;
in
lib.mkIf cfg.cursor.enable {
name = "Catppuccin-${flavorUpper}-${accentUpper}-Cursors";
name = "catppuccin-${cfg.cursor.flavor}-${cfg.cursor.accent}-cursors";
package = pkgs.catppuccin-cursors.${cfg.cursor.flavor + accentUpper};
};

Expand Down

0 comments on commit 6336fb8

Please sign in to comment.