Arch Linux Color Management - ryzendew/Linux-Tips-and-Tricks GitHub Wiki
Arch Linux Color Management Guide
Complete beginner-friendly guide to color management on Arch Linux, including color profiles, display calibration, and color accuracy.
Table of Contents
Color Profiles
Install Color Management
Install tools:
# Install color management
sudo pacman -S colord
# Enable service
sudo systemctl enable colord
sudo systemctl start colord
Install Profiles
Install ICC profiles:
# Install profiles
sudo pacman -S icc-profiles
# Or download from manufacturer
# Place in: /usr/share/color/icc/
Display Calibration
DisplayCAL
Install DisplayCAL:
# Install DisplayCAL
yay -S displaycal
# Launch
displaycal
ArgyllCMS
Install ArgyllCMS:
# Install ArgyllCMS
sudo pacman -S argyllcms
# Calibrate
dispcal -v -y l -d 1
Color Management Tools
colord
Use colord:
# List devices
colormgr get-devices
# List profiles
colormgr get-profiles
GNOME Color
GNOME color:
# Install GNOME color
sudo pacman -S gnome-color-manager
# Launch
gnome-color-manager
Troubleshooting
Profile Not Applied
Check profile:
# Check active profile
colormgr get-devices-by-kind display
# Set profile
colormgr device-add-profile device-id profile-id
Summary
This guide covered color profiles, display calibration, color tools, and troubleshooting.
Next Steps
- Arch Linux Graphics Drivers - GPU setup
- Arch Linux Multiple Monitors - Multi-monitor
- ArchWiki Color Management: https://wiki.archlinux.org/title/Color_management
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.