Skip to content

Commit

Permalink
fix(home-manager): capitalize gtkTheme (#159)
Browse files Browse the repository at this point in the history
The uncapitalized gtkTheme made the generated theme name incorrect wich prevented
the theme to be set correctly and made the symlinks in ~/.config/gtk-4.0 broken
  • Loading branch information
c-leri authored May 8, 2024
1 parent eaa6e28 commit 360c974
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/home-manager/gtk.nix
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ in
# use the light gtk theme for latte
gtkTheme =
if cfg.flavour == "latte"
then "light"
else "dark";
then "Light"
else "Dark";
in
{
name = "Catppuccin-${flavourUpper}-${sizeUpper}-${accentUpper}-${gtkTheme}";
Expand Down

1 comment on commit 360c974

@erdfern
Copy link

@erdfern erdfern commented on 360c974 May 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❤️

Please sign in to comment.