GroupXyz

Untitled

Jul 9th, 2024
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. polkit.addRule(function(action, subject) {
  2. if ((action.id == "org.freedesktop.login1.reboot" ||
  3. action.id == "org.freedesktop.login1.power-off" ||
  4. action.id == "org.freedesktop.login1.suspend" ||
  5. action.id == "org.freedesktop.login1.hibernate") &&
  6. subject.isInGroup("wheel")) {
  7. return polkit.Result.YES;
  8. }
  9. });
  10.  
Advertisement
Add Comment
Please, Sign In to add comment