This commit is contained in:
Page Asgardius 2024-07-15 14:18:15 -07:00
parent 42651f694d
commit 65dffd58cc
501 changed files with 12163 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;
}
});