Gentoo Archives: gentoo-user

From: Adam Carter <Adam.Carter@×××××××××.au>
To: "gentoo-user@l.g.o" <gentoo-user@l.g.o>
Subject: RE: [gentoo-user] X screen resolution
Date: Fri, 22 Aug 2008 03:06:13
Message-Id: 707E41AE68E444499861C6B248AB8684535D2C7A86@excprdmbxw002.optus.com.au
In Reply to: Re: [gentoo-user] X screen resolution by Ward Poelmans
1 > > X is starting in 1280x1024, however i want it to start in
2 > 1600x1200. At the
3 > > moment im using xrandr to set it manually after i start X.
4 > >
5 > > Here's my config; the Modeline is required.
6 >
7 > Can you show us your complete xorg.conf?
8
9 Its in the middle of getting hacked around, so there's a few inconsistancies as I'm also trying to get 1920x1200 working. Its still always starts at 1280x1024 however.
10
11 voodoo adam # grep ^[^#] /etc/X11/xorg.conf
12 Section "Module"
13 Load "dbe" # Double buffer extension
14 SubSection "extmod"
15 Option "omit xfree86-dga" # don't initialise the DGA extension
16 EndSubSection
17 Load "type1"
18 Load "glx"
19 EndSection
20 Section "Files"
21 #FontPath "/usr/share/fonts/local"
22 FontPath "/usr/share/fonts/misc"
23 FontPath "/usr/share/fonts/Type1"
24 FontPath "/usr/share/fonts/TTF"
25 #FontPath "/usr/share/fonts/75dpi/:unscaled"
26 FontPath "/usr/share/fonts/75dpi"
27 #FontPath "/usr/share/fonts/100dpi/:unscaled"
28 FontPath "/usr/share/fonts/100dpi"
29 FontPath "/usr/share/fonts/corefonts"
30 EndSection
31 Section "ServerFlags"
32 #Option "blank time" "10" # 10 minutes
33 #Option "standby time" "20"
34 #Option "suspend time" "30"
35 #Option "off time" "60"
36 EndSection
37 Section "InputDevice"
38 Identifier "Keyboard1"
39 #Driver "kbd"
40 Driver "keyboard"
41 Option "AutoRepeat" "500 30"
42 Option "XkbModel" "pc104"
43 Option "XkbLayout" "us"
44 EndSection
45 Section "InputDevice"
46 Identifier "Mouse1"
47 Driver "mouse"
48 Option "Protocol" "ImPS/2"
49 Option "Device" "/dev/psaux"
50 Option "ZAxisMapping" "4 5"
51 EndSection
52 Section "Monitor"
53 #Identifier "hp1702byadam"
54 Identifier "benqg2400wd"
55 #HorizSync 31.5 - 82.0
56 HorizSync 31.0 - 94.0
57 #VertRefresh 40-150
58 VertRefresh 40-85
59 Modeline "1600x1200" 162.00 1600 1664 1856 2160 1200 1201 1204 1250
60 # this one says "out of range"
61 #Modeline "1920x1200@75" 292.90 1920 1952 3064 3096 1200 1223 1238 1261
62 # this one says "no signal detected"
63 Modeline "1920x1200@60" 210.68 1920 1952 2752 2784 1200 1224 1236 1261
64 # this one just extends the virtual not the real
65 #Modeline "1920x1200" 114.37 1920 1952 2384 2416 1200 1226 1234 1261 interlace
66 #Modeline "1920x1200@75i" 114.37 1920 1952 2384 2416 1200 1226 1234 1261 interlace
67 EndSection
68 Section "Device"
69 Identifier "Standard VGA"
70 VendorName "Unknown"
71 BoardName "Unknown"
72 Driver "vga"
73 EndSection
74 Section "Device"
75 Identifier "nvbyadam"
76 Driver "nv"
77 #Driver "nvidia"
78 Option "IgnoreEDID" "true"
79 Option "UseEdidFreqs" "false"
80 #VideoRam 65535
81 Option "NoLogo" "1"
82 Option "RenderAccel" "true"
83 Option "backingstore" "true"
84 #Option "NvAGP" "1"
85 # Insert Clocks lines here if appropriate
86 EndSection
87 Section "Screen"
88 Identifier "Screen 1"
89 Device "nvbyadam"
90 #Monitor "hp1702byadam"
91 Monitor "benqg2400wd"
92 DefaultDepth 24
93 #Subsection "Display"
94 # Depth 8
95 # Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
96 # ViewPort 0 0
97 #EndSubsection
98 Subsection "Display"
99 Depth 16
100 #Virtual 1920 1200
101 #Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
102 Modes "1920x1200" "1600x1200"
103 ViewPort 0 0
104 EndSubsection
105 Subsection "Display"
106 Depth 24
107 #Virtual 1920 1200
108 #Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
109 Modes "1920x1200@60" "1600x1200"
110 ViewPort 0 0
111 EndSubsection
112 EndSection
113 Section "ServerLayout"
114 Identifier "Simple Layout"
115 Screen "Screen 1"
116 InputDevice "Mouse1" "CorePointer"
117 InputDevice "Keyboard1" "CoreKeyboard"
118 EndSection
119 Section "Extensions"
120 Option "Composite" "Enable"
121 EndSection
122 voodoo adam #

Replies

Subject Author
Re: [gentoo-user] X screen resolution Ward Poelmans <wpoely86@×××××.com>