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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
// $XdotOrg$
// based on a keyboard map from an 'xkb/symbols/pl' file
//
// $XFree86: xc/programs/xkbcomp/symbols/pl,v 1.3 2003/04/19 12:22:12 pascal Exp $
partial default alphanumeric_keys
xkb_symbols "basic" {
include "pc/latin"
name[Group1]="Poland";
key <AD03> { [ e, E, eogonek, Eogonek ] };
key <AD09> { [ o, O, oacute, Oacute ] };
key <AC01> { [ a, A, aogonek, Aogonek ] };
key <AC02> { [ s, S, sacute, Sacute ] };
key <AB01> { [ z, Z, zabovedot, Zabovedot ] };
key <AB02> { [ x, X, zacute, Zacute ] };
key <AB03> { [ c, C, cacute, Cacute ] };
key <AB06> { [ n, N, nacute, Nacute ] };
include "keypad(comma)"
include "level3(ralt_switch)"
};
partial alphanumeric_keys
xkb_symbols "qwertz" {
// Describes the differences between a very simple en_US
// keyboard and a very simple QWERTZ Polish keybaord
include "pc/latin(type3)"
name[Group1]="Poland - qwertz";
key <AE01> { [ 1, exclam, asciitilde, exclamdown ] };
key <AE02> { [ 2, quotedbl, dead_caron, oneeighth ] };
key <AE03> { [ 3, numbersign, dead_circumflex, sterling ] };
key <AE04> { [ 4, dollar, dead_breve, dollar ] };
key <AE05> { [ 5, percent, degree, threeeighths ] };
key <AE06> { [ 6, ampersand, dead_ogonek, fiveeighths ] };
key <AE07> { [ 7, slash, dead_grave, seveneighths ] };
key <AE08> { [ 8, parenleft, dead_abovedot, trademark ] };
key <AE09> { [ 9, parenright, dead_acute, plusminus ] };
key <AE10> { [ 0, equal, dead_doubleacute, degree ] };
key <AE11> { [ plus, question, dead_diaeresis, questiondown ] };
key <AE12> { [apostrophe, asterisk, dead_cedilla, dead_ogonek ] };
key <AD03> { [ e, E, EuroSign, cent ] };
key <AD11> { [ zabovedot, nacute, division, dead_abovering ] };
key <AD12> { [ sacute, cacute, multiply, dead_macron ] };
key <AC02> { [ s, S, dstroke, section ] };
key <AC03> { [ d, D, Dstroke, ETH ] };
key <AC08> { [ k, K, kra, ampersand ] };
key <AC09> { [ l, L, lstroke, Lstroke ] };
key <AC10> { [ lstroke, Lstroke, dollar, dead_doubleacute ] };
key <AC11> { [ aogonek, eogonek, ssharp, dead_caron ] };
key <TLDE> { [ abovedot, dead_ogonek, notsign, notsign ] };
key <BKSL> { [ oacute, zacute, dead_grave, dead_breve ] };
key <AB03> { [ c, C, cent, copyright ] };
key <AB10> { [ minus, underscore, dead_belowdot, dead_abovedot ] };
include "keypad(comma)"
include "level3(ralt_switch)"
};
// Polish Dvorak keymaps
// by Rafal Rzepecki <divide@users.sf.net>
// The base keymap "pl" places Polish quotes on quotemark key and
// moves the dead symbols from there to "1/!" key. If you are used to common
// dead keys placement, you could use "pl_altquotes"; in this layout
// dead keys remain in the old place, whereas Polish quotes are placed on the
// "1/!" key. If you do not use Polish quotes at all, you can use "pl_basic" map.
// Basic Polish keymap (without Polish quotes)
partial alphanumeric_keys
xkb_symbols "dvorak" {
include "pc/us(dvorak)"
name[Group1] = "Poland - Dvorak";
key <AD08> { [ c, C, cacute, Cacute ] };
key <AD10> { [ l, L, lstroke, Lstroke ] };
key <AC01> { [ a, A, aogonek, Aogonek ] };
key <AC02> { [ o, O, oacute, Oacute ] };
key <AC03> { [ e, E, eogonek, Eogonek ] };
key <AC09> { [ n, N, nacute, Nacute ] };
key <AC10> { [ s, S, sacute, Sacute ] };
key <AB09> { [ v, V, zacute, Zacute ] };
key <AB10> { [ z, Z, zabovedot, Zabovedot ] };
include "keypad(comma)"
// this to allow writing ALL CAPS with a Shift key
include "level3(ralt_switch)"
// use one of compose:* options to choose Multi_key, if you will,
// or layout +level3(ralt_switch_multikey) to revert standard behaviour
};
// Default Polish keymap with Polish quotes on quotemark key
partial alphanumeric_keys
xkb_symbols "dvorak_quotes" {
include "pc/pl(dvorak)"
name[Group1] = "Poland - Dvorak, Polish quotes on quotemark key";
key <AD01> { [ apostrophe, quotedbl, doublelowquotemark, rightdoublequotemark ] };
// Dead symbols moved to this key
key <AE01> { [ 1, exclam, dead_acute, dead_diaeresis ] };
};
// Polish keymap with Polish quotes on key "1/!"
partial alphanumeric_keys
xkb_symbols "dvorak_altquotes" {
include "pc/pl(dvorak)"
name[Group1] = "Poland - Dvorak, Polish quotes on key 1/!";
key <AE01> { [ 1, exclam, doublelowquotemark, rightdoublequotemark ] };
};
|