mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-26 13:45:17 +02:00
5 lines
176 B
Text
5 lines
176 B
Text
polkit.addRule(function(action, subject) {
|
|
if (action.id.indexOf("org.freedesktop.NetworkManager.") == 0 && subject.isInGroup("network")) {
|
|
return polkit.Result.YES;
|
|
}
|
|
});
|