fix(home-manager): make dark/light lowecase for style names in gtk (#147)

This commit is contained in:
Sergey Yakovlev 2024-05-01 23:52:45 +00:00 committed by GitHub
parent ccc188e244
commit 1fbdfdacf9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -47,8 +47,8 @@ in
# use the light gtk theme for latte # use the light gtk theme for latte
gtkTheme = gtkTheme =
if cfg.flavour == "latte" if cfg.flavour == "latte"
then "Light" then "light"
else "Dark"; else "dark";
in in
{ {
name = "Catppuccin-${flavourUpper}-${sizeUpper}-${accentUpper}-${gtkTheme}"; name = "Catppuccin-${flavourUpper}-${sizeUpper}-${accentUpper}-${gtkTheme}";