level3-v2 933 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. partial xkb_compatibility "latchOnPress" {
  2. virtual_modifiers LevelThree;
  3. interpret.repeat= False;
  4. setMods.clearLocks= True;
  5. latchMods.clearLocks= True;
  6. latchMods.latchToLock= True;
  7. interpret ISO_Level3_Latch+Any {
  8. useModMapMods= level1;
  9. virtualModifier= LevelThree;
  10. action= LatchMods(modifiers=LevelThree, latchOnPress);
  11. };
  12. interpret ISO_Level3_Latch {
  13. action= LatchMods(modifiers=LevelThree, latchOnPress);
  14. };
  15. };
  16. partial xkb_compatibility "latchOnRelease" {
  17. virtual_modifiers LevelThree;
  18. interpret.repeat= False;
  19. setMods.clearLocks= True;
  20. latchMods.clearLocks= True;
  21. latchMods.latchToLock= True;
  22. interpret ISO_Level3_Latch+Any {
  23. useModMapMods= level1;
  24. virtualModifier= LevelThree;
  25. action= LatchMods(modifiers=LevelThree, latchOnPress=false);
  26. };
  27. interpret ISO_Level3_Latch {
  28. action= LatchMods(modifiers=LevelThree, latchOnPress=false);
  29. };
  30. };