Skip to content

Commit

Permalink
fix: make dark/light lowecase for style names in gtk
Browse files Browse the repository at this point in the history
  • Loading branch information
selfuryon committed Apr 29, 2024
1 parent a48e70a commit b9c65e1
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 b9c65e1

Please sign in to comment.