Created
May 9, 2020 20:12
-
-
Save ravexina/9cc0f74cdddf1da5c609674cf1615fa9 to your computer and use it in GitHub Desktop.
Polkit users rules
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| polkit.addRule(function(action, subject) { | |
| if (action.id.match("org.freedesktop.udisks2.") && subject.isInGroup("storage")) { | |
| return polkit.Result.YES; | |
| } | |
| }); | |
| polkit.addRule(function(action, subject) { | |
| if ( (action.id.match("org.freedesktop.login1.") || action.id.match("org.freedesktop.upower.")) && subject.isInGroup("power")) { | |
| return polkit.Result.YES; | |
| } | |
| }); | |
| polkit.addRule(function(action, subject) { | |
| if (action.id.match("org.freedesktop.NetworkManager.") && subject.isInGroup("network")) { | |
| return polkit.Result.YES; | |
| } | |
| }); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment