xref: /dragonfly/nrelease/gui/etc/X11/xorg.conf (revision 67640b13)
1# $DragonFly: src/nrelease/gui/etc/X11/xorg.conf,v 1.2 2008/09/01 21:20:30 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 "Module"
22	Load "dbe"
23	Load "glx"
24	Load "freetype"
25	Load "extmod"
26EndSection
27
28Section "InputDevice"
29	Identifier  "Keyboard0"
30	Driver      "kbd"
31	Option 	    "XkbOptions" "ctrl:nocaps"
32EndSection
33
34Section "InputDevice"
35	Identifier  "Mouse0"
36	Driver      "mouse"
37	Option	    "Protocol" "auto"
38	Option	    "Device" "/dev/sysmouse"
39	Option	    "ZAxisMapping" "4 5 6 7"
40EndSection
41
42Section "Monitor"
43	Identifier	"Monitor0"
44	Option		"DPMS"
45EndSection
46
47Section "Device"
48	Identifier	"Card0"
49	Driver		"vesa"
50EndSection
51
52Section "Screen"
53	Identifier "Screen0"
54	Device     "Card0"
55	Monitor    "Monitor0"
56	DefaultDepth 24
57	SubSection "Display"
58		Depth     24
59	EndSubSection
60EndSection
61