blob: 5671f426b42f33ac82e3e59ad9d88ecb24b6da10 (
plain)
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
|
// $Xorg: pc,v 1.3 2000/08/17 19:54:48 cpqbld Exp $
//
partial default xkb_types "default" {
// Some types that are necessary
// for a full implementation of
// a PC compatible keyboard.
virtual_modifiers Alt;
type "PC_BREAK" {
modifiers = Control;
map[None] = Level1;
map[Control] = Level2;
level_name[Level1] = "Base";
level_name[Level2] = "Control";
};
type "PC_SYSRQ" {
modifiers = Alt;
map[None] = Level1;
map[Alt] = Level2;
level_name[Level1] = "Base";
level_name[Level2] = "Alt";
};
type "CTRL+ALT" {
modifiers = Control+Alt;
map[Control+Alt] = Level2;
level_name[Level1] = "Base";
level_name[Level2] = "Ctrl+Alt";
};
};
|