使 XRANDR 设置永久化

使 XRANDR 设置永久化

GNOME 3 Gnomebuntu - 15.10

我有一台英特尔 NUC i3 第六代和一台具有 32GB 内存的 4k 显示器。如果我在执行完后输入命令 xrandr

"xrandr -s 4096x2160"

Screen 0: minimum 8 x 8, current 4096 x 2160, maximum 32767 x 32767
DP1 disconnected (normal left inverted right x axis y axis)
HDMI1 connected primary 4096x2160+0+0 (normal left inverted right x axis y axis) 1600mm x 900mm
   1920x1080     60.00 +  59.94    30.00    24.00    29.97    23.98  
   4096x2160     24.00*   23.98  
   3840x2160     30.00    25.00    24.00    29.97    23.98  
   1920x1080i    60.00    59.94  
   1280x1024     60.02  
   1360x768      60.02  
   1152x864      59.97  
   1280x720      60.00    59.94  
   1024x768      60.00  
   800x600       60.32  
   720x480       60.00    59.94  
   640x480       60.00    59.94  
   720x400       70.08  
HDMI2 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)

我想让此更改永久生效,因此我执行了以下操作 -

使用 touch xprofile 创建 .xprofile

跑步 -

cvt 4096 2160 60

# 4096x2160 59.98 Hz (CVT) hsync: 134.18 kHz; pclk: 760.00 MHz
Modeline "4096x2160_60.00"  760.00  4096 4432 4880 5664  2160 2163 2173 2237 -hsync +vsync

然后我将以下内容添加到我的 .xprofile 中

xrandr --newmode "4096x2160_60.00"  760.00  4096 4432 4880 5664  2160 2163 2173 2237 -hsync +vsync

xrandr --addmode VGA1 "4096x2160_60.00"

xrandr -s "4096x2160_60.00"

如果我注销并重新登录,我会被踢回到登录屏幕。然后我必须转到终端,删除 .xprofile,然后返回 GUI。我在这里做错了什么?我可以手动执行上述命令,并且效果很好。我手工完成此操作后当前的分辨率是 4096x2160。我的显示器被错误识别。这是50英寸的,不是70英寸的。我错过了一些简单的事情吗?

我目前的决心。

相关内容