-
Notifications
You must be signed in to change notification settings - Fork 175
/
keyd.scdoc
563 lines (380 loc) · 11.5 KB
/
keyd.scdoc
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
keyd(1)
# NAME
*keyd* - A key remapping daemon.
# SYNOPSIS
*keyd* [options]
# OPTIONS
*-m, --monitor*
Start keyd in monitor mode. Useful for discovering keycodes and device ids.
*-e, --expression <expression> [<expression>...]*
Modify bindings of the currently active keyboard. See _Expressions_ for details.
*-l, --list-keys*
List valid key names.
*-v, --version*
Print the current version and exit.
*-h, --help*
Print help and exit.
# DESCRIPTION
keyd is a system wide key remapping daemon which supports features like
layering, oneshot modifiers, and macros. In its most basic form it can be used
to define a custom key layout that persists across display server boundaries
(e.g wayland/X/tty).
The program runs in the foreground, printing diagnostic information to the
standard output streams, and is intended to be run as a single instance managed
by the init system.
*NOTE:*
Because keyd modifies your primary input device, it is possible to render your
machine unusable with a bad config file. If you find yourself in this situation
the panic sequence *<backspace>+<escape>+<enter>* will force keyd to
terminate.
# CONFIGURATION
Configuration files are stored in _/etc/keyd/_ and are loaded upon initialization.
Changes to these files can be realized by restarting the daemon, which is usually
accomplished using your service manager.
E.G
sudo systemctl restart keyd
A valid config file has the extension _.conf_ and *must* begin with an _[ids]_
section that has one of the following forms:
```
[ids]
<vendor id 1>:<product id 1>
<vendor id 2>:<product id 2>
...
```
or
```
[ids]
*
-<vendor id 1>:<product id 1>
-<vendor id 2>:<product id 2>
...
```
The first form specifies a list of ids to be explicitly matched, while the
second matches any id which has not been explicitly excluded.
For example:
```
[ids]
*
-0123:4567
```
Will match all devices which *do not* have the id _0123:4567_, while:
```
[ids]
0123:4567
```
will exclusively match any devices which do.
Each subsequent section of the file corresponds to a _layer_.
## Layers
A layer is a collection of _bindings_, each of which specifies the behaviour of
a particular key. Multiple layers may be active at any given time, forming a
stack of occluding keymaps consulted in activation order. The default layer is
called _main_ and is where common bindings should be defined.
For example, the following config snippet defines a layer called _nav_
and creates a toggle for it in the _main_ layer:
```
[main]
capslock = layer(nav)
[nav]
h = left
k = up
j = down
l = right
```
When capslock is held, the _nav_ layer occludes the _main_ layer
causing _hjkl_ to function as the corresponding arrow keys.
Unlike most other remapping tools, keyd provides first class support for
modifiers. A layer name may optionally end with a ':' followed by a
set of modifiers to emulate in the absence of an explicit mapping.
These layers play nicely with other modifiers and preserve existing stacking
semantics.
For example:
```
[main]
capslock = layer(capslock)
[capslock:C]
j = down
```
will cause _capslock_ to behave as _control_, except in the case of _control+j_, which will
emit _down_. This makes it trivial to define custom modifiers which don't interfere with
one another.
Formally, each layer heading has the following form:
```
"[" <layer name>[:<modifier set>] "]"
```
Where _<modifier_set>_ has the form:
_<modifier1>[-<modifier2>]..._
and each modifier is one of:
*C* - Control++
*M* - Meta/Super++
*A* - Alt++
*S* - Shift++
*G* - AltGr
Finally, each layer heading is followed by a set of bindings which take the form:
<key> = <keycode>|<macro>|<action>
for a description of <action> and <macro> see _ACTIONS_ and _MACROS_.
By default, each key is bound to itself within the main layer. The exception to this
are the modifier keys, which are instead bound to eponymously named layers with the
corresponding modifiers.
For example, _meta_ is acutally bound to _layer(meta)_, where _meta_ is
internally defined as _meta:M_.
A consequence of this is that overriding modifier keys is a simple matter of
adding the desired bindings to appropriate pre-defined layer.
Thus
```
[ids]
*
[control]
j = down
```
is a completely valid config, which does what the benighted user might expect. Internally,
the full config actually looks something like this:
```
[ids]
*
[main]
leftcontrol = layer(control)
rightcontrol = layer(control)
[control:C]
j = down
```
## Composite Layers
A special kind of layer called a *composite layer* can be defined by creating a
layer with a name consisting of existing layers delimited by _+_. The resultant
layer will be activated and given precedence when all of its constituents are
activated. Composite layers always inherit the modifiers of their constituent
layers and cannot be explicitly assigned.
E.G
```
[main]
capslock = layer(capslock)
[capslock:C]
[capslock+shift]
h = left
```
Will cause the sequence _control+shift+h_ to produce _left_, while preserving
the expected functionality of _capslock_ and _shift_ in isolation.
*Note:* composite layers *must* always be defined _after_ the layers of which they
are comprised.
That is:
```
[layer1]
[layer2]
[layer1+layer2]
```
and not
```
[layer1+layer2]
[layer1]
[layer2]
```
## International Characters
If keyd encounters a UTF8 sequence as a right hand value, it will try and
translate that sequence into a macro which emits the corresponding XKB
sequence.
For example:
```
a = ä
u = Ü
```
will produce the following mapping:
```
a = macro(compose a ")
U = macro(compose U ")
```
In order for this to produce the desired symbol, the xkb option compose:menu
must be set, so that the compose keycode is properly recognized.
This can be manually achieved with:
```
setxkbmap -option compose:menu
```
though the settings will be lost when the device is unplugged (i.e keyd is
restarted).
The changes can be made permanent by setting the relevant option in your
display server's configuration logic. XKB compose sequences are supported by X
as well as most wayland compositors.
E.G:
on X:
Populating _/etc/X11/xorg.conf.d/compose.conf_ with:
```
Section "InputClass"
Identifier "system-keyboard"
MatchIsKeyboard "on"
Option "XkbOptions" "compose:menu"
EndSection
```
on sway:
Setting the following environment variable:
```
XKB_DEFAULT_OPTIONS=compose:menu
```
# MACROS
Various keyd actions accept macro expressions.
A valid macro expression has one of the following forms:
. macro(<exp>)
. [<modifier 1>[-<modifier 2>...]-<key>
Where _<exp>_ has the form _<token1> [<token2>...]_ and each token is one of:
- a valid key code.
- a type 2. macro.
- a contiguous group of characters, each of which is a valid key code.
- a group of key codes delimited by + to be depressed as a unit.
- a timeout of the form _<time>ms_ (where _<time>_ < 1024).
The following are all valid macro expressions:
- C-a
- macro(C-a)
- macro(control+a)
- A-M-x
- macro(Hello space World)
- macro(h e l l o space w o r ld) (identical to the above)
- macro(C-t 100ms google.com enter)
# ACTIONS
A key may optionally be bound to an _action_ which accepts zero or more
arguments.
*oneshot(<layer>)*
If tapped, activate the supplied layer for the duration of the next keypress.
If _<layer>_ is a modifier layer then it will cause the key to behave as the
corresponding modifiers while held.
*layer(<layer>)*
Activates the given layer for the duration of the keypress.
*toggle(<layer>)*
Permanently toggle the state of the given layer.
*overload(<layer>, <macro>)*
Activates the given layer while held and executes the provided macro when tapped.
*timeout(<action 1>, <timeout>, <action 2>)*
If the key is held in isolation for more than _<timeout> ms_, activate the first
action, if the key is held for less than _<timeout> ms_ or another key is struck
before <timeout> ms expires, execute the first action.
E.G
timeout(a, 500, layer(control))
Will cause the assigned key to behave as _control_ if it is held for more than
500 ms.
*swap(<layer>[, <macro>])*
Swap the currently active layer with the supplied one. The supplied layer is
active for the duration of the depression of the current layer's activation
key. A macro may optionally be supplied to be performed before the layer
change.
```
[control]
x = swap(xlayer)
[xlayer]
s = C-s
b = S-insert
```
*noop*
Do nothing.
# IPC
To facilitate extensibility, keyd employs a client-server model accessible
through the use of *-e*. The keymap can thus be conceived of as a
living entity that can be modified at run time.
In addition to allowing the user to try new bindings on the fly, this
enables the user to fully leverage keyd's expressive power from other programs
without incurring a performance penalty.
For instance, the user may use this functionality to write a script which
alters the keymap when they switch between different tmux sessions.
The application remapping tool (*keyd-application-mapper(1)*) which ships with keyd
is a good example of this. It is a small python script which performs event
detection for the various display servers (e.g X/sway/gnome, etc) and feeds the
desired mappings to the core using _-e_.
## Expressions
The _-e_ flag accepts one or more _expressions_, each of which must have the following form:
\[<layer>.\]<key> = <key>|<macro>|<action>
Where _<layer>_ is the name of an (existing) layer in which the key is to be bound.
As a special case, an expression may be the string *reset*, in which case the
current keymap will revert to its original state (all dynamically applied
bindings will be dropped).
Examples:
```
# keyd -e '- = C-c'
# keyd -e reset # Reset the state of the keymap so it reflects /etc/keyd/.
```
By default expressions apply to the most recently active keyboard.
# EXAMPLES
## Example 1
Make _esc+q_ toggle the dvorak letter layout.
```
[ids]
*
[main]
esc = layer(esc)
[dvorak]
a = a
s = o
...
[esc]
q = toggle(dvorak)
```
## Example 2
Invert the behaviour of the shift key without breaking modifier behaviour.
```
[ids]
*
[main]
1 = !
2 = @
3 = #
4 = $
5 = %
6 = ^
7 = &
8 = *
9 = (
0 = )
[shift]
0 = 0
1 = 1
2 = 2
3 = 3
4 = 4
5 = 5
6 = 6
7 = 7
8 = 8
9 = 9
```
## Example 3
Tapping control once causes it to apply to the next key, tapping it twice
activates it until it is pressed again, and holding it produces expected
behaviour.
```
[main]
control = oneshot(control)
[control]
toggle(control)
```
## Example 4
Meta behaves as normal except when \` is pressed, after which the alt_tab layer
is activated for the duration of the leftmeta keypress. Subsequent actuations
of _will thus produce A-tab instead of M-\\_.
```
[meta]
` = swap(alt_tab, A-tab)
[alt_tab:A]
tab = A-S-tab
` = A-tab
```
## Example 5
```
# Uses the compose key functionality of the display server to generate
# international glyphs. # For this to work 'setxkbmap -option
# compose:menu' must # be run after keyd has started.
# A list of sequences can be found in /usr/share/X11/locale/en_US.UTF-8/Compose
# on most systems.
[main]
rightalt = layer(dia)
[dia]
# Map o to ö
o = macro(compose o ")
# Map e to €
e = macro(compose c =)
```
## Example 6
```
# Tapping both shift keys will activate capslock.
[shift]
leftshift = capslock
rightshift = capslock
```
# AUTHOR
Written by Raheman Vaiya (2017-).
# BUGS
Please file any bugs or feature requests at the following url:
<https://github.com/rvaiya/keyd/issues>