x11 | xorg | dual monitor configuration with intel

Go to xorg.conf.d directory.

Add the following files:

30-keyboard.conf

Section "InputClass"
Identifier "keyboard-all"
Driver "evdev"
Option "XkbLayout" "de"
Option "XkbModel" "pc105"
# Option "XkbRules" "xorg"
Option "XkbOptions" "nodeadkeys"
Option "XkbVariant" ",qwertz"
MatchIsKeyboard "on"
EndSection

40-monitor.conf

Section “Monitor”
Identifier “DP”
Option “PreferredMode” “2560×1440”
# Option “Primary” “true”
EndSection
Section “Monitor”
Identifier “DP2”
Option “PreferredMode” “2560×1440”
Option “LeftOf” “DP”
EndSection

50-video.conf

Section “Device”
Identifier “Intel Xeon”
# Option “Monitor-DP1” “DP”
Option “Monitor-DP1-8” “DP2”
Option “Monitor-DP2” “DP”
# Option “Monitor-DP1-1” “DP2”
Driver “intel”
EndSection

60-screen.conf

Section “Screen”
Identifier “Default Screen”
Device “Intel Xeon”
Monitor “DP”
DefaultDepth 24
SubSection “Display”
Depth 16
Modes “2560×1440”
EndSubSection
SubSection “Display”
Depth 24
Modes “2560×1440”
EndSubSection
EndSection

Leave a Reply

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.