-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkeyboard
32 lines (29 loc) · 1.07 KB
/
keyboard
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
// customizing the German nodeadkeys keyboard layout by swapping
// brackets/backslash/pipe and umlaute
// for installation:
// sudo cp keyboard /usr/share/X11/xkb/symbols/pylipp
// setxkbmap pylipp
//
// ORIGINAL | CUSTOM
// ---------|-------
// ö | [
// ä | ]
// ü | \
// Ö | {
// Ä | }
// Ü | |
// [ | ö
// ] | ä
// \ | ü
partial alphanumeric_keys
xkb_symbols "pylipp" {
include "de(nodeadkeys)"
key <AE07> { [ 7, slash, NoSymbol, seveneighths ] };
key <AE08> { [ 8, parenleft, odiaeresis, trademark ] };
key <AE09> { [ 9, parenright, adiaeresis, plusminus ] };
key <AE10> { [ 0, equal, NoSymbol, degree ] };
key <AE11> { [ ssharp, question, udiaeresis, questiondown ] };
key <AD11> { [ backslash, bar, dead_diaeresis, dead_abovering ] };
key <AC10> { [ bracketleft, braceleft, doubleacute, doubleacute ] };
key <AC11> { [ bracketright, braceright, asciicircum, asciicircum ] };
};