확장 디스플레이 - 오른쪽으로 스크롤하여 왼쪽 화면에 액세스

확장 디스플레이 - 오른쪽으로 스크롤하여 왼쪽 화면에 액세스

저는 Crunchbang(데비안 기반)을 실행 중이고 데스크탑을 확장하려고 합니다. 다음을 실행했습니다.

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

이렇게 하면 바탕 화면이 확장되지만 두 번째 모니터가 기본 모니터의 왼쪽에 있는데 왼쪽 모니터에 액세스하려면 마우스를 오른쪽으로 움직여야 합니다. 이 문제를 어떻게 해결합니까?

산출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 

답변1

다음을 사용하여 어떤 화면이 왼쪽에 있는지 명시적으로 설정할 수 있습니다 xrandr.

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

에서 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.

관련 정보