mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
11 lines
335 B
Text
11 lines
335 B
Text
polkit.addRule(function(action, subject) {
|
|
if (action.id.match("org.freedesktop.login1.") && subject.isInGroup("power")) {
|
|
return polkit.Result.YES;
|
|
}
|
|
});
|
|
|
|
polkit.addRule(function(action, subject) {
|
|
if (action.id.indexOf("org.freedesktop.udisks") == 0 && subject.isInGroup("storage")) {
|
|
return polkit.Result.YES;
|
|
}
|
|
});
|