-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (99 loc) · 2.59 KB
/
index.html
File metadata and controls
103 lines (99 loc) · 2.59 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>One Dead Key</title>
<meta name="viewport" content="width=device-width">
<link type="image/svg+xml" rel="icon" href="favicon.svg" sizes="any">
<style>
:root {
color-scheme: light dark;
--accent: #4493f8;
}
html {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
body {
margin: 1em auto;
max-width: 42em;
width: 100%;
font-family: sans-serif;
line-height: 2em;
}
header {
text-align: center;
}
h1 {
margin-bottom: 0;
}
h1 + p {
margin-top: 0;
font-size: 1.2em;
}
h2 {
color: var(--accent);
border-bottom: 1px dotted var(--accent);
margin-top: 1.5em;
margin-bottom: 0;
}
h2 + p {
margin-top: 0;
}
svg {
width: 100%;
}
a {
color: var(--accent);
}
</style>
</head>
<body>
<header>
<h1>One Dead Key</h1>
<p>Changing the world, one keyboard at a time.</p>
</header>
<h2>QuackMatrix</h2>
<p>Sane keyboards.</p>
<ul>
<li><a href="https://onedeadkey.github.io/quacken">Quacken</a>:
libre, ergonomic, <em>polymorphic</em> (30-42 keys)
</li>
<li><a href="https://onedeadkey.github.io/qmx2040">QMx 2040</a>:
an extremely normal keyboard (60%)
</li>
</ul>
<h2>Ækeynox</h2>
<p>Keymaps with bullet-proof <abbr title="home row mods">HRM</abbr>s
and first-class support for non-US layouts.</p>
<ul>
<li><a href="https://github.com/OneDeadKey/arsenik">Arsenik</a>:
an ergonomic keymap for ANSI and ISO keyboards
</li>
<li><a href="https://onedeadkey.github.io/selenium">Selenium</a>:
an Arsenik variant for split keyboards, 34/36/42 keys
</li>
<li><a href="https://github.com/OneDeadKey/zmk-config-aekeynox">Ækeynox ZMK</a>:
reference ZMK implementation (Selenium)
</li>
<li><a href="https://github.com/OneDeadKey/qmk-config-aekeynox">Ækeynox QMK</a>:
reference QMK implementation (Arsenik and Selenium)
</li>
</ul>
<h2>Layouts</h2>
<p>Keyboard layouts, and tools to create them.</p>
<ul>
<li><a href="https://github.com/OneDeadKey/kalamine">kalamine</a>:
cross-platform keyboard layout maker
</li>
<li><a href="https://github.com/OneDeadKey/1dk">QWERTY-1dk</a>:
QWERTY made international — for real
</li>
<li><a href="https://onedeadkey.github.io/x-keyboard">x‑keyboard</a>:
zero-dependency web component to display and emulate keyboard layouts
</li>
</ul>
</body>
</html>