Método 1 - Do Centro de Controle do GNOME
Eu normalmente apenas lanço o applet Display das Configurações do GNOME (normalmente sob o menu suspenso do seu nome de usuário no canto superior direito). BTW, você pode invocar o Centro de Controle do GNOME via linha de comando usando gnome-control-center
.
Exemplo
Tela do laptop à esquerda, monitor conectado à VGA à direita
Agora,seeupegarcommeumouseeclicarcomobotãoesquerdodomousearrastaromonitorVGA(laranja)paraoladoesquerdodateladomeulaptop(vermelho),receboaalteraçãodesejadaquevocêestáperguntando.
OBSERVAÇÃO: Essas alterações persistem durante as reinicializações!
Método 2 - xorg.conf
Você deve poder definir a orientação no xorg.conf
do seu sistema da seguinte forma.
coordenadas relativas
# /etc/X11/xorg.conf
Section "Monitor"
Identifier "VGA1"
Option "Primary" "true"
EndSection
Section "Monitor"
Identifier "HDMI1"
Option "RightOf" "VGA1"
EndSection
Ou você pode especificar LeftOf
.
Coordenadas fixas
# /etc/X11/xorg.conf
Section "Monitor"
Identifier "VGA1"
Option "PreferredMode" "1024x768"
Option "Position" "1920 0"
EndSection
Section "Monitor"
Identifier "HDMI1"
Option "PreferredMode" "1920x1080"
Option "Position" "0 0"
EndSection
Se você der uma olhada na página man do xorg.conf
:
Option "LeftOf" "output"
This optional entry specifies that the monitor should be
positioned to the left of the output (not monitor) of the given
name. (RandR 1.2-supporting drivers only)
Option "RightOf" "output"
This optional entry specifies that the monitor should be
positioned to the right of the output (not monitor) of the given
name. (RandR 1.2-supporting drivers only)
Option "Above" "output"
This optional entry specifies that the monitor should be
positioned above the output (not monitor) of the given name.
(RandR 1.2-supporting drivers only)
Option "Below" "output"
This optional entry specifies that the monitor should be
positioned below the output (not monitor) of the given name.
(RandR 1.2-supporting drivers only)