Arch Linux Multiple Monitors - ryzendew/Linux-Tips-and-Tricks GitHub Wiki

Arch Linux Multiple Monitors Guide

Complete beginner-friendly guide to multiple monitor setup on Arch Linux, including X11 and Wayland configuration, display arrangement, and multi-monitor troubleshooting.


Table of Contents

  1. X11 Multi-Monitor
  2. Wayland Multi-Monitor
  3. Display Arrangement
  4. Troubleshooting

X11 Multi-Monitor

xrandr

Configure displays:

# Install xrandr
sudo pacman -S xorg-xrandr

# List displays
xrandr

# Enable second monitor
xrandr --output HDMI-1 --auto --right-of eDP-1

# Mirror displays
xrandr --output HDMI-1 --same-as eDP-1

arandr

GUI tool:

# Install arandr
sudo pacman -S arandr

# Launch
arandr

Wayland Multi-Monitor

GNOME

Configure in GNOME:

# Open Settings
gnome-control-center display

# Or use gsettings
gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']"

KDE

Configure in KDE:

# Open System Settings
systemsettings5

# Display Configuration

Display Arrangement

Set Primary Display

Set primary:

# X11
xrandr --output HDMI-1 --primary

# Or in arandr
# Right-click display > Set as primary

Display Scaling

Set scaling:

# X11
xrandr --output HDMI-1 --scale 1.5x1.5

# Wayland (GNOME)
gsettings set org.gnome.desktop.interface scaling-factor 2

Troubleshooting

Monitor Not Detected

Check connection:

# List displays
xrandr

# Check kernel messages
dmesg | grep -i display

# Check Xorg logs
cat /var/log/Xorg.0.log | grep -i display

Wrong Resolution

Set resolution:

# List modes
xrandr

# Set resolution
xrandr --output HDMI-1 --mode 1920x1080

Summary

This guide covered X11/Wayland multi-monitor setup, display arrangement, and troubleshooting.


Next Steps


This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.