Arch Linux에서 모니터(2개의 Asus VG278Q 모델)를 144Hz에서 실행하려고 합니다.
나에게 xrandr을 추천하기 전에, 예, xrandr을 사용하여 모니터를 144Hz에서 실행할 수 있습니다.
xrandr --output DisplayPort-1 --rate 144 --mode 1920x1080 --primary
xrandr --output DisplayPort-2 --rate 144 --mode 1920x1080
하지만 자동 시작에서 쉘 스크립트와 함께 xrandr을 사용하고 싶지 않습니다. dpm이 기본적으로 144hz에서 모니터를 시작하도록 X11을 구성하고 싶습니다.
그래서 X11 구성 파일을 /etc/X11/xorg.conf.d/00-monitors.conf
.
Section "Monitor"
Identifier "Asus_VG278Q_1"
VendorName "Asus"
ModelName "VG278Q"
Modeline "1920x1080_144.00" 451.72 1920 2080 2296 2672 1080 1081 1084 1174 -HSync +Vsync
Option "Primary" "true"
EndSection
Section "Monitor"
Identifier "Asus_VG278Q_2"
VendorName "Asus"
ModelName "VG278Q"
Modeline "1920x1080_144.00" 451.72 1920 2080 2296 2672 1080 1081 1084 1174 -HSync +Vsync
Option "Primary" "false"
Option "LeftOf" "Asus_VG278Q_1"
EndSection
Section "Device"
Identifier "AMD_RX5700XT"
Driver "amdgpu"
Option "Asus_VG278Q_1" "DisplayPort-1"
Option "Asus_VG278Q_2" "DisplayPort-2"
EndSection
Section "Screen"
Identifier "AMD_Monitors"
Device "AMD_RX5700XT"
Monitor "Asus_VG278Q_1"
Monitor "Asus_VG278Q_2"
EndSection
systemctl()을 통해 디스플레이 관리자를 다시 시작하면 systemctl restart display-manager.service
로그아웃되고 lightdm의 새 세션에 로그인해야 합니다. 그런데 xrandr을 사용해서 어떤 주사율이 사용되었는지 확인해보니 60Hz가 반복적으로 사용되는 것을 발견했습니다.
$ xrandr -q
Screen 0: minimum 320 x 200, current 3840 x 1080, maximum 16384 x 16384
DisplayPort-0 disconnected (normal left inverted right x axis y axis)
DisplayPort-1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 598mm x 336mm
1920x1080 60.00*+ 144.00 119.98 99.93 84.90 50.00 59.94
1680x1050 59.95
1280x1024 75.02 60.02
1440x900 59.89
1280x960 60.00
1280x800 59.81
1152x864 75.00
1280x720 60.00 50.00 59.94
1024x768 75.03 70.07 60.00
832x624 74.55
800x600 72.19 75.00 60.32 56.25
720x576 50.00
720x480 60.00 59.94
640x480 75.00 66.67 60.00 59.94
720x400 70.08
DisplayPort-2 connected 1920x1080+1920+0 (normal left inverted right x axis y axis) 598mm x 336mm
1920x1080 60.00*+ 144.00 119.98 99.93 84.90 50.00 59.94
1680x1050 59.95
1280x1024 75.02 60.02
1440x900 59.89
1280x960 60.00
1280x800 59.81
1152x864 75.00
1280x720 60.00 50.00 59.94
1024x768 75.03 70.07 60.00
832x624 74.55
800x600 72.19 75.00 60.32 56.25
720x576 50.00
720x480 60.00 59.94
640x480 75.00 66.67 60.00 59.94
720x400 70.08
HDMI-A-0 disconnected (normal left inverted right x axis y axis)
내 x11 구성에 어떤 문제가 있는지 아는 사람이 있나요?
볼커