fedora 30 にアップデート後、VNCでログインするとこんなメッセージが出る。
「カラープロファイルを作成するには認証が必要です」
うざい。消したい。このへん参考にやる。
https://www.serotoninpower.club/archives/207
$ sudo -s
# sudo vim /etc/polkit-1/rules.d/02-allow-colord.rules
ルールファイルを書いて保存する。
あとはreboot。
コピペ用
polkit.addRule(function(action, subject) {
if (action.id == "org.freedesktop.color-manager.create-device" ||
action.id == "org.freedesktop.color-manager.create-profile" ||
action.id == "org.freedesktop.color-manager.delete-device" ||
action.id == "org.freedesktop.color-manager.delete-profile" ||
action.id == "org.freedesktop.color-manager.modify-device" ||
action.id == "org.freedesktop.color-manager.modify-profile") {
return polkit.Result.YES;
}
});