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
|
// $XFree86: xc/programs/xkbcomp/symbols/ee,v 1.2 2000/10/27 18:31:08 dawes Exp $
// Estonian XKB-keymap by Ville Hallik <ville@linux.ee>
partial default alphanumeric_keys
xkb_symbols "basic" {
// Describes the differences between a very simple en_US
// keyboard and a very simple Estonian keyboard
// This layout conforms to both EVS8:1993 and EVS8:2000 standards
name[Group1]= "Estonian";
key <TLDE> { [ dead_caron, dead_tilde ] };
key <AE02> { [ 2, quotedbl ],
[ at ] };
key <AE03> { [ 3, numbersign ],
[ sterling ] };
key <AE04> { [ 4, currency ],
[ dollar ] };
key <AE06> { [ 6, ampersand ] };
key <AE07> { [ 7, slash ],
[ braceleft ] };
key <AE08> { [ 8, parenleft ],
[ bracketleft ] };
key <AE09> { [ 9, parenright ],
[ bracketright ] };
key <AE10> { [ 0, equal ],
[ braceright ] };
key <AE11> { [ plus, question ],
[ backslash ] };
key <AE12> { [ dead_acute, dead_grave ],
[ quoteleft, quoteright ] };
key <AD03> { [ e, E ],
[ EuroSign ] };
key <AD11> { [ udiaeresis, Udiaeresis ] };
key <AD12> { [ otilde, Otilde ],
[ section ] };
key <AC02> { [ s, S ],
[ scaron, Scaron ] };
key <AC10> { [ odiaeresis, Odiaeresis ] };
key <AC11> { [ adiaeresis, Adiaeresis ],
[ asciicircum ] };
key <AB01> { [ z, Z ],
[ zcaron, Zcaron ] };
key <AB08> { [ comma, semicolon ],
[ less ] };
key <AB09> { [ period, colon ],
[ greater ] };
key <AB10> { [ minus, underscore ] };
key <BKSL> { [ apostrophe, asterisk ],
[ onehalf ] };
key <LSGT> { [ less, greater ],
[ bar ] };
// End alphanumeric section
// begin modifier mappings
modifier_map Shift { Shift_L };
modifier_map Lock { Caps_Lock };
modifier_map Control{ Control_L };
modifier_map Mod3 { Mode_switch };
};
partial alphanumeric_keys
xkb_symbols "Sundeadkeys" {
include "ee(basic)" // for consistent naming
};
partial alphanumeric_keys
xkb_symbols "sundeadkeys" {
include "ee(Sundeadkeys)" // for consistent naming
};
partial alphanumeric_keys
xkb_symbols "nodeadkeys" {
// Modifies the basic Estonian layout to eliminate all dead keys
include "ee(basic)"
key <TLDE> { [ asciicircum, asciitilde ] };
key <AE12> { [ apostrophe, grave ] };
};
|