Unneeded keypad overlay compat modules
[xorg/xkeyboard-config] / types / iso9995
1 partial default xkb_types "default" {
2
3     // Definition for a key type which 
4     // can be used to implement ISO9995
5     // style level three shift
6     virtual_modifiers LevelThree;
7
8     type "THREE_LEVEL" {
9         modifiers = Shift+LevelThree;
10         map[None] = Level1;
11         map[Shift] = Level2;
12         map[LevelThree] = Level3;
13         map[Shift+LevelThree] = Level3;
14         level_name[Level1] = "Base";
15         level_name[Level2] = "Shift";
16         level_name[Level3] = "Level3";
17     };
18 };