mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-02-11 06:40:42 +00:00
9 lines
347 B
Plaintext
9 lines
347 B
Plaintext
|
polkit.addRule(function(action, subject) {
|
||
|
if ((action.id == "org.freedesktop.timedate1.set-time" ||
|
||
|
action.id == "org.freedesktop.timedate1.set-timezone" ||
|
||
|
action.id == "org.freedesktop.login1.power-off" ||
|
||
|
action.id == "org.freedesktop.login1.reboot") &&
|
||
|
subject.isInGroup("wheel")) {
|
||
|
return polkit.Result.YES;
|
||
|
}
|
||
|
});
|