This file is indexed.

/usr/share/doc/xbindkeys/README.Debian is in xbindkeys 1.8.6-1.

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
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
xbindkeys for Debian
--------------------

You may want to install the xbindkeys_config Package to have a GUI for
the Setup of xbindkeys.

xbindkeys autostart
-------------------
Within systems following the Freedesktop standard of application
autostart, xbindkeys should load automatically. In other environments
the user has to take care of this themself, either by just adding
xbindkeys to their .xsession - or by calling
/usr/bin/xbindkeys_autostart via whatever way their environment provides.

Using xbindkeys_autostart instead of calling xbindkeys directly adds
the possibility to easily disable xbindkeys by touching
~/.xbindkeys.noauto, other than that there is no difference.

Modifier keys
-------------
If you have a modifier Key which is not known to xbindkeys by its name
you can go "The Hard Way":

======
First, be sure that it generates events in 'xev'. Run 'xev' from a terminal
emulator, and hit the modifier key. If it generates text, then you're set to
use it with xbindkeys.

The output 'xev' gives is important. When you push down the modifier key, it
generates a "KeyPress" event.  When you release it, it generates a
"KeyRelease" event. Note that the "KeyRelease" event is the important one. The
"state" field in this paragraph is what we need to give xbindkeys. Here's some
example output of my setup:

KeyPress event, serial 28, synthetic NO, window 0x1a00001,
    root 0x40, subw 0x0, time 3415640395, (89,156), root:(929,614),
    state 0x10, keycode 115 (keysym 0xffed, Hyper_L), same_screen YES,
    XLookupString gives 0 characters:  ""

KeyRelease event, serial 28, synthetic NO, window 0x1a00001,
    root 0x40, subw 0x0, time 3415640637, (89,156), root:(929,614),
    state 0x30, keycode 115 (keysym 0xffed, Hyper_L), same_screen YES,
    XLookupString gives 0 characters:  ""

So, we care about the KeyRelease event. The state is set to "0x30". So, in
~/.xbindkeysrc, we have:

"xterm &"
  m:0x30 + F1

There we go, now I can use my un-named modifier key with xbindkeys. For what
it's worth, my "un-named modifier key" is the left Windows key.
======

Today these Modifier Keys are known by name:
Control, Shift, Mod1 (Alt), Mod2 (NumLock), Mod3 (CapsLock), Mod4,
Mod5 (Scroll).

 -- Joerg Jaspert <joerg@debian.org>, Sun, 16 Feb 2014 13:24:12 +0100