web-dev-qa-db-ja.com

表示設定を保持する方法は?

私のディスプレイ構成は次のようになります:

Should-be display config

ただし、再起動するたびに、次のようにリセットされます。

Default display setting

永続化する方法は?

私のxrandr出力:

Screen 0: minimum 8 x 8, current 4920 x 1920, maximum 32767 x 32767
eDP1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 309mm x 174mm
   1920x1080      60.0*+   59.9     48.0  
   1680x1050      60.0     59.9  
   1600x1024      60.2  
   1400x1050      60.0  
   1600x900       60.0  
   1280x1024      60.0  
   1440x900       59.9  
   1280x960       60.0  
   1368x768       60.0  
   1360x768       59.8     60.0  
   1152x864       60.0  
   1280x720       60.0  
   1024x768       60.0  
   1024x576       60.0  
   960x540        60.0  
   800x600        60.3     56.2  
   864x486        60.0  
   640x480        59.9  
   720x405        60.0  
   640x360        60.0  
DP1 disconnected (normal left inverted right x axis y axis)
DP1-1 disconnected (normal left inverted right x axis y axis)
DP1-2 disconnected (normal left inverted right x axis y axis)
DP1-3 connected primary 1080x1920+1920+0 left (normal left inverted right x axis y axis) 477mm x 268mm
   1920x1080      60.0*+
   1680x1050      60.0  
   1600x900       60.0  
   1280x1024      75.0     60.0  
   1280x800       59.8  
   1152x864       75.0  
   1280x720       60.0  
   1024x768       75.1     60.0  
   832x624        74.6  
   800x600        75.0     60.3  
   640x480        75.0     60.0  
   720x400        70.1  
HDMI1 connected 1920x1080+3000+0 (normal left inverted right x axis y axis) 477mm x 268mm
   1920x1080      60.0*+
   1680x1050      59.9  
   1600x900       60.0  
   1280x1024      75.0     60.0  
   1280x800       59.9  
   1152x864       75.0  
   1280x720       60.0  
   1024x768       75.1     60.0  
   832x624        74.6  
   800x600        75.0     60.3  
   640x480        75.0     60.0  
   720x400        70.1  
HDMI2 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)
2
k0pernikus

入力ミスがない場合、コマンドは次のようになります。

xrandr --output eDP1 --pos 0x0 --output DP1-3 --pos 1920x0 --rotate left --output HDMI1 --pos 3000x0

画像のように画面を設定する必要があります(最初に試してください)。次回ログイン時にそれを維持するには、スタートアップアプリケーションに追加します。

/bin/bash -c "sleep 15 && xrandr --output eDP1 --pos 0x0 --output DP1-3 --pos 1920x0 --rotate left --output HDMI1 --pos 3000x0"

スタートアップアプリケーションに追加する

[ダッシュ]> [スタートアップアプリケーション]> [追加]を選択します。上記の(2番目の)コマンドを追加します。 sleep 15は、デスクトップが完全にロードされていることを確認するためのものです。そうでない場合、ローカルプロシージャによってセットアップが破損または無効になる可能性があります。

説明

enter image description here

xrandrを使用すると、現在の画面設定に関する情報を取得できます。投稿した出力では、次の3つの画面が接続されているように見えます(これは予期していました:))。

eDP1 connected 1920x1080+0+0
DP1-3 connected primary 1080x1920+1920+0
HDMI1 connected 1920x1080+3000+0

セクション:

1920x1080+0+0

画面の解像度(1920x1080)と画面全体での位置に関する情報を提供します。結合された画面のレイアウトの左上隅からの座標(+0+0、x/y)。

その後、次のコマンドを使用して、画面の位置をsetできます。

xrandr --output eDP1 --pos 0x0

そしてその回転:

xrandr --output eDP1 --rotate left

複数のスクリーンを使用してレイアウトを設定する必要がある場合、コマンドのシーケンスを左から右画面に実行する必要があります。

2
Jacob Vlijm