Dois monitores funcionam como se fossem um único

2

Eu tenho 3 monitores (1 em uma placa Intel, 2 na Nvidia). Depois de alguma mágica com xorg.conf , eles começaram a funcionar, mas os dois monitores da Nvidia funcionam como se fossem um monitor único e largo (qualquer janela maximizada cobrirá os dois monitores e acabará dividida no meio).

    Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        Screen      2  "Screen2" RightOf "Screen0"
        Screen      1  "Screen1" RightOf "Screen2"
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
        Option         "Xinerama"      "on"
    EndSection

    Section "Device"
    Identifier  "Card0"
    Driver      "intel"
    BusID       "PCI:0:2:0"
EndSection

Section "Device"
    Identifier  "Card1"
    Driver      "nvidia"
    BusID       "PCI:1:0:0"
EndSection

    Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
    EndSection

    Section "Monitor"
        Identifier   "Monitor1"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
    EndSection

    Section "Monitor"
        Identifier   "Monitor2"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
    EndSection

    Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"

    EndSection

    Section "Screen"
        Identifier "Screen1"
        Device     "Card1"
        Monitor    "Monitor1"
        Option     "TwinView" "0"
    EndSection

    Section "Screen"
        Identifier "Screen2"
        Device     "Card1"
        Monitor    "Monitor2"
        Option     "TwinView" "0"
    EndSection

Como posso configurar meu sistema de janelas para que ele reconheça adequadamente os limites do monitor?

    
por Alex 27.03.2015 / 02:42

0 respostas