first feed-in of the layouts. The revolution is coming
[xorg/xkeyboard-config] / types / pc
1 // $Xorg: pc,v 1.3 2000/08/17 19:54:48 cpqbld Exp $
2 // 
3
4 partial default xkb_types "default" {
5
6     // Some types that are necessary
7     // for a full implementation of
8     // a PC compatible keyboard.
9     virtual_modifiers Alt;
10
11     type "PC_BREAK" {
12         modifiers = Control;
13         map[None] = Level1;
14         map[Control] = Level2;
15         level_name[Level1] = "Base";
16         level_name[Level2] = "Control";
17     };
18
19     type "PC_SYSRQ" {
20         modifiers = Alt;
21         map[None] = Level1;
22         map[Alt] = Level2;
23         level_name[Level1] = "Base";
24         level_name[Level2] = "Alt";
25     };
26
27     type "CTRL+ALT" {
28         modifiers = Control+Alt;
29         map[Control+Alt] = Level2;
30         level_name[Level1] = "Base";
31         level_name[Level2] = "Ctrl+Alt";
32     };
33 };