diff options
author | svu <svu> | 2004-04-24 00:28:51 +0000 |
---|---|---|
committer | svu <svu> | 2004-04-24 00:28:51 +0000 |
commit | 8e1e2d8195a0deb742464821a463322a29bdca08 (patch) | |
tree | 83d9877bbf8b0875909713dc6a5a2f881d33b084 /symbols/cz | |
parent | de82d2e5c50cf0cb674367d72cda30dee0ad8622 (diff) |
a lot of layouts cleaned up - but way way more to go
Diffstat (limited to 'symbols/cz')
-rw-r--r-- | symbols/cz | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -81,3 +81,23 @@ xkb_symbols "bksl" { key <BKSL> { [ backslash, bar, slash, NoSymbol ] }; }; + +partial alphanumeric_keys +xkb_symbols "qwerty" { + + // This layout should work exactly as a cz with the exception + // of 'Z' and 'Y' keys, which are in the qwerty style (ie. swapped). + // 2001 by Kamil Toman <ktoman@email.cz> + + include "cz(basic)" + + key <AB01> { [ z, Z, degree, NoSymbol ] }; + key <AD06> { [ y, Y, NoSymbol, NoSymbol ] }; +}; + +// Use <BKSL> instead of <LSGT> (useful for keyboard without <LSGT> key) +xkb_symbols "qwerty_bksl" { + include "cz(qwerty)" + + key <BKSL> { [ backslash, bar, slash, NoSymbol ] }; +}; |