aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMechMerlin <30334081+mechmerlin@users.noreply.github.com>2021-10-31 01:17:23 -0700
committerGitHub <noreply@github.com>2021-10-31 01:17:23 -0700
commitba69c47bb896a7354d1c6f58b4e43626fb329b72 (patch)
tree1d65ae280fc8a6282abfaf703c8f1ef28d2ffb1d
parent1351dfff08e0ba6b8cac2399a51c9f066979caf9 (diff)
downloadqmk_firmware-ba69c47bb896a7354d1c6f58b4e43626fb329b72.tar.gz
qmk_firmware-ba69c47bb896a7354d1c6f58b4e43626fb329b72.zip
Add new default community layout for no f-row TKLs (#14812)
Co-authored-by: Ryan <fauxpark@gmail.com>
-rw-r--r--layouts/default/tkl_nofrow_ansi/default_tkl_nofrow_ansi/keymap.c24
-rw-r--r--layouts/default/tkl_nofrow_ansi/info.json90
-rw-r--r--layouts/default/tkl_nofrow_ansi/layout.json6
-rw-r--r--layouts/default/tkl_nofrow_ansi/readme.md3
4 files changed, 123 insertions, 0 deletions
diff --git a/layouts/default/tkl_nofrow_ansi/default_tkl_nofrow_ansi/keymap.c b/layouts/default/tkl_nofrow_ansi/default_tkl_nofrow_ansi/keymap.c
new file mode 100644
index 000000000..c2b7ecfea
--- /dev/null
+++ b/layouts/default/tkl_nofrow_ansi/default_tkl_nofrow_ansi/keymap.c
@@ -0,0 +1,24 @@
1#include QMK_KEYBOARD_H
2
3const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
4 /*
5 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ ┌───┬───┬───┐
6 * │Esc│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │ Backsp│ │Ins│Hom│PgU│
7 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ ├───┼───┼───┤
8 * │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │ \ │ │Del│End│PgD│
9 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ └───┴───┴───┘
10 * │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ Enter │
11 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ ┌───┐
12 * │ Shift │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │ Shift │ │ ↑ │
13 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ ┌───┼───┼───┐
14 * │Ctrl│GUI │Alt │ │ Alt│ GUI│Menu│Ctrl│ │ ← │ ↓ │ → │
15 * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ └───┴───┴───┘
16 */
17 [0] = LAYOUT_tkl_nofrow_ansi(
18 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_INS, KC_HOME, KC_PGUP,
19 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, KC_END, KC_PGDN,
20 KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
21 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
22 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
23 )
24};
diff --git a/layouts/default/tkl_nofrow_ansi/info.json b/layouts/default/tkl_nofrow_ansi/info.json
new file mode 100644
index 000000000..dfb0fc92b
--- /dev/null
+++ b/layouts/default/tkl_nofrow_ansi/info.json
@@ -0,0 +1,90 @@
1{
2 "keyboard_name": "Tenkeyless No F-Row ANSI Layout",
3 "url": "",
4 "maintainer": "qmk",
5 "layouts": {
6 "LAYOUT": {
7 "layout": [
8 {"x":0, "y":0},
9 {"x":1, "y":0},
10 {"x":2, "y":0},
11 {"x":3, "y":0},
12 {"x":4, "y":0},
13 {"x":5, "y":0},
14 {"x":6, "y":0},
15 {"x":7, "y":0},
16 {"x":8, "y":0},
17 {"x":9, "y":0},
18 {"x":10, "y":0},
19 {"x":11, "y":0},
20 {"x":12, "y":0},
21 {"x":13, "y":0, "w":2},
22
23 {"x":15.25, "y":0},
24 {"x":16.25, "y":0},
25 {"x":17.25, "y":0},
26
27 {"x":0, "y":1, "w":1.5},
28 {"x":1.5, "y":1},
29 {"x":2.5, "y":1},
30 {"x":3.5, "y":1},
31 {"x":4.5, "y":1},
32 {"x":5.5, "y":1},
33 {"x":6.5, "y":1},
34 {"x":7.5, "y":1},
35 {"x":8.5, "y":1},
36 {"x":9.5, "y":1},
37 {"x":10.5, "y":1},
38 {"x":11.5, "y":1},
39 {"x":12.5, "y":1},
40 {"x":13.5, "y":1, "w":1.5},
41
42 {"x":15.25, "y":1},
43 {"x":16.25, "y":1},
44 {"x":17.25, "y":1},
45
46 {"x":0, "y":2, "w":1.75},
47 {"x":1.75, "y":2},
48 {"x":2.75, "y":2},
49 {"x":3.75, "y":2},
50 {"x":4.75, "y":2},
51 {"x":5.75, "y":2},
52 {"x":6.75, "y":2},
53 {"x":7.75, "y":2},
54 {"x":8.75, "y":2},
55 {"x":9.75, "y":2},
56 {"x":10.75, "y":2},
57 {"x":11.75, "y":2},
58 {"x":12.75, "y":2, "w":2.25},
59
60 {"x":0, "y":3, "w":2.25},
61 {"x":2.25, "y":3},
62 {"x":3.25, "y":3},
63 {"x":4.25, "y":3},
64 {"x":5.25, "y":3},
65 {"x":6.25, "y":3},
66 {"x":7.25, "y":3},
67 {"x":8.25, "y":3},
68 {"x":9.25, "y":3},
69 {"x":10.25, "y":3},
70 {"x":11.25, "y":3},
71 {"x":12.25, "y":3, "w":2.75},
72
73 {"x":16.25, "y":3},
74
75 {"x":0, "y":4, "w":1.25},
76 {"x":1.25, "y":4, "w":1.25},
77 {"x":2.5, "y":4, "w":1.25},
78 {"x":3.75, "y":4, "w":6.25},
79 {"x":10, "y":4, "w":1.25},
80 {"x":11.25, "y":4, "w":1.25},
81 {"x":12.5, "y":4, "w":1.25},
82 {"x":13.75, "y":4, "w":1.25},
83
84 {"x":15.25, "y":4},
85 {"x":16.25, "y":4},
86 {"x":17.25, "y":4}
87 ]
88 }
89 }
90} \ No newline at end of file
diff --git a/layouts/default/tkl_nofrow_ansi/layout.json b/layouts/default/tkl_nofrow_ansi/layout.json
new file mode 100644
index 000000000..b8f86b4ac
--- /dev/null
+++ b/layouts/default/tkl_nofrow_ansi/layout.json
@@ -0,0 +1,6 @@
1[{a:7},"","","","","","","","","","","","","",{w:2},"",{x:0.25},"","",""],
2[{w:1.5},"","","","","","","","","","","","","",{w:1.5},"",{x:0.25},"","",""],
3[{w:1.75},"","","","","","","","","","","","",{w:2.25},""],
4[{w:2.25},"","","","","","","","","","","",{w:2.75},"",{x:1.25},""],
5[{w:1.25},"",{w:1.25},"",{w:1.25},"",{w:6.25},"",{w:1.25},"",{w:1.25},"",{w:1.25},"",{w:1.25},"",{x:0.25},"","",""]
6
diff --git a/layouts/default/tkl_nofrow_ansi/readme.md b/layouts/default/tkl_nofrow_ansi/readme.md
new file mode 100644
index 000000000..693b1245e
--- /dev/null
+++ b/layouts/default/tkl_nofrow_ansi/readme.md
@@ -0,0 +1,3 @@
1# tkl_nofrow_ansi
2
3 LAYOUT_tkl_nofrow_ansi