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
xkb_keymap {
xkb_keycodes {
minimum = 8;
maximum = 255;
};
xkb_types {
type "ONE_LEVEL" {
modifiers= none;
};
};
xkb_compatibility {
interpret.useModMapMods= AnyLevel;
interpret.repeat= False;
interpret 0x00000001+AnyOfOrNone(all) {
action= NoAction();
};
interpret 0x0000000b+AnyOfOrNone(all) {
action= NoAction();
};
interpret Shift_L+AnyOfOrNone(all) {
action= NoAction();
};
interpret a+AnyOfOrNone(all) {
action= NoAction();
};
interpret adiaeresis+AnyOfOrNone(all) {
action= NoAction();
};
interpret U2728+AnyOfOrNone(all) {
action= NoAction();
};
interpret U1F3BA+AnyOfOrNone(all) {
action= NoAction();
};
};
xkb_symbols {
};
};