gpt4 book ai didi

linux - 如何设置默认的 xrandr 模式

转载 作者:太空宇宙 更新时间:2023-11-04 09:57:50 26 4
gpt4 key购买 nike

我有一个小脚本,我需要每天手动执行它以将刷新率设置为 120Hz。这是脚本的内容:

#!/bin/bash  
xrandr --output HDMI-1 --mode 1920x1080 --rate 120
echo 120Hz Has been Enabled

如何将此设置为我的默认模式,每次我启动我的操作系统时,我都会自动分配回 60Hz。这是我针对相关显示的 xrandr 输出:

HDMI-1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 531mm x 298mm
1920x1080 60.00 + 120.00* 100.00 119.88 119.98 99.91 50.00 59.94
3840x2160 30.00 25.00 24.00 29.97 23.98
1280x1024 119.96 75.02 60.02
1440x900 119.85
1280x960 99.99
1152x864 75.00
1280x720 60.00 50.00 59.94
1024x768 119.99 75.03 60.00
800x600 119.97 99.99 75.00 60.32
720x576 50.00
720x480 60.00 59.94
640x480 119.99 75.00 60.00 59.94
720x400 70.08

最佳答案

有两种方法可以做到这一点:

第一种方法是在每次 X 启动时执行您的脚本,方法是将 sh path-to-my-script.sh 添加到您的 ~/.xinitrc 文件

一个更永久的方法是编辑您的 xorg.conf 文件,通常位于 /etc/X11/xorg.conf

首先你需要一个模式行,为你的分辨率和刷新率执行一个模式行

cvt <x resolution> <y resolution> <refresh rate>

你的情况

cvt 1920 1080 120

然后在 xorg.conf 中找到您的监视器,并仅添加模式行中的数字,它应该看起来像这样(但当然具有不同的值):

Section "Monitor"
Identifier "dummy_monitor"
HorizSync 28.0-80.0
VertRefresh 48.0-75.0
Modeline "1920x1080" 172.80 1920 2040 2248 2576 1080 1081 1084 1118
EndSection

有关如何配置 xorg 文件的更多信息,您可以阅读 the arch wiki

关于linux - 如何设置默认的 xrandr 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58714052/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com