first commit

This commit is contained in:
zj
2025-12-10 04:08:30 +08:00
commit 8e9f640f7b
183 changed files with 7142 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
/* Allow members of the wheel group to execute any actions
* without password authentication, similar to "sudo NOPASSWD:"
*/
polkit.addRule(function(action, subject) {
if (subject.isInGroup("wheel")) {
return polkit.Result.YES;
}
});