xref: /netbsd-src/external/mit/xorg/etc/etc.dreamcast/xorg.conf.uskbd (revision b2c35e17b976cf7ccd7250c86c6f5e95090ed636)
1# $NetBSD: xorg.conf.uskbd,v 1.5 2023/08/08 14:38:44 tsutsui Exp $
2
3Section "ServerLayout"
4	Identifier	"wsfb"
5	Screen	0	"Screen0" 0 0
6	InputDevice	"Mouse0" "CorePointer"
7	InputDevice	"Keyboard0" "CoreKeyboard"
8EndSection
9
10Section "Files"
11	FontPath	"/usr/pkg/share/fonts/X11/TTF/"
12EndSection
13
14Section "ServerFlags"
15	# Explicitly prefer keyboard options defined in xorg.conf
16	Option		"AutoAddDevices" "false"
17EndSection
18
19Section "InputDevice"
20	Identifier	"Keyboard0"
21	Driver		"kbd"
22	Option		"Protocol"	"wskbd"
23	Option		"Device"	"/dev/wskbd0"
24	Option		"XkbLayout"	"us"
25#	Option		"XkbLayout"	"jp(106)"
26#	Option		"XkbOptions"	"ctrl:swapcaps"
27EndSection
28
29Section "InputDevice"
30	Identifier	"Mouse0"
31	Driver		"mouse"
32	Option		"Protocol"	"wsmouse"
33	Option		"ButtonMapping"	"1 2 3 2"
34EndSection
35
36Section "Device"
37	Identifier	"Wsdisplay0"
38	Driver		"wsfb"
39EndSection
40
41Section "Monitor"
42	Identifier	"Monitor"
43EndSection
44
45Section "Screen"
46	Identifier	"Screen0"
47	Device		"Wsdisplay0"
48	Monitor		"Monitor"
49
50	SubSection "Display"
51		Viewport	0 0
52		Depth		16
53	EndSubSection
54EndSection
55