This file is indexed.

/usr/share/X11/xorg.conf.d/60-xorg-xwiimote.conf is in xserver-xorg-input-xwiimote 0.5-1build3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
# X11 xorg xf86-input-xwiimote config
# Load correct xwiimote driver for all connected Nintendo Wii Remotes.
# Overwrite previous blacklist.
# We do not load the driver on unsupported extensions. This currently includes
# independent extension like classic-controller and pro-controller. Instead, the
# evdev driver is loaded (there is no way to negate InputClass Match* rules..)

Section "InputClass"
	Identifier "Nintendo Wii Remote"
	MatchProduct "Nintendo Wii Remote"
	MatchDevicePath "/dev/input/event*"
	Option "Ignore" "off"
	Driver "xwiimote"
EndSection

Section "InputClass"
	Identifier "Nintendo Wii Remote Classic Controller Whitelist"
	MatchProduct "Nintendo Wii Remote Classic Controller"
	MatchDevicePath "/dev/input/event*"
	Option "Ignore" "off"
	Driver "evdev"
EndSection

Section "InputClass"
	Identifier "Nintendo Wii Remote Pro Controller Whitelist"
	MatchProduct "Nintendo Wii Remote Pro Controller"
	MatchDevicePath "/dev/input/event*"
	Option "Ignore" "off"
	Driver "evdev"
EndSection