Tenho uma instalação do gentoo usando i3-gaps e xorg, o problema é eu uso 2 monitores e eles estão sendo reconhecidos como se estivessem extendidos. Ja tentei gerar um xorg.conf com o “nvidia-settings”, porem não resolveu o problema, então escrevi o xorg.conf manualmente e continuo com o mesmo problema, segue meu xorg.conf:
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol"
Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "Monitor"
Identifier "DVI-I-0"
VendorName "Unknown"
ModelName "LG Electronics L177W"
EndSection
Section "Monitor"
Identifier "HDMI-0"
VendorName "Unknown"
ModelName "LG Electronics 23MP55"
Option "RightOf" "DVI-I-O"
Option "Primary" "true"
EndSection
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "NVIDIA GeForce GTX 960"
EndSection
Section "Screen"
Identifier "Screen1"
Device "Device0"
Monitor "HDMI-0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "DVI-I-0"
EndSection
Section "ServerLayout"
Identifier "Multiscreen"
Screen 0 "Screen0"
Screen 1 "Screen1" RightOf "Screen0"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Também tentei usar o xrandr com o seguinte comando:
xrandr --output DVI-I-0 --mode 1280x720 --left-of HDMI-0 --output HDMI-0 --primary --mode 1920x1080
Porém sem resultados.