Normally I diable it by adding:
/* Allow members of the wheel group to execute the defined actions
* without password authentication, similar to "sudo NOPASSWD:"
*/
polkit.addRule(function(action, subject) {
if ((action.id == "org.gnome.gparted" ||
action.id == "org.libvirt.unix.manage") &&
subject.isInGroup("wheel"))
{
return polkit.Result.YES;
}
});
to:
/etc/polkit-1/rules.d/49-nopasswd_global.rules
but that doesnt seem to work on Solus please I need this as it is getting annoying to keep having to confirm my password for a single app.