-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(home-manager): use correct theme name #239
Conversation
modules/home-manager/gtk.nix
Outdated
variant = cfg.flavor; | ||
}; | ||
theme = { | ||
name = "catppuccin-${cfg.flavor}-${cfg.accent}-${cfg.size}+default"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i believe tweaks are added at the end. For example +default
for no tweaks, +black
for the black tweak.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So the tweak to path mapping is this?
- black -> +black
- rimless -> +rimless
- normal -> +default
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seem correct
If I didn't mess up, |
97c9bd6
to
6ce6da4
Compare
Well, turns out I did mess up, but it should work now. |
- Theme name is all lowercase now - Change order from `flavor-size-accent-gtkTheme` to `flavor-accent-size+gtkTweaks`
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!
Summary
The theme name does not correctly match the one from catppuccin-gtk which should be
catppuccin-${FLAVOR}-${ACCENT}-${SIZE}+${TWEAKS}
as the Usage docs specify.Changes
flavor-size-accent-gtkTheme
toflavor-accent-size+tweaks