blob: 426326be9272ac6e3638e7930fa165e03a942e0f (
plain)
1
2
3
4
5
6
7
|
// Allow LightDM to set AccountsService fields
polkit.addRule (function (action, subject) {
if (action.id == "org.ayatana.indicator.sound.AccountsService.ModifyAnyUser" && subject.user == "lightdm")
{
return polkit.Result.YES;
}
});
|