Linux桌面添加新的分辨率

发布: 2014-05-27 21:24


xrandr --newmode "1680x1050" 147.1 1680 1784 1968 2256 1050 1051 1054 1087 +Hsync -Vsync
xrandr --addmode LVDS1 1680x1050

原来的和控制中没有这个分辨率,通过这两个命令,添加新的分辨率
然后可在KDE的"显示与监控”配置项中找到这个新的分辨率可以使用。

也可以继续使用xrandr命令,设置当前的显示分辨率,
xrandr --output LVDS1 --mode "1680x1050"
或者,
xrandr --output LVDS1 --mode "1920x1200"

原来的1920x1200的字段实在太小了。

16:10比例的其他分辨率:
"1440x900" 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync

[code type="bash"]
#!/bin/sh

xrandr --newmode "1680x1050" 147.1 1680 1784 1968 2256 1050 1051 1054 1087 +Hsync -Vsync
xrandr --addmode LVDS1 1680x1050
xrandr --output LVDS1 --mode "1680x1050"
# xrandr --output LVDS1 --mode "1920x1200"
[/code]


原文: http://qtchina.tk/?q=node/813

Powered by zexport