2024-06-22 20:15:37 +02:00
|
|
|
/* Allow passwordless auth for fkm.kernel.cachyos.init
|
|
|
|
polkit.addRule(function(action, subject) {
|
2024-06-24 00:52:52 +02:00
|
|
|
if (action.id == "fkm.kernel.cachyos.init") {
|
2024-06-22 20:15:37 +02:00
|
|
|
return polkit.Result.YES;
|
|
|
|
}
|
|
|
|
});
|