利用 xrandr 命令强制修改屏幕分辨率

$ cvt 1366 768

然后屏幕上会返回两行内容,赋值第二行中 ‘Modeline’ 后面的所有内容,并接到下面 xrandr --newmode 后面新建一个分辨率:

$ xrandr --newmode “1368x768_60.00” 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync
#将分辨率添加到 VGA-1屏幕上
$xrandr --addmode VGA-1 “1368x768_60.00”
$xrandr --output eDP-1 --primary --mode 1920x1080 --pos 768x0 --rotate normal --output VGA-1 --mode “1368x768_60.00” --pos 0x56 --rotate left --output HDMI-1 --off

之后,再进入 设置->显示, 发现那个对应的屏幕分辨率中,有了 “1368x768_60.00” 这个选项,选中它,并 Apply 即可。或者调用以下命令使其生效(命令行生效好像是暂时的)
$ xrandr --output DP2 --mode “1920x1080_60.00”