I have a number of ICC color profile files for monitor calibration. They can be imported and work correctly on Ubuntu, but the titles they were created with are not helpful so I'd like to change them.
As far as I can tell there's no way to change the title from the Color Settings application.
I've found that with colormgr I can install a profile and change the title that appears in Color Settings like so:
colormgr import-profile <icc-filename> | grep "Profile ID"
colormgr get-devices | grep "Device ID"
colormgr device-add-profile <monitor-device-id> <profile-id>
colormgr profile-set-property <profile-id> Title "<new-title>"
However, verifying the checksums of the original ICC file and the imported copy in ~/.local/share/icc, I can see that nothing has changed in the imported file so the new title must stored somewhere locally in my system.
I'd like to be able to share these files with other machines so I'd like to change the title stored in the file itself.
Is there any way I can change the title stored in an ICC file using software in Ubuntu?