blob: 75007c58677a81dbe402a3545dae09cc5309562f (
plain)
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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Thank you! – DomeKey</title>
<meta name="description" content="DomeKey gives you the power to remap your headphone buttons to any action you can think of. Define mappings in text using a Vim-like configuration language." />
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="assets/styles.css" />
</head>
<body>
<div class="content">
<header>
<a href="/">
<h1>DomeKey</h1>
<img src="assets/logo.svg" alt="DomeKey logo" />
</a>
</header>
<p class="font-size-1.52 color-maroon">
Control your computer with a pair of headphones
</p>
<p class="text-center font-size-2.5">
Thanks so much for buying DomeKey!
</p>
<form method="post" action="/license/download">
<input type="hidden" name="name" value="{name}" />
<input type="hidden" name="email" value="{email}" />
<input type="hidden" name="secret" value="{secret}" />
<button
type="submit"
class="button button-magenta
display-block margin-left-auto margin-right-auto
margin-top-2 margin-bottom-2">
Download your license
</button>
</form>
<p>
Install DomeKey with:
</p>
<div class="code code-block">
<span class="color-murky-pond">$</span> brew install teddywing/DomeKey/dome-key
</div>
<p>
Add your license by running:
</p>
<div class="code code-block">
<span class="color-murky-pond">$</span>
dome-key --license PATH/TO/dome-key-license.plist
</div>
<p>
If you need any help,
<a href="mailto:inquiry@domekey.teddywing.com">let me know</a>.
</p>
<p>
Also, check out the
<a href="https://github.com/teddywing/DomeKey">source code</a>
if you’re interested.
</p>
</div>
</body>
</html>
|