6 lines
190 B
Plaintext
6 lines
190 B
Plaintext
|
/* Allow passwordless auth for fkm.kernel.cachyos.init
|
||
|
polkit.addRule(function(action, subject) {
|
||
|
if (action.id == "fkm.kernel.cachyos.init" {
|
||
|
return polkit.Result.YES;
|
||
|
}
|
||
|
});
|