更改多显示器的刷新率

更改多显示器的刷新率

我试图用它来xrandr设置我在 DisplayPort 上运行的廉价韩国 IPS 显示器的刷新率。它应该是 60hz,否则屏幕会频繁撕裂/重置颜色测试。如果您看到下面显示的是 DP-1-1-2,59.95*+但它应该是 60。

我尝试过使用:

xrandr --output DP-1-1-2 --rate 60.00 

但似乎没有效果。同样令人沮丧的是,监视器的设置没有显示在 sudo 中nvidia-settings(也没有显示在 sudo 中)。

帮助?

Screen 0: minimum 8 x 8, current 4480 x 2520, maximum 32767 x 32767
eDP-1-1 connected 1920x1080+2560+1080 (normal left inverted right x axis y axis) 346mm x 194mm
   1920x1080     59.93*+
   # ... snipped
DP-1-1 disconnected (normal left inverted right x axis y axis)
HDMI-1-1 disconnected (normal left inverted right x axis y axis)
DP-1-2 disconnected (normal left inverted right x axis y axis)
HDMI-1-2 disconnected (normal left inverted right x axis y axis)
DP-1-1-1 disconnected (normal left inverted right x axis y axis)
DP-1-1-2 connected 2560x1440+0+1080 (normal left inverted right x axis y axis) 597mm x 336mm
   2560x1440     59.95*+
DP-1-2-1 connected primary 2560x1080+0+0 (normal left inverted right x axis y axis) 673mm x 284mm
   2560x1080     60.00*+
   1920x1080     60.00    60.00    50.00    59.94  
   1680x1050     59.88  
   1600x900      60.00  
   1280x1024     75.02    60.02  
   1152x864      75.00  
   1280x720      60.00    60.00    50.00    59.94  
   1024x768      75.03    60.00  
   800x600       75.00    60.32  
   720x576       50.00  
   720x480       60.00    60.00    59.94    59.94  
   640x480       75.00    60.00    59.94    59.94  
   720x400       70.08  
DP-1-1-3 disconnected (normal left inverted right x axis y axis)
DP-1-2-2 disconnected (normal left inverted right x axis y axis)
DP-1-2-3 disconnected (normal left inverted right x axis y axis)

答案1

这里有一个描述 xrandr 操作方式的指南。

其中提到:

显示不同的连接器(即 VGA-0、DVI-0、S-Video、LVDS)以及使用从显示器获得的 EDID 信息自动检测的分辨率。

换句话说,以下几行:

DP-1-1-2 connected 2560x1440+0+1080 (normal left inverted right x axis y axis) 597mm x 336mm
   2560x1440     59.95*+

是显示器直接提供的EDID信息。所以这个显示器只支持单一模式:

  • 分辨率为 2560x1440
  • 刷新率为59.95Hz。

Xrandr 将无法设置不同的模式。

然而,显示器 EDID 信息配置不当的情况并不罕见,实际上显示器支持其他模式。在这种情况下,一个潜在的解决方法是使用EDID 模拟器欺骗屏幕的 EDID 功能,从而在 xrandr 中启用附加模式。

相关内容