%PDF- %PDF-
| Direktori : /usr/share/polkit-1/rules.d/ |
| Current File : //usr/share/polkit-1/rules.d/gamemode.rules |
/*
* Allow users in privileged gamemode group to run cpugovctl &
* gpuclockctl without authentication
*/
polkit.addRule(function (action, subject) {
if ((action.id == "com.feralinteractive.GameMode.governor-helper" ||
action.id == "com.feralinteractive.GameMode.gpu-helper" ||
action.id == "com.feralinteractive.GameMode.cpu-helper" ||
action.id == "com.feralinteractive.GameMode.procsys-helper") &&
subject.isInGroup("gamemode"))
{
return polkit.Result.YES;
}
});