Home | History | Annotate | Download | only in compat
      1 default partial xkb_compatibility "pc" {
      2 
      3     // Sets the "Alt" virtual modifier.
      4 
      5     virtual_modifiers  Alt;
      6 
      7     setMods.clearLocks= True;
      8     interpret Alt_L+Any {
      9 	virtualModifier= Alt;
     10 	action = SetMods(modifiers=modMapMods);
     11     };
     12 
     13     interpret Alt_R+Any {
     14 	virtualModifier= Alt;
     15 	action = SetMods(modifiers=modMapMods);
     16     };
     17 };
     18