设置 Xorg 的两个不同分辨率的显示器

设置 Xorg 的两个不同分辨率的显示器

我正在尝试在 WMware 上设置 Archlinux,使其具有两个不同分辨率的显示器。这是我的 xorg.conf 文件

Section "Monitor"
        Identifier "Mac"
        Option "PreferredMode" "800x600"
EndSection

Section "Monitor"
        Identifier "HP"
        Option "LeftOf" "Mac"
        Option "PreferredMode" "1920x1080"
EndSection

Section "Device"
        Identifier "Device0"
        Option "Virtual1" "HP"
        Option "Virtual2" "Mac"
EndSection


Section "Screen"
        Identifier "Personalizzato"
        Monitor "HP"
        SubSection "Display"
                Depth 24
        EndSubSection
        Device "Device0"
EndSection

问题是,标记为“HP”的显示器运行良好,如果我更改文件的分辨率,分辨率实际上也会改变。相反,标记为“Mac”的显示器不会改变其分辨率。

答案1

我已经解决了这个问题。关于“Mac”的监控部分被忽略了,因为设备部分中的关联是

Option "*Monitor*-outputname" "MonitorIdentification"

并不是

Option "Outputname" "MonitorIdentification"

相关内容