[Forward Content] Deepin 25 启用显示器ICE文件流程
Tofloor
poster avatar
ksgt0025
deepin
5 hours ago
Author

补充:操作之前需关闭磐石

sudo deepin-immutable-writable enable 关闭磐石系统
sudo deepin-immutable-writable disable 开启磐石系统

1、把显示器的icm文件放入:/usr/share/color/icc/colord

2、

sudo apt install colord

3、

sudo systemctl start colord.service

4、

sudo xiccd

5、
复制其中的 Device ID 备用

colormgr get-devices

6、
找到第一步的icm文件对应的 Profile ID备用

colormgr get-profiles

7、其中 'Device ID'和'Profile ID'是第5、6步骤得出的结果,包含引号

sudo colormgr device-add-profile 'Device ID' 'Profile ID'

8、其中 'Device ID'和'Profile ID'是第5、6步骤得出的结果,包含引号

sudo colormgr device-make-profile-default 'Device ID' 'Profile ID'

9、查看 xiccd 的目录,第11个步骤需要校对,命令行输入:

which xiccd

10、

mkdir -p ~/.config/systemd/user/
nano ~/.config/systemd/user/xiccd.service

第二段命令敲入后,把第11步骤的代码放进去

11、其中/usr/bin/xiccd是第9步骤得出的结果

[Unit]
Description=XiccD Color Management Daemon
After=display-manager.service colord.service
Wants=colord.service

[Service]
Type=simple
ExecStart=/usr/bin/xiccd
Restart=on-failure

[Install]
WantedBy=default.target

12、依次输入下方命令

systemctl --user daemon-reload
systemctl --user enable xiccd.service
systemctl --user start xiccd.service

13、重启系统,并且命令行输入

colormgr get-devices

如果发现有Profile 1的字样,并且对应的是你的显示器的icm,证明成功。

所有步骤下来,如果中间没出什么差错,应用成功,可以明显的发现,显示器的颜色变得柔和不刺眼了。

转载自CSDN用户Aki_Equinox。其中部分步骤有所改良。

Reply Favorite View the author
All Replies

No replies yet