blob: 68f714c6249ae9f6b67c77ece6851c08e05f42ac (
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
|
Section "ServerFlags"
Option "AutoEnableDevices" "false"
Option "AutoAddDevices" "false"
Option "DefaultLayout" "seat"
Option "DontZoom" "true"
Option "DontZap" "true"
Option "AllowMouseOpenFail" "yes"
EndSection
Section "Module"
Load "ddc"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
ModulePath "/usr/local/lib/xorg/modules"
EndSection
Section "Device"
Identifier "dl"
driver "fbdev"
Option "ReportDamage" "true"
Option "fbdev" "/dev/usbseat/%ID_SEAT%/display"
EndSection
Section "InputDevice"
Identifier "keyboard"
Driver "evdev"
Option "CoreKeyboard"
Option "Device" "/dev/usbseat/%ID_SEAT%/keyboard"
Option "XkbModel" "evdev"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "mouse"
Driver "mouse"
Option "CorePointer"
Option "Protocol" "ImPS/2"
Option "Device" "/dev/usbseat/%ID_SEAT%/mouse"
Option "Buttons" "5"
Option "ZAxisMapping" "4 5"
EndSection
Section "Monitor"
Identifier "monitor"
EndSection
Section "Screen"
Identifier "screen"
Device "dl"
Monitor "monitor"
EndSection
Section "ServerLayout"
Identifier "%ID_SEAT%"
Screen 0 "screen" 0 0
InputDevice "keyboard" "CoreKeyboard"
InputDevice "mouse" "CorePointer"
EndSection
|