拡張ディスプレイ - 右にスクロールして左画面にアクセスする

拡張ディスプレイ - 右にスクロールして左画面にアクセスする

私はCrunchbang(Debianベース)を実行しており、デスクトップを拡張しようとしています。以下を実行しました。

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

これによりデスクトップが拡張されますが、2番目のモニターはメインモニターの左側にあり、左側のモニターにアクセスするにはマウスを右に動かす必要があります。この問題をどのように解決しますか?

出力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.

おすすめ記事