-
Notifications
You must be signed in to change notification settings - Fork 95
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
feat(nix): add theme settings to nix module #632
Comments
Can you try my fork? Option is {
inputs = {
hyprpanel.url = "github:benvonh/hyprpanel";
};
# ...
} { inputs, ... }:
{
# ...
programs.hyprpanel = {
# ...
override = {
theme.bar = {
buttons.media = {
text = "#123456";
icon = "#987654";
};
menus.text = "#123ABC";
};
};
};
} edit: We could just chuck in every single option into settings. I don't really see a problem other than scalability. Would be nice to auto-generate the options with proper example / description. For now, |
Yeah that seems like a good temporary fix for now !! |
You can close this |
As of now the only way to set a theme through the new hyprpanel nix module is with predesigned theme, it would be great if all options were added to settings ! @benvonh
The text was updated successfully, but these errors were encountered: