Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Currently support keyboard layouts:
- ASSET
- CARPALX_QFMLWY
- QWERTY
- QWERTZ
- DVORAK
- DVORAK PROGRAMMER
- COLEMAK
Expand Down
Binary file added app/img/QWERTZ.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ <h2>Customize it</h2>
<option value="MINIMAK_12K">Minimak 12-Keys</option>
<option value="NORMAN">Norman</option>
<option value="QWERTY" selected>QWERTY</option>
<option value="QWERTZ">QWERTZ</option>
<option value="WORKMAN">Workman</option>
</select>
<!-- <div id="apply" class="button">
Expand Down
71 changes: 71 additions & 0 deletions app/keyboard-layouts.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,77 @@ app.LAYOUTS = {
"?": [644, 275, 70, 275],
" ": [500, 300]
},
QWERTZ: {
"~": [35, 120, 70, 275],
"`": [35, 120],
"1": [90, 120],
"!": [90, 120, 70, 275],
"2": [144, 120],
"@": [144, 120, 70, 275],
"3": [198, 120],
"#": [198, 120, 70, 275],
"4": [253, 120],
"$": [253, 120, 70, 275],
"5": [307, 120],
"%": [307, 120, 70, 275],
"6": [361, 120],
"^": [361, 120, 70, 275],
"7": [415, 120],
"&": [415, 120, 70, 275],
"8": [469, 120],
"*": [469, 120, 70, 275],
"9": [524, 120],
"(": [524, 120, 70, 275],
"0": [579, 120],
")": [579, 120, 70, 275],
"-": [630, 120],
"_": [630, 120, 70, 275],
"+": [685, 120, 70, 275],
"=": [685, 120],
"Q": [115, 174],
"W": [169, 174],
"E": [224, 174],
"R": [278, 174],
"T": [332, 174],
"Y": [158, 275],
"U": [440, 174],
"I": [494, 174],
"O": [548, 174],
"P": [602, 174],
"[": [656, 174],
"{": [656, 174, 70, 275],
"]": [710, 174],
"}": [710, 174, 70, 275],
"\\": [764, 174],
"|": [764, 174, 70, 275],
"A": [130, 225],
"S": [184, 225],
"D": [238, 225],
"F": [292, 225],
"G": [346, 225],
"H": [400, 225],
"J": [454, 225],
"K": [508, 225],
"L": [562, 225],
";": [616, 225],
":": [616, 225, 70, 275],
"'": [670, 225],
"\"": [670, 225, 70, 275],
"Z": [386, 174],
"X": [212, 275],
"C": [266, 275],
"V": [320, 275],
"B": [374, 275],
"N": [428, 275],
"M": [482, 275],
",": [536, 275],
"<": [536, 275, 70, 275],
".": [590, 275],
">": [590, 275, 70, 275],
"/": [644, 275],
"?": [644, 275, 70, 275],
" ": [500, 300]
},
DVORAK: {
"~": [35, 120, 70, 275],
"`": [35, 120],
Expand Down