FollieHiyuki-dotfiles/system/etc/polkit-1/rules.d/49-nopasswd.rules
2021-10-17 21:47:50 +07:00

11 lines
424 B
Plaintext

/* Allow running reboot, shutdown as normal user */
/* of group wheel without sudo password */
polkit.addRule(function(action, subject) {
if (action.id == "org.freedesktop.policykit.exec" &&
(action.lookup("program") == "/usr/bin/reboot" ||
action.lookup("program") == "/usr/bin/poweroff") &&
subject.isInGroup("wheel")) {
return polkit.Result.YES;
}
});