summaryrefslogtreecommitdiff
path: root/polkit-1/rules/90-set-brightness.rules
blob: f8b158a743b9d8ec2b107782ef67f9771d81ff55 (plain)
1
2
3
4
5
6
7
8
9
polkit.addRule(function(action, subject) {
    if (1
	    && action.id == "com.sigexec.polkit.set-brightness"
	    && subject.seat == "seat0"
       )
    {
	return polkit.Result.YES;
    }
});