-
-
Notifications
You must be signed in to change notification settings - Fork 5
[Bug]: Presets not listed on home-manager based install #184
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
Comments
Hi @de-odex thanks for reporting this.
Seems so yeah, there is probably a way to mark that file as executable in the nix package, similar to what I did for the AUR one: https://aur.archlinux.org/cgit/aur.git/commit/?h=plasma6-applets-panel-colorizer&id=eab7fa66bd9b98f7dedae8d2144aafc5ad602bba @HeitorAugustoLN since you were the original packager and still appear as maintainer maybe you can help us with this? Hope the ping doesn't bother you :) |
Thanks for reporting this! And thanks for the ping @luisbocanegra, it didn't bother me. I opened a PR fixing the package in nixpkgs (NixOS/nixpkgs#383192). While it is not merged, you can add an overlay fixing it: {
nixpkgs.overlays = [
(final: prev: {
plasma-panel-colorizer = prev.plasma-panel-colorizer.overrideAttrs {
postInstall = "chmod 755 $out/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/tools/list_presets.sh";
};
})
];
} I probably didn't see this script while updating to |
@de-odex in the PR, I also added a patch that makes the dbus service work by default, without having to configure the python executable and glib. Could you also test it to see if works correctly? |
Thank you for the quick response. I'll be able to try it perhaps tomorrow or the next day |
Also faced this issue. Installed it from the unstable channel, though I didn't use home-manager. Confirmed that it's the latest version, 2.4.3. No presets were showing up, either built-in or user added. Then I put the overlay mentioned above in configuration.nix, and now it seems to be working fine. So all's good, but just thought I'd mention that this issue still persists on fresh Nix installs. |
I have:
Install method used:
Describe the bug
No presets (neither user-made nor built-in)
Steps to reproduce
Observed Result
journalctl -f
snippetExpected Result
Presets shown
System information (please complete the following):
Run
kinfo
on a terminal and paste the output bellowAdditional context
This is a nixpkgs error, actually. I think the script needs to be exposed in some sense, I just don't have the time to investigate right now, sorry
The text was updated successfully, but these errors were encountered: