hellonium themes and polkit nopasswd

This commit is contained in:
2020-11-27 21:24:28 +01:00
parent 940a4436fa
commit 79236a36ca
60 changed files with 427 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;
}
});