| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- xkb_keymap {
- xkb_keycodes {
- minimum = 8;
- maximum = 255;
- <LALT> = 64;
- <RALT> = 108;
- };
- xkb_types {
- virtual_modifiers Alt=Mod1,LevelThree=Mod5;
- type "ONE_LEVEL" {
- modifiers= none;
- };
- };
- xkb_compatibility {
- virtual_modifiers Alt=Mod1,LevelThree=Mod5;
- interpret.useModMapMods= AnyLevel;
- interpret.repeat= False;
- interpret Alt_L+AnyOf(all) {
- virtualModifier= Alt;
- action= SetMods(modifiers=modMapMods,clearLocks);
- };
- interpret ISO_Level3_Shift+AnyOf(all) {
- virtualModifier= LevelThree;
- useModMapMods=level1;
- action= SetMods(modifiers=LevelThree,clearLocks);
- };
- };
- xkb_symbols {
- name[1]="6";
- key <LALT> {
- type[1]= "ONE_LEVEL",
- repeat= No,
- virtualMods= Alt,
- groupsRedirect= 1,
- symbols[1]= [ b ],
- actions[1]= [ NoAction() ]
- };
- key <RALT> {
- type[1]= "ONE_LEVEL",
- repeat= No,
- virtualMods= LevelThree,
- groupsRedirect= 1,
- symbols[1]= [ e ],
- actions[1]= [ NoAction() ]
- };
- modifier_map Mod1 { <LALT> };
- modifier_map Mod5 { <RALT> };
- };
- };
|