永久替代监视器分辨率

永久替代监视器分辨率

当我插入我的HTPC时,我能够使用以下答案来更改其分辨率:这个问题引述如下。

我如何使它永久生效?每次我注销时,我都必须再次运行以下命令。

lexu@eee1101:~$ cvt 1366 768 60
1368x768 59.88 Hz (CVT) hsync: 47.79 kHz; pclk: 85.25 MHz
Modeline "1368x768_60.00"   85.25  1368 1440 1576 1784  768 771 781 798 -hsync >+vsync

lexu@eee1101:~$ xrandr --newmode "1368x768_60.00"   85.25  1368 1440 1576 1784 768 771 781 798 -hsync +vsync

lexu@eee1101:~$ xrandr --addmode "default" "1368x768_60.00"

答案1

https://wiki.archlinux.org/index.php/Xrandr,您可以添加此部分/etc/X11/xorg.conf或使用以下方式创建文件

Section "Monitor"
    Identifier "VGA1"
    Modeline "1368x768_60.00"   85.25  1368 1440 1576 1784 768 771 781 798 -hsync +vsync
    Option "PreferredMode" "1368x768_60.00"
EndSection

Section "Screen"
    Identifier "Screen0"
    Monitor "VGA1"
    DefaultDepth 24
    SubSection "Display"
        Modes "1368x768_60.00"
    EndSubSection
EndSection

Section "Device"
    Identifier "Device0"
    Driver "intel"
EndSection

你必须改变路线司机到您的正确图形驱动程序,即 nvidia、fglrx 等等。

相关内容