Guest User

Untitled

a guest
May 11th, 2013
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.02 KB | None | 0 0
  1. // Polish Dvorak keymaps - math friendly
  2. // by Michal Rawlik <[email protected]>
  3.  
  4. // Basic Polish keymap (without Polish quotes)
  5. partial alphanumeric_keys
  6. xkb_symbols "dvorak_math" {
  7.     include "pl(dvorak)"
  8.    
  9.     name[Group1] = "Poland - Dvorak, math friendly";
  10.  
  11.     key <AD01> { [         apostrophe,    quotedbl,     parenleft,      dead_diaeresis  ] };
  12.     key <AD02> { [         comma,         less,         parenright,     Ccedilla        ] };
  13.     key <AD03> { [         period,        greater,      bracketleft,    dead_caron      ] };
  14.     key <AD04> { [         p,             P,            bracketright,   Odiaeresis      ] };
  15.     key <AD05> { [         y,             Y,            braceleft,       Udiaeresis     ] };
  16.     key <AD06> { [         f,             F,            braceright,      slash          ] };
  17.     key <AC04> { [         u,             U,            plus,            degree         ] };
  18.     key <AC05> { [         i,             I,            minus,           Iacute         ] };
  19.     key <AC07> { [         h,             H,            braceleft                       ] };
  20.     key <AC08> { [         t,             T,            braceright                      ] }
  21. ;
  22.     key <AB01> { [         z,             Z,            zabovedot,       Zabovedot      ] };
  23.     key <AB02> { [         q,             Q,            zacute,          Zacute         ] };
  24.     key <AB03> { [         j,             J,            asterisk,        Adiaeresis     ] };
  25.     key <AB04> { [         k,             K,            slash,           OE             ] };
  26.     key <AB05> { [         x,             X,            equal,           equal          ] };
  27.     key <AB10> { [         semicolon,     colon,        backslash,       degree         ] };
  28.  
  29.  
  30.     include "kpdl(comma)"
  31.  
  32.     // this to allow writing ALL CAPS with a Shift key
  33.     include "level3(ralt_switch)"
  34.  
  35.     // use one of compose:* options to choose Multi_key, if you will,
  36.     // or layout +level3(ralt_switch_multikey) to revert standard behaviour
  37. };
Advertisement
Add Comment
Please, Sign In to add comment