Branch
Hash :
fcc95275
Author :
Date :
2025-10-17T11:56:48
xkbcomp: Rename fallback key type to ONE_LEVEL This is the name of this canonical key type in the XKB protocol.
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
xkb_keymap {
xkb_keycodes {
minimum = 1;
maximum = 255;
<> = 1;
indicator 1 = "1";
indicator 2 = "2";
};
xkb_types {
type "ONE_LEVEL" {
modifiers= none;
};
};
xkb_compatibility {
interpret.useModMapMods= AnyLevel;
interpret.repeat= False;
interpret a+AnyOfOrNone(all) {
action= SetGroup(group=1);
};
interpret b+AnyOfOrNone(all) {
action= SetGroup(group=-2);
};
interpret c+AnyOfOrNone(all) {
action= SetGroup(group=+3);
};
indicator "1" {
groups= 0x08;
};
indicator "2" {
groups= 0xfffffffe;
};
};
xkb_symbols {
name[1]="1";
name[2]="2";
name[3]="3";
name[4]="4";
key <> {
groupsRedirect= 4,
symbols[1]= [ a ],
symbols[2]= [ b ],
symbols[3]= [ c ],
symbols[4]= [ d ]
};
};
};