[python] Updated (2.4.4 -> 2.4.5)
[opensde-package-nopast.git] / xorg / xorg-server / xorg.conf.template
blob3a8756d9f461b091fe356f60d2c0b3d3fe5c6f72
2 # T2 Live xorg.conf template - Rene Rebe
4 Section "Module"
6     Load        "dbe"
7     Load        "ddc"
9     SubSection  "extmod"
10       # Option    "omit xfree86-dga"
11       # Option    "omit XFree86-VidModeExtension"
12     EndSubSection
14     Load        "type1"
15     Load        "freetype"
17     Load        "glx"
18     Load        "dri"
20 #    Load       "v4l"
21 EndSection
23 Section "DRI"
25     Mode 0666
27 EndSection
29 Section "Files"
31     RgbPath    "/usr/X11/share/X11/rgb"
33     FontPath   "/usr/X11/lib/X11/fonts/75dpi/:unscaled"
34     FontPath   "/usr/X11/lib/X11/fonts/100dpi/:unscaled"
35     FontPath   "/usr/X11/lib/X11/fonts/CID/"
36     FontPath   "/usr/X11/lib/X11/fonts/PEX/"
37     FontPath   "/usr/X11/lib/X11/fonts/Speedo/"
38     FontPath   "/usr/X11/lib/X11/fonts/Type1/"
39     FontPath   "/usr/X11/lib/X11/fonts/cyrillic/"
40     FontPath   "/usr/X11/lib/X11/fonts/encodings/"
41     FontPath   "/usr/X11/lib/X11/fonts/freefont/"
42     FontPath   "/usr/X11/lib/X11/fonts/latin2/"
43     FontPath   "/usr/X11/lib/X11/fonts/local/"
44     FontPath   "/usr/X11/lib/X11/fonts/misc/"
45     FontPath   "/usr/X11/lib/X11/fonts/sharefont/"
46     FontPath   "/usr/X11/lib/X11/fonts/TTF/"
48 EndSection
50 Section "InputDevice"
52     Identifier  "Keyboard1"
53     Driver      "kbd"
55     Option "AutoRepeat" "250 30"
57     Option "XkbRules"   "xorg"
58     Option "XkbModel"   "pc105"
59     Option "XkbLayout"  "us"  # TODO
60 #    Option "XkbVariant" "nodeadkeys"  # TODO
62 EndSection
64 Section "InputDevice"
66     Identifier  "Mouse1"
67     Driver      "mouse"
69     Option "Protocol"    "IMPS/2"
70     Option "Device"      "/dev/input/mice"
72 #    Option "Protocol"    "Auto"
73 #    Option "Protocol"    "Microsoft"
74 #    Option "Protocol"    "PS/2"
75 #    Option "Device"      "/dev/tts/0"
76 #    Option "Device"      "/dev/misc/psaux"
78     Option "Buttons"     "5"
79     Option "ZaxisMapping" "4 5"
81 EndSection
84 Section "Monitor"
86     Identifier  "Monitor1"
87     $horiz_sync
88     $vert_refresh
90 EndSection
93 Section "Device"
95     Identifier  "Card1"
96     Driver      "$xdrv"
98 EndSection
100 Section "Screen"
102     Identifier  "Screen1"
103     Device      "Card1"
104     Monitor     "Monitor1"
106     DefaultDepth $depth
108     Subsection "Display"
109         Modes       $modes
110     EndSubsection
112 EndSection
114 Section "ServerLayout"
116     Identifier  "Simple Layout"
117     Screen "Screen1"
119     InputDevice "Mouse1" "CorePointer"
120     InputDevice "Keyboard1" "CoreKeyboard"
122 #    InputDevice "Mouse2" "SendCoreEvents"
123 #    InputDevice "Tablet1"
125 EndSection