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
|
// based on a keyboard map from an 'xkb/symbols/no' file
//
// $XFree86: xc/programs/xkbcomp/symbols/no,v 1.3 2002/12/19 01:07:56 dawes Exp $
partial alphanumeric_keys
xkb_symbols "basic" {
// Describes the differences between a very simple en_US
// keyboard and a Norwegian keyboard with dead key support
// and all of ISO-8859-1 characters available.
include "latin(type2)"
name[Group1]="Norwegian";
key <AE11> { [ plus, question, plusminus, questiondown ] };
key <AE12> { [ backslash, dead_grave, dead_acute, notsign ] };
key <AC10> { [ oslash, Ooblique, dead_acute, dead_doubleacute ] };
key <AC11> { [ ae, AE, dead_circumflex, dead_caron] };
key <TLDE> { [ bar, section, brokenbar, paragraph ] };
key <BKSL> { [apostrophe, asterisk, dead_doubleacute, multiply ] };
key <LSGT> { [ less, greater, onehalf, threequarters] };
key <KPDL> { [ KP_Delete, KP_Separator ] };
include "level3(ralt_switch_multikey)"
};
partial alphanumeric_keys
xkb_symbols "nodeadkeys" {
// Modifies the basic Norwegian layout to eliminate dead keys
include "no(basic)"
key <AE12> { [ backslash, grave, acute, ogonek ] };
key <AD12> { [ diaeresis, asciicircum, asciitilde, macron ] };
key <AC10> { [ oslash, Ooblique, acute, doubleacute ] };
key <AC11> { [ ae, AE, asciicircum, caron ] };
key <AB08> { [ comma, semicolon, cedilla, ogonek ] };
key <AB09> { [ period, colon, periodcentered, abovedot ] };
};
// Norwegian Dvorak
partial alphanumeric_keys
xkb_symbols "dvorak" {
include "us(dvorak)"
key <TLDE> { [ bar, section, brokenbar, paragraph ] };
key <AE01> { [ 1, exclam, exclamdown, onesuperior ] };
key <AE02> { [ 2, quotedbl, at, twosuperior ] };
key <AE03> { [ 3, numbersign, sterling, threesuperior ] };
key <AE04> { [ 4, dollar, currency,onequarter ] };
key <AE05> { [ 5, percent, onehalf, onehalf ] };
key <AE06> { [ 6, ampersand, threequarters, threequarters ] };
key <AE07> { [ 7, slash, braceleft, division ] };
key <AE08> { [ 8, parenleft, bracketleft ] };
key <AE09> { [ 9, parenright, bracketright ] };
key <AE10> { [ 0, equal, braceright ] };
key <AE11> { [ plus, question, plusminus, questiondown ] };
key <AE12> { [ backslash, grave, dead_acute, dead_grave ] };
key <AD01> { [ aring, Aring, braceright, bracketright ] };
key <AD02> { [ comma, semicolon, dead_cedilla, cedilla ] };
key <AD03> { [ period, colon, periodcentered ] };
key <AD04> { [ p, P, thorn, THORN ] };
key <AD05> { [ y, Y, yen ] };
key <AD06> { [ f, F, ordfeminine ] };
key <AD08> { [ c, C, ccedilla, copyright ] };
key <AD09> { [ r, R, registered ] };
key <AD11> { [ apostrophe, asterisk, dead_circumflex, acute ] };
key <AD12> { [ asciitilde, asciicircum, dead_diaeresis, dead_tilde ] };
key <AC03> { [ e, E, EuroSign, cent ] };
key <AC05> { [ i, I, idotless, Iabovedot] };
key <AC06> { [ d, D, eth, ETH ] };
key <AC10> { [ s, S, ssharp ] };
key <AC11> { [ minus, underscore, hyphen, diaeresis] };
key <AB01> { [ ae, AE, braceleft, bracketleft] };
key <AB05> { [ x, X, multiply ] };
key <AB07> { [ m, M, mu ] };
key <BKSL> { [ less, greater, guillemotleft, guillemotright ] };
key <SPCE> { [ space, space, nobreakspace, nobreakspace] };
key <LSGT> { [ oslash, Ooblique, bar, backslash ] };
};
|