Created
April 3, 2025 01:29
-
-
Save sefgit/c5131bb0bbe4c6255e794127aed3337b to your computer and use it in GitHub Desktop.
xRDP – The Infamous “Authentication Required to Create Managed Color Device” Explained
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# xRDP – The Infamous “Authentication Required to Create Managed Color Device” Explained | |
# https://c-nergy.be/blog/?p=12073 | |
# /etc/polkit-1/localauthority.conf.d/02-allow-colord.conf | |
# | |
# | |
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") && | |
subject.isInGroup("{users}")) { | |
return polkit.Result.YES; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://www.digitalocean.com/community/tutorials/how-to-enable-remote-desktop-protocol-using-xrdp-on-ubuntu-22-04