source: bootcd/config/etc/X11/xorg.conf @ 80c0fb9

gcc484perl-5.22
Last change on this file since 80c0fb9 was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100755
File size: 2.2 KB
Line 
1# SYN-3 installer X configuration
2
3Section "ServerLayout"
4        Identifier      "X.Org Configured"
5        Screen  0       "Screen0" 0 0
6        InputDevice     "Keyboard0" "CoreKeyboard"
7        InputDevice     "PS/2 Mouse" "AlwaysCore"
8#        InputDevice     "Serial Mouse" "AlwaysCore"
9        InputDevice     "USB Mouse" "AlwaysCore"
10        InputDevice     "Synaptics" "AlwaysCore"
11EndSection
12
13Section "ServerFlags"
14        Option  "AllowMouseOpenFail" "true"
15       
16EndSection
17
18Section "Files"
19EndSection
20
21Section "Module"
22        Load    "ddc"
23        Load    "dbe"
24        Load    "dri"
25        Load    "extmod"
26        Load    "bitmap"
27        Load    "type1"
28        Load    "freetype"
29        Load    "record"
30EndSection
31
32Section "InputDevice"
33        Identifier      "Keyboard0"
34        Driver  "kbd"
35EndSection
36
37Section "InputDevice"
38        Identifier      "Serial Mouse"
39        Driver  "mouse"
40        Option  "Protocol" "Microsoft"
41        Option  "Device" "/dev/ttyS0"
42        Option  "Emulate3Buttons" "true"
43        Option  "Emulate3Timeout" "70"
44        Option  "SendCoreEvents"  "true"
45EndSection
46
47Section "InputDevice"
48        Identifier      "PS/2 Mouse"
49        Driver  "mouse"
50        Option  "Protocol" "IMPS/2"
51        Option  "Device" "/dev/misc/psaux"
52        Option  "Emulate3Buttons" "true"
53        Option  "Emulate3Timeout" "70"
54        Option  "SendCoreEvents"  "true"
55        Option  "ZAxisMapping" "4 5"
56EndSection
57
58Section "InputDevice"
59        Identifier      "USB Mouse"
60        Driver  "mouse"
61        Option  "Device" "/dev/input/mice"
62        Option  "SendCoreEvents" "true"
63        Option  "Protocol" "IMPS/2"
64        Option  "ZAxisMapping" "4 5"
65        Option  "Buttons" "5"
66EndSection
67
68Section "InputDevice"
69        Identifier      "Synaptics"
70        Driver  "synaptics"
71        Option  "Protocol" "event"
72        Option  "Device" ""
73        Option  "LeftEdge" "1900"
74        Option  "RightEdge" "5400"
75        Option  "TopEdge" "1900"
76        Option  "BottomEdge" "4000"
77        Option  "FingerLow" "25"
78        Option  "FingerHigh" "30"
79        Option  "MaxTapTime" "180"
80        Option  "MaxTapMove" "220"
81        Option  "VertScrollDelta" "100"
82        Option  "MinSpeed" "0.02"
83        Option  "MaxSpeed" "0.10"
84        Option  "AccelFactor" "0.0010"
85        Option  "SHMConfig" "on"
86EndSection
87
88
89Section "Monitor"
90        Identifier   "Monitor0"
91EndSection
92
93Section "Device"
94        ### Available Driver options are:-
95        #Option     "ShowCache"
96        #Option     "ShadowFB"
97        #Option     "UseFBDev"
98        #Option     "Rotate"
99        Identifier  "Card0"
100        Driver      "fbdev"
101        VendorName  "All"
102        BoardName   "All"
103EndSection
104
105Section "Screen"
106        Identifier      "Screen0"
107        Device  "Card0"
108        Monitor "Monitor0"
109EndSection
110
111Section "DRI"
112        Mode 0666
113EndSection
Note: See TracBrowser for help on using the repository browser.