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
|
partial xkb_compatibility "latchOnPress" {
virtual_modifiers LevelThree;
interpret.repeat= False;
setMods.clearLocks= True;
latchMods.clearLocks= True;
latchMods.latchToLock= True;
interpret ISO_Level3_Latch+Any {
useModMapMods= level1;
virtualModifier= LevelThree;
action= LatchMods(modifiers=LevelThree, latchOnPress);
};
interpret ISO_Level3_Latch {
action= LatchMods(modifiers=LevelThree, latchOnPress);
};
};
partial xkb_compatibility "latchOnRelease" {
virtual_modifiers LevelThree;
interpret.repeat= False;
setMods.clearLocks= True;
latchMods.clearLocks= True;
latchMods.latchToLock= True;
interpret ISO_Level3_Latch+Any {
useModMapMods= level1;
virtualModifier= LevelThree;
action= LatchMods(modifiers=LevelThree, latchOnPress=false);
};
interpret ISO_Level3_Latch {
action= LatchMods(modifiers=LevelThree, latchOnPress=false);
};
};
|