xref: /dragonfly/nrelease/gui/etc/X11/xorg.conf (revision 51f35c5c)
1# $DragonFly: src/nrelease/gui/etc/X11/xorg.conf,v 1.1 2008/03/08 22:00:03 swildner Exp $
2
3Section "ServerLayout"
4	Identifier	"Layout0"
5	Screen	0	"Screen0"	0	0
6	InputDevice	"Keyboard0"	"CoreKeyboard"
7	InputDevice	"Mouse0"	"CorePointer"
8EndSection
9
10Section "Files"
11	RgbPath      "/usr/pkg/share/X11/rgb"
12	ModulePath   "/usr/pkg/lib/xorg/modules"
13	FontPath     "/usr/pkg/lib/X11/fonts/misc/"
14	FontPath     "/usr/pkg/lib/X11/fonts/TTF/"
15	FontPath     "/usr/pkg/lib/X11/fonts/OTF"
16	FontPath     "/usr/pkg/lib/X11/fonts/Type1/"
17	FontPath     "/usr/pkg/lib/X11/fonts/100dpi/"
18	FontPath     "/usr/pkg/lib/X11/fonts/75dpi/"
19EndSection
20
21Section "InputDevice"
22	Identifier  "Keyboard0"
23	Driver      "kbd"
24EndSection
25
26Section "InputDevice"
27	Identifier  "Mouse0"
28	Driver      "mouse"
29	Option	    "Protocol" "auto"
30	Option	    "Device" "/dev/sysmouse"
31	Option	    "ZAxisMapping" "4 5 6 7"
32EndSection
33
34Section "Monitor"
35	Identifier	"Monitor0"
36	HorizSync	30 - 60
37	VertRefresh	50.0 - 100.0
38	Option		"DPMS"
39EndSection
40
41Section "Device"
42	Identifier	"Card0"
43	Driver		"vesa"
44EndSection
45
46Section "Screen"
47	Identifier "Screen0"
48	Device     "Card0"
49	Monitor    "Monitor0"
50	SubSection "Display"
51		Depth     1
52		Modes	"640x480"
53	EndSubSection
54	SubSection "Display"
55		Depth     4
56		Modes	"800x600" "640x480"
57	EndSubSection
58	SubSection "Display"
59		Depth     8
60		Modes	"800x600" "640x480"
61	EndSubSection
62	SubSection "Display"
63		Depth     15
64		Modes	"1024x768" "800x600" "640x480"
65	EndSubSection
66	SubSection "Display"
67		Depth     16
68		Modes	"1024x768" "800x600" "640x480"
69	EndSubSection
70	SubSection "Display"
71		Depth     24
72		Modes	"1024x768" "800x600" "640x480"
73	EndSubSection
74EndSection
75