chiark / gitweb /
hack.xkb needs mod4 removing from windows key
[ian-dotfiles.git] / xkbtest.xkb
1 xkb_types {
2
3     type "ONE_LEVEL" {
4         modifiers= none;
5     };
6     type "TWO_LEVEL" {
7         modifiers= Shift;
8         map[Shift]= Level2;
9     };
10     type "ALPHABETIC" {
11         modifiers= Shift+Lock;
12         map[Shift]= Level2;
13         map[Lock]= Level3;
14         preserve[Lock]= Lock;
15     };
16     type "KEYPAD" {
17         modifiers= Shift;
18         map[Shift]= Level2;
19         map[none]= Level1;
20     };
21     type "VARIES WITH WINDOWS" {
22         modifiers= Mod4;
23         level_name[Level1]= "Base";
24         level_name[Level2]= "Windows";
25     };
26 };
27