众所周知,GNU/Linux 上的双显示器设置非常有趣!在摆弄我的 xorg.conf 几天之后,我已经设法达到了一个点,我可以通过开始获得几乎我想要的东西(两个屏幕彼此相邻,窗口可以从一个屏幕拖动到另一个屏幕) up X,然后手动调用:
xrandr --output CRT2 --right-of DFP2
Run Code Online (Sandbox Code Playgroud)
我正在使用 RandR 1.3,因为 Xinerama 不适用于我的设置(并且似乎在某种程度上也已过时)。
根据这个网站,我应该能够通过我的 xorg.conf 静态实现相同的效果 - 但是,我似乎没有让它正常工作。
我正在为我的 ATI 卡 GNOME 2.32.1 使用 fglrx 驱动程序,这是我的 xorg.conf:
Section "ServerFlags"
Option "RandR" "on"
EndSection
Section "Device"
Identifier "Device"
Driver "fglrx"
BusID "PCI:1:0:0"
Option "Monitor-DFP2" "Monitor0"
Option "Monitor-CRT2" "Monitor1"
EndSection
Section "Monitor"
Identifier "Monitor0"
EndSection
Section "Monitor"
Identifier "Monitor1"
Option "RightOf" "Monitor0"
EndSection
Section "Screen"
Identifier "Screen"
Device "Device"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24 …Run Code Online (Sandbox Code Playgroud)