(実行中の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にこれらのコマンドを実行させるにはどうすればよいですか?
シェルスクリプトを作成して~/.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
で実行可能にしてください。