blob: 340908ed58ba36a128b82062e84d86c98d814ff2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
Section "Files"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/cyrillic"
FontPath "/usr/share/fonts/100dpi/:unscaled"
FontPath "/usr/share/fonts/75dpi/:unscaled"
FontPath "/usr/share/fonts/TrueType"
FontPath "/usr/share/fonts/Type1"
FontPath "/usr/share/fonts/Speedo"
EndSection
Section "Module"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
EndSection
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
EndSection
#to connect a mouse on a serial port...
#Section "InputDevice"
# Identifier "Mouse2"
# Driver "mouse"
# Option "Device" "/dev/ttyS1"
# Option "Protocol" "Auto"
#EndSection
Section "Device"
Identifier "SGIdevice"
Driver "fbdev"
EndSection
Section "Monitor"
Identifier "SGImonitor"
HorizSync 31-65
VertRefresh 55-100
EndSection
Section "Screen"
Identifier "Default Screen"
Device "SGIdevice"
Monitor "SGImonitor"
DefaultDepth 15
SubSection "Display"
Depth 15
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Mouse1" "CorePointer"
#InputDevice "Mouse2" "SendCoreEvents" # for the serial mouse
EndSection
Section "DRI"
Mode 0666
EndSection
|