10 lines
332 B
Plaintext
10 lines
332 B
Plaintext
|
// Connecting to a WiFi in the gnome-shell quick settings prompts for an admin
|
||
|
// password without this rule.
|
||
|
// https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7378
|
||
|
|
||
|
polkit.addRule(function (action, subject) {
|
||
|
if (action.id === "org.freedesktop.NetworkManager.settings.modify.system") {
|
||
|
return polkit.Result.YES;
|
||
|
}
|
||
|
});
|