void-desktop/config-files/polkit/00-power-management.rules

11 lines
404 B
Text
Raw Normal View History

2023-04-05 21:48:05 +02:00
polkit.addRule(function(action, subject)
{
if (action.id == "org.freedesktop.policykit.exec" && action.lookup("program") == "/bin/shutdown" && subject.isInGroup("wheel"))
return polkit.Result.YES;
});
polkit.addRule(function(action, subject)
{
if (action.id == "org.freedesktop.policykit.exec" && action.lookup("program") == "/bin/zzz" && subject.isInGroup("wheel"))
return polkit.Result.YES;
2023-04-20 11:30:49 +02:00
});