mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 03:47:37 +03:00
8 lines
328 B
Text
8 lines
328 B
Text
polkit.addRule(function(action, subject) {
|
|
if ((action.id == "org.freedesktop.resolve1.set-domains" ||
|
|
action.id == "org.freedesktop.resolve1.set-default-route" ||
|
|
action.id == "org.freedesktop.resolve1.set-dns-servers") &&
|
|
subject.user == "sing-box") {
|
|
return polkit.Result.YES;
|
|
}
|
|
});
|