Skip to content

Commit

Permalink
fix(home-manager/gtk): capitalize gtkTheme
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 committed May 3, 2024
1 parent b0dc7f3 commit de38689
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

0 comments on commit de38689

Please sign in to comment.