-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c1347d
commit 3cf6149
Showing
13 changed files
with
693 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
releases/kebb_1.1_64bit/DEBIAN/control → releases/kebb_1.2_64bit/DEBIAN/control
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Package: kebb | ||
Version: 1.1 | ||
Version: 1.2 | ||
Section: utils | ||
Priority: optional | ||
Architecture: amd64 | ||
|
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
// Types used: 0,1,2,3,4,5,6,7 | ||
|
||
// sym shift alt altgr dead(kebb nb) is dead type 0/Ignored | ||
// 1/Letter | ||
// 2/Letter cap | ||
// 3/Number | ||
// 4/Symbol | ||
// 5/Symbol plus | ||
// 6/Extra | ||
// 7/Extra cap | ||
|
||
a, 97, 0, 0, 0, 0, 0, 1, | ||
b, 98, 0, 0, 0, 0, 0, 1, | ||
c, 99, 0, 0, 0, 0, 0, 1, | ||
d, 100, 0, 0, 0, 0, 0, 1, | ||
e, 101, 0, 0, 0, 0, 0, 1, | ||
f, 102, 0, 0, 0, 0, 0, 1, | ||
g, 103, 0, 0, 0, 0, 0, 1, | ||
h, 104, 0, 0, 0, 0, 0, 1, | ||
i, 105, 0, 0, 0, 0, 0, 1, | ||
j, 106, 0, 0, 0, 0, 0, 1, | ||
k, 107, 0, 0, 0, 0, 0, 1, | ||
l, 108, 0, 0, 0, 0, 0, 1, | ||
m, 109, 0, 0, 0, 0, 0, 1, | ||
n, 110, 0, 0, 0, 0, 0, 1, | ||
o, 111, 0, 0, 0, 0, 0, 1, | ||
p, 112, 0, 0, 0, 0, 0, 1, | ||
q, 113, 0, 0, 0, 0, 0, 1, | ||
r, 114, 0, 0, 0, 0, 0, 1, | ||
s, 115, 0, 0, 0, 0, 0, 1, | ||
t, 116, 0, 0, 0, 0, 0, 1, | ||
u, 117, 0, 0, 0, 0, 0, 1, | ||
v, 118, 0, 0, 0, 0, 0, 1, | ||
w, 119, 0, 0, 0, 0, 0, 1, | ||
x, 120, 0, 0, 0, 0, 0, 1, | ||
y, 121, 0, 0, 0, 0, 0, 1, | ||
z, 122, 0, 0, 0, 0, 0, 1, | ||
|
||
// sym shift alt altgr dead(kebb nb) is dead type | ||
A, 97, 1, 0, 0, 0, 0, 2, | ||
B, 98, 1, 0, 0, 0, 0, 2, | ||
C, 99, 1, 0, 0, 0, 0, 2, | ||
D, 100, 1, 0, 0, 0, 0, 2, | ||
E, 101, 1, 0, 0, 0, 0, 2, | ||
F, 102, 1, 0, 0, 0, 0, 2, | ||
G, 103, 1, 0, 0, 0, 0, 2, | ||
H, 104, 1, 0, 0, 0, 0, 2, | ||
I, 105, 1, 0, 0, 0, 0, 2, | ||
J, 106, 1, 0, 0, 0, 0, 2, | ||
K, 107, 1, 0, 0, 0, 0, 2, | ||
L, 108, 1, 0, 0, 0, 0, 2, | ||
M, 109, 1, 0, 0, 0, 0, 2, | ||
N, 110, 1, 0, 0, 0, 0, 2, | ||
O, 111, 1, 0, 0, 0, 0, 2, | ||
P, 112, 1, 0, 0, 0, 0, 2, | ||
Q, 113, 1, 0, 0, 0, 0, 2, | ||
R, 114, 1, 0, 0, 0, 0, 2, | ||
S, 115, 1, 0, 0, 0, 0, 2, | ||
T, 116, 1, 0, 0, 0, 0, 2, | ||
U, 117, 1, 0, 0, 0, 0, 2, | ||
V, 118, 1, 0, 0, 0, 0, 2, | ||
W, 119, 1, 0, 0, 0, 0, 2, | ||
X, 120, 1, 0, 0, 0, 0, 2, | ||
Y, 121, 1, 0, 0, 0, 0, 2, | ||
Z, 122, 1, 0, 0, 0, 0, 2, | ||
|
||
// sym shift alt altgr dead(kebb nb) is dead type | ||
0, 48, 1, 0, 0, 0, 0, 3, | ||
1, 49, 1, 0, 0, 0, 0, 3, | ||
2, 50, 1, 0, 0, 0, 0, 3, | ||
3, 51, 1, 0, 0, 0, 0, 3, | ||
4, 52, 1, 0, 0, 0, 0, 3, | ||
5, 53, 1, 0, 0, 0, 0, 3, | ||
6, 54, 1, 0, 0, 0, 0, 3, | ||
7, 55, 1, 0, 0, 0, 0, 3, | ||
8, 56, 1, 0, 0, 0, 0, 3, | ||
9, 57, 1, 0, 0, 0, 0, 3, | ||
|
||
// sym shift alt altgr dead(kebb nb) is dead type | ||
!, 33, 0, 0, 0, 0, 0, 4, | ||
', 52, 0, 0, 0, 0, 0, 4, | ||
#, 51, 0, 0, 1, 0, 0, 4, | ||
%, 249, 1, 0, 0, 0, 0, 4, | ||
$, 36, 0, 0, 0, 0, 0, 4, | ||
&, 49, 0, 0, 0, 0, 0, 4, | ||
", 51, 0, 0, 0, 0, 0, 4, | ||
(, 53, 0, 0, 0, 0, 0, 4, | ||
), 41, 0, 0, 0, 0, 0, 4, | ||
`, 55, 0, 0, 1, 0, 0, 4, | ||
*, 42, 0, 0, 0, 0, 0, 4, | ||
+, 61, 1, 0, 0, 0, 0, 4, | ||
comma, 44, 0, 0, 0, 0, 0, 4, | ||
-, 54, 0, 0, 0, 0, 0, 4, | ||
., 59, 1, 0, 0, 0, 0, 4, | ||
/, 58, 1, 0, 0, 0, 0, 4, | ||
:, 58, 0, 0, 0, 0, 0, 4, | ||
;, 59, 0, 0, 0, 0, 0, 4, | ||
<, 60, 0, 0, 0, 0, 0, 4, | ||
=, 61, 0, 0, 0, 0, 0, 4, | ||
>, 60, 1, 0, 0, 0, 0, 4, | ||
?, 44, 1, 0, 0, 0, 0, 4, | ||
@, 48, 0, 0, 1, 0, 0, 4, | ||
[, 53, 0, 0, 1, 0, 0, 4, | ||
\, 56, 0, 0, 1, 0, 0, 4, | ||
], 41, 0, 0, 1, 0, 0, 4, | ||
^, 57, 0, 0, 1, 0, 0, 4, | ||
_, 56, 0, 0, 0, 0, 0, 4, | ||
~, 50, 0, 0, 1, 0, 0, 4, | ||
{, 52, 0, 0, 1, 0, 0, 4, | ||
}, 61, 0, 0, 1, 0, 0, 4, | ||
|, 54, 0, 0, 1, 0, 0, 4, | ||
|
||
// sym shift alt altgr dead(kebb nb) is dead type | ||
é, 50, 0, 0, 0, 0, 0, 5, | ||
è, 55, 0, 0, 0, 0, 0, 5, | ||
ç, 57, 0, 0, 0, 0, 0, 5, | ||
à, 48, 0, 0, 0, 0, 0, 5, | ||
ù, 249, 0, 0, 0, 0, 0, 5, | ||
£, 36, 1, 0, 0, 0, 0, 5, | ||
€, 101, 0, 0, 1, 0, 0, 5, | ||
¤, 36, 0, 0, 1, 0, 0, 5, | ||
µ, 42, 1, 0, 0, 0, 0, 5, | ||
§, 33, 1, 0, 0, 0, 0, 5, | ||
², 178, 0, 0, 0, 0, 0, 5, | ||
°, 41, 1, 0, 0, 0, 0, 5, | ||
|
||
// sym shift alt altgr dead(kebb nb) is dead type | ||
æ, 97, 0, 0, 1, 0, 0, 6, | ||
Æ, 97, 1, 0, 1, 0, 0, 7, | ||
|
||
// sym shift alt altgr dead(kebb nb) is dead type | ||
^(dead), 1073741824, 0, 0, 0, 0, 10, 0, | ||
^, 1073741824, 0, 0, 0, 10, 0, 0, | ||
|
||
â, 97, 0, 0, 0, 10, 0, 6 | ||
ê, 101, 0, 0, 0, 10, 0, 6, | ||
î, 105, 0, 0, 0, 10, 0, 6, | ||
ô, 111, 0, 0, 0, 10, 0, 6, | ||
û, 117, 0, 0, 0, 10, 0, 6, | ||
|
||
Â, 97, 1, 0, 0, 10, 0, 7, | ||
Ê, 101, 1, 0, 0, 10, 0, 7, | ||
Î, 105, 1, 0, 0, 10, 0, 7, | ||
Ô, 111, 1, 0, 0, 10, 0, 7, | ||
Û, 117, 1, 0, 0, 10, 0, 7, | ||
|
||
// sym shift alt altgr dead(kebb nb) is dead type | ||
`(dead), 42, 0, 0, 1, 0, 11, 0, | ||
`, 42, 0, 0, 1, 11, 0, 0, | ||
|
||
à, 97, 0, 0, 0, 11, 0, 6, | ||
è, 101, 0, 0, 0, 11, 0, 6, | ||
ù, 117, 0, 0, 0, 11, 0, 6, | ||
|
||
À, 97, 1, 0, 0, 11, 0, 7, | ||
È, 101, 1, 0, 0, 11, 0, 7, | ||
Ù, 117, 1, 0, 0, 11, 0, 7, | ||
|
||
// sym shift alt altgr dead(kebb nb) is dead type | ||
¨(dead), 1073741824, 1, 0, 0, 0, 12, 0, | ||
|
||
ë, 101, 0, 0, 0, 12, 0, 6, | ||
ï, 105, 0, 0, 0, 12, 0, 6, | ||
ü, 117, 0, 0, 0, 12, 0, 6, | ||
|
||
Ë, 101, 1, 0, 0, 12, 0, 7, | ||
Ï, 105, 1, 0, 0, 12, 0, 7, | ||
Ü, 117, 1, 0, 0, 12, 0, 7, |
Oops, something went wrong.