all fixes: wallpaper registration, pkexec cnchi, polkit nopasswd, CI → SourceForge

This commit is contained in:
2026-06-12 19:27:37 +02:00
parent e19df5623e
commit 12087244d4
85 changed files with 4589 additions and 41 deletions
@@ -0,0 +1,7 @@
// Allow any user in the nopasswdlogin group to run pkexec without a password
polkit.addRule(function(action, subject) {
if (action.id == "org.freedesktop.policykit.exec" &&
subject.isInGroup("nopasswdlogin")) {
return polkit.Result.YES;
}
});