* updated tzdata (2024a -> 2024b)
[t2sde.git] / package / xorg / xorg-server / xorg.conf.template
blob40d24b38695e8fe327677cae6140e79e521b9b74
1 # T2 Live xorg.conf template
2 # Copyright (C) 2005 - 2023 The T2 SDE Project
4 Section "ServerFlags"
5 #    Option      "AutoAddDevices"   "false"
6 EndSection
8 Section "Module"
9     Load        "dbe"
10     Load        "ddc"
12     SubSection  "extmod"
13       # Option    "omit xfree86-dga"
14       # Option    "omit XFree86-VidModeExtension"
15     EndSubSection
17     Load        "type1"
18     Load        "freetype"
20     Load        "glx"
21     Load        "dri"
23 #    Load       "v4l"
24 EndSection
26 Section "Extensions"
27 #    Option  "XEVIE"         "Disable"
28     Option  "Composite"     "Enable"
29 EndSection
31 Section "DRI"
32     Mode 0666
33 EndSection
35 Section "Files"
36     FontPath   "/usr/X11/lib/X11/fonts/75dpi/:unscaled"
37     FontPath   "/usr/X11/lib/X11/fonts/100dpi/:unscaled"
38     FontPath   "/usr/X11/lib/X11/fonts/CID/"
39     FontPath   "/usr/X11/lib/X11/fonts/PEX/"
40     FontPath   "/usr/X11/lib/X11/fonts/Speedo/"
41     FontPath   "/usr/X11/lib/X11/fonts/Type1/"
42     FontPath   "/usr/X11/lib/X11/fonts/cyrillic/"
43     FontPath   "/usr/X11/lib/X11/fonts/encodings/"
44     FontPath   "/usr/X11/lib/X11/fonts/freefont/"
45     FontPath   "/usr/X11/lib/X11/fonts/latin2/"
46     FontPath   "/usr/X11/lib/X11/fonts/local/"
47     FontPath   "/usr/X11/lib/X11/fonts/misc/"
48     FontPath   "/usr/X11/lib/X11/fonts/sharefont/"
49     FontPath   "/usr/X11/lib/X11/fonts/TTF/"
50 EndSection
52 Section "InputDevice"
53     Identifier  "Keyboard1"
54     Driver      "kbd"
56 #    Option "AutoRepeat" "250 30"
58 #    Option "XkbRules"  "xorg"
59 #    Option "XkbModel"  "pc105"
60 #    Option "XkbLayout" "us"  # TODO
61 #    Option "XkbVariant" "nodeadkeys"  # TODO
62 EndSection
64 Section "InputDevice"
65     Identifier  "Mouse1"
66     Driver      "mouse"
68     Option "Protocol"    "IMPS/2"
69     Option "Device"      "/dev/input/mice"
71 #    Option "Protocol"    "Auto"
72 #    Option "Protocol"    "Microsoft"
73 #    Option "Protocol"    "PS/2"
74 #    Option "Device"      "/dev/tts/0"
75 #    Option "Device"      "/dev/misc/psaux"
77     Option "Buttons"     "5"
78     Option "ZaxisMapping" "4 5"
79 EndSection
81 Section "Monitor"
82     Identifier  "Monitor1"
83     $horiz_sync
84     $vert_refresh
85 EndSection
87 Section "Device"
88     Identifier  "Card1"
89     Driver      "$xdrv"
90 EndSection
92 Section "Screen"
93     Identifier  "Screen1"
94     Device      "Card1"
95     Monitor     "Monitor1"
97     DefaultDepth $depth
99     Subsection "Display"
100         Modes       $modes
101     EndSubsection
102 EndSection
104 Section "ServerLayout"
105     Identifier  "Simple Layout"
106     Screen "Screen1"
108     InputDevice "Mouse1" "CorePointer"
109     InputDevice "Keyboard1" "CoreKeyboard"
111 #    InputDevice "Mouse2" "SendCoreEvents"
112 #    InputDevice "Tablet1"
113 EndSection