Monitor estendido - vá para a direita para acessar a tela à esquerda

3

Estou executando o Crunchbang (baseado no Debian) e estou tentando estender minha área de trabalho. Já executei o seguinte comando:

xrandr --output DVI-I-2 --auto --output DVI-I-1 --primary --auto

Isso estendeu a área de trabalho, mas meu segundo monitor está à esquerda do meu monitor principal, mas eu tenho que mover o mouse para a direita para acessar o monitor da esquerda, como posso consertar isso?

Saída de xrandr -q

Screen 0: minimum 320 x 200, current 3360 x 1050, maximum 8192 x 8192
DVI-I-1 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 473mm x 296mm
   1680x1050      59.9*+
   1280x1024      75.0     60.0  
   1152x864       75.0  
   1024x768       75.1     60.0  
   800x600        75.0     60.3  
   640x480        75.0     60.0  
   720x400        70.1  
DVI-I-2 connected 1680x1050+1680+0 (normal left inverted right x axis y axis) 473mm x 296mm
   1680x1050      60.0*+
   1280x1024      75.0     60.0  
   1152x864       75.0  
   1024x768       75.1     60.0  
   800x600        75.0     60.3  
   640x480        75.0     60.0  
   720x400        70.1 
    
por Colin747 15.11.2013 / 15:51

1 resposta

2

Você pode definir explicitamente a tela à esquerda da qual com xrandr :

xrandr --output DVI-I-1 --auto --primary --output DVI-I-2 --auto --left-of DVI-I-1

De man xrandr :

   --left-of, --right-of, --above, --below, --same-as another-output
          Use one of these options to position the output relative to  the
          position  of  another  output.  This allows convenient tiling of
          outputs within the screen.  The position is always computed rel‐
          ative  to  the  new  position  of the other output, so it is not
          valid to say --output a --left-of b --output b --left-of a.
    
por 15.11.2013 / 16:34