mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-06 06:37:35 +08:00
feat(layout): add handsdown neu, and neu inverted (@aleksiye) (#6921)
This commit is contained in:
parent
58e6a91fde
commit
12f78e18cb
3 changed files with 126 additions and 0 deletions
62
frontend/static/layouts/handsdown_neu.json
Normal file
62
frontend/static/layouts/handsdown_neu.json
Normal file
|
@ -0,0 +1,62 @@
|
|||
{
|
||||
"keymapShowTopRow": false,
|
||||
"type": "ansi",
|
||||
"keys": {
|
||||
"row1": [
|
||||
["`", "~"],
|
||||
["1", "!"],
|
||||
["2", "@"],
|
||||
["3", "#"],
|
||||
["4", "$"],
|
||||
["5", "%"],
|
||||
["6", "^"],
|
||||
["7", "&"],
|
||||
["8", "?"],
|
||||
["9", "<"],
|
||||
["0", ">"],
|
||||
["=", "_"],
|
||||
["\\", "|"]
|
||||
],
|
||||
"row2": [
|
||||
["w", "W"],
|
||||
["f", "F"],
|
||||
["m", "M"],
|
||||
["p", "P"],
|
||||
["v", "V"],
|
||||
["/", "*"],
|
||||
[".", ":"],
|
||||
["q", "Q"],
|
||||
["\"", "["],
|
||||
["'", "]"],
|
||||
["z", "Z"],
|
||||
["(", "{"],
|
||||
[")", "}"]
|
||||
],
|
||||
"row3": [
|
||||
["r", "R"],
|
||||
["s", "S"],
|
||||
["n", "N"],
|
||||
["t", "T"],
|
||||
["b", "B"],
|
||||
[",", ";"],
|
||||
["a", "A"],
|
||||
["e", "E"],
|
||||
["i", "I"],
|
||||
["h", "H"],
|
||||
["j", "J"]
|
||||
],
|
||||
"row4": [
|
||||
["x", "X"],
|
||||
["c", "C"],
|
||||
["l", "L"],
|
||||
["d", "D"],
|
||||
["g", "G"],
|
||||
["-", "+"],
|
||||
["u", "U"],
|
||||
["o", "O"],
|
||||
["y", "Y"],
|
||||
["k", "K"]
|
||||
],
|
||||
"row5": [[" "]]
|
||||
}
|
||||
}
|
62
frontend/static/layouts/handsdown_neu_inverted.json
Normal file
62
frontend/static/layouts/handsdown_neu_inverted.json
Normal file
|
@ -0,0 +1,62 @@
|
|||
{
|
||||
"keymapShowTopRow": false,
|
||||
"type": "ansi",
|
||||
"keys": {
|
||||
"row1": [
|
||||
["`", "~"],
|
||||
["1", "!"],
|
||||
["2", "@"],
|
||||
["3", "#"],
|
||||
["4", "$"],
|
||||
["5", "%"],
|
||||
["6", "^"],
|
||||
["7", "&"],
|
||||
["8", "?"],
|
||||
["9", "<"],
|
||||
["0", ">"],
|
||||
["=", "_"],
|
||||
["\\", "|"]
|
||||
],
|
||||
"row2": [
|
||||
["x", "X"],
|
||||
["c", "C"],
|
||||
["l", "L"],
|
||||
["d", "D"],
|
||||
["g", "G"],
|
||||
["-", "+"],
|
||||
["u", "U"],
|
||||
["o", "O"],
|
||||
["y", "Y"],
|
||||
["k", "K"],
|
||||
["z", "Z"],
|
||||
["(", "{"],
|
||||
[")", "}"]
|
||||
],
|
||||
"row3": [
|
||||
["r", "R"],
|
||||
["s", "S"],
|
||||
["n", "N"],
|
||||
["t", "T"],
|
||||
["b", "B"],
|
||||
[",", ";"],
|
||||
["a", "A"],
|
||||
["e", "E"],
|
||||
["i", "I"],
|
||||
["h", "H"],
|
||||
["j", "J"]
|
||||
],
|
||||
"row4": [
|
||||
["w", "W"],
|
||||
["f", "F"],
|
||||
["m", "M"],
|
||||
["p", "P"],
|
||||
["v", "V"],
|
||||
["/", "*"],
|
||||
[".", ":"],
|
||||
["q", "Q"],
|
||||
["\"", "["],
|
||||
["'", "]"]
|
||||
],
|
||||
"row5": [[" "]]
|
||||
}
|
||||
}
|
|
@ -51,6 +51,8 @@ export const LayoutNameSchema = z.enum(
|
|||
"hungarian",
|
||||
"handsdown_alt",
|
||||
"handsdown_promethium",
|
||||
"handsdown_neu",
|
||||
"handsdown_neu_inverted",
|
||||
"typehack",
|
||||
"MTGAP",
|
||||
"MTGAP_full",
|
||||
|
|
Loading…
Add table
Reference in a new issue