CCSM:当我重新启动时复合刷新率会重置

CCSM:当我重新启动时复合刷新率会重置

当我使用compizconfig-settings-manager(ccsm)时,我希望合成器刷新率为,144但它不会保持保存,50每次重新启动时它都会返回,请帮助我使其144在重新启动时保持在。

Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 16384 x 16384
DVI-I-0 disconnected (normal left inverted right x axis y axis)
DVI-I-1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 531mm x 299mm
1920x1080     60.00 + 144.00*  119.98    99.93    84.90  
1680x1050     59.95  
1440x900      59.89  
1280x1024     75.02    60.02  
1280x960      60.00  
1280x800      59.81  
1280x720      60.00  
1152x864      75.00  
1024x768      75.03    70.07    60.00  
800x600       75.00    72.19    60.32    56.25  
640x480       75.00    59.94  
HDMI-0 disconnected (normal left inverted right x axis y axis)
DP-0 disconnected (normal left inverted right x axis y axis)
DVI-D-0 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)

答案1

解决方案 1

生成modeline
输入cvt 1920 1080 144然后复制生成的行(从模式线)。

/usr/share/X11/xorg.conf.d/例如像这样创建你的配置文件monitor.conf

Section "Device"  
  Identifier    "Configured Video Device"  
EndSection

Section "Monitor"
  Identifier    "Configured Monitor"  
  paste your copied modeline here eg. : 
  Modeline "1920x1080_144.00"  452.50  1920 2088 2296 2672  1080 1083 1088 1177 -hsync +vsync
EndSection

Section "Screen"
  Identifier    "Default Screen"
  Monitor       "Configured Monitor"
  Device        "Configured Video Device"
   SubSection "Display"
    Modes     "1920x1080_144.00"
   EndSubSection
EndSection        

解决方案 2

您可以在主文件夹.xprofile文件中创建并粘贴:

xrandr --output DVI-I-1 --mode 1920x1080 --rate 144

这将在您登录个人资料后应用。

相关内容