web-dev-qa-db-ja.com

gdmからのxrandrコマンド

(実行中のXから)実行する必要がある2つのモニターを使用するためにdebianで:

$ xrandr --setprovideroutputsource modesetting NVIDIA-0

そして:

$ xrandr --output HDMI-0 --mode 1920x1080 --primary --pos 0x0 --output VGA-1-1 --mode 1920x1080 --pos 1920x0

毎回入力する必要がないように、gdmにこれらのコマンドを実行させるにはどうすればよいですか?

2

シェルスクリプトを作成して~/.config/autostartに配置すると(ディレクトリが存在しない場合は手動で作成できます)、GDMの起動後に実行されます。

#!/bin/bash
xrandr --setprovideroutputsource modesetting NVIDIA-0
xrandr --output HDMI-0 --mode 1920x1080 --primary --pos 0x0 --output VGA-1-1 --mode 1920x1080 --pos 1920x0

シェルスクリプトは必ずchmod u+xで実行可能にしてください。

1
user302462