diff --git a/frontend/static/layouts/colemak_angle.json b/frontend/static/layouts/colemak_angle.json new file mode 100644 index 000000000..b01d46389 --- /dev/null +++ b/frontend/static/layouts/colemak_angle.json @@ -0,0 +1,62 @@ +{ + "keymapShowTopRow": false, + "type": "ansi", + "keys": { + "row1": [ + ["`", "~"], + ["1", "!"], + ["2", "@"], + ["3", "#"], + ["4", "$"], + ["5", "%"], + ["6", "^"], + ["7", "&"], + ["8", "*"], + ["9", "("], + ["0", ")"], + ["-", "_"], + ["=", "+"] + ], + "row2": [ + ["q", "Q"], + ["w", "W"], + ["f", "F"], + ["p", "P"], + ["g", "G"], + ["j", "J"], + ["l", "L"], + ["u", "U"], + ["y", "Y"], + [";", ":"], + ["[", "{"], + ["]", "}"], + ["\\", "|"] + ], + "row3": [ + ["a", "A"], + ["r", "R"], + ["s", "S"], + ["t", "T"], + ["d", "D"], + ["h", "H"], + ["n", "N"], + ["e", "E"], + ["i", "I"], + ["o", "O"], + ["'", "\""] + ], + "row4": [ + ["x", "X"], + ["c", "C"], + ["v", "V"], + ["b", "B"], + ["z", "Z"], + ["k", "K"], + ["m", "M"], + [",", "<"], + [".", ">"], + ["/", "?"] + ], + "row5": [[" "]] + } +} diff --git a/packages/schemas/src/layouts.ts b/packages/schemas/src/layouts.ts index 7c29b7941..f55d5f6ab 100644 --- a/packages/schemas/src/layouts.ts +++ b/packages/schemas/src/layouts.ts @@ -6,6 +6,7 @@ export const LayoutNameSchema = z.enum( "qwerty", "dvorak", "colemak", + "colemak_angle", "colemak_wide", "colemak_dh", "colemak_dh_iso",