|
发表于 2008-12-10 09:39:25
|
显示全部楼层
假设你的LCD刷新率是60,将
gtf 1280 800 60
的输出copy到xorg.conf的Monitor里,然后在Screen的SubSection里加上Mode “1280x800”,重启X就可以了。
我的xorg.conf中的部分是:
Section "Monitor"
Identifier "Monitor0"
Option "DPMS" "true"
HorizSync 28.0 - 49.0
VertRefresh 50.0 - 60.0
# 1280x800 @ 60.00 Hz (GTF) hsync: 49.68 kHz; pclk: 83.46 MHz
Modeline "1280x800_60.00" 83.46 1280 1344 1480 1680 800 801 804 828 -HSync +Vsync
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultColorDepth 24
SubSection "Display"
Depth 24
Modes "1280x800" "800x600" "640x480"
EndSubSection
EndSection |
|