diff options
| author | Joel Challis <git@zvecr.com> | 2023-11-26 18:31:20 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-27 05:31:20 +1100 |
| commit | 4908d4b1ca260efecf3613e6517aa3a6f2034876 (patch) | |
| tree | 384b54bc2469509c72f1ab839c14c91313672fde | |
| parent | 65b5969ed56e0e7fe033400bef374de1c4dbb663 (diff) | |
Stub out community layout directory structure (#22545)
88 files changed, 241 insertions, 144 deletions
diff --git a/layouts/community/60_abnt2/readme.md b/layouts/community/60_abnt2/readme.md new file mode 100644 index 0000000000..6f6e6a1c47 --- /dev/null +++ b/layouts/community/60_abnt2/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_abnt2 | ||
| 2 | |||
| 3 | LAYOUT_60_abnt2 | ||
diff --git a/layouts/community/60_ansi/readme.md b/layouts/community/60_ansi/readme.md index d3595074aa..1b43cab4d9 100644 --- a/layouts/community/60_ansi/readme.md +++ b/layouts/community/60_ansi/readme.md | |||
| @@ -1,67 +1,3 @@ | |||
| 1 | # 60_ansi | 1 | # 60_ansi |
| 2 | 2 | ||
| 3 | This is the standard 60% ANSI keyboard layout. | 3 | LAYOUT_60_ansi |
| 4 | |||
| 5 | ## Requirements | ||
| 6 | |||
| 7 | ### 1. Layout defined | ||
| 8 | |||
| 9 | A keyboard's `.h` file needs to have `LAYOUT_60_ansi` defined | ||
| 10 | |||
| 11 | ```c | ||
| 12 | #define LAYOUT_60_ansi( \ | ||
| 13 | K36, K37, K46, K47, K56, K57, K66, K67, K76, K77, K06, K07, K17, K27, \ | ||
| 14 | K34, K35, K44, K45, K54, K55, K64, K65, K75, K05, K15, K16, K25, K24, \ | ||
| 15 | K32, K33, K43, K52, K53, K63, K73, K74, K03, K04, K13, K14, K23, \ | ||
| 16 | K31, K42, K51, K61, K62, K71, K72, K01, K02, K11, K12, K21, \ | ||
| 17 | K30, K40, K50, K60, K70, K00, K10, K20 \ | ||
| 18 | ) { \ | ||
| 19 | { K00, K01, K02, K03, K04, K05, K06, K07 }, \ | ||
| 20 | { K10, K11, K12, K13, K14, K15, K16, K17 }, \ | ||
| 21 | { K20, K21, KC_NO, K23, K24, K25, KC_NO, K27 }, \ | ||
| 22 | { K30, K31, K32, K33, K34, K35, K36, K37 }, \ | ||
| 23 | { K40, KC_NO, K42, K43, K44, K45, K46, K47 }, \ | ||
| 24 | { K50, K51, K52, K53, K54, K55, K56, K57 }, \ | ||
| 25 | { K60, K61, K62, K63, K64, K65, K66, K67 }, \ | ||
| 26 | { K70, K71, K72, K73, K74, K75, K76, K77 } \ | ||
| 27 | } | ||
| 28 | ``` | ||
| 29 | |||
| 30 | This layout needs to match the layout defined in | ||
| 31 | |||
| 32 | qmk_firmware/layouts/community/layout.json | ||
| 33 | |||
| 34 | ### 2. Configuring rules.mk | ||
| 35 | |||
| 36 | `rules.mk` needs to have the following line: | ||
| 37 | |||
| 38 | LAYOUTS = 60_ansi | ||
| 39 | |||
| 40 | ### 3. Defining a keymap | ||
| 41 | |||
| 42 | A keymap must be defined at | ||
| 43 | |||
| 44 | qmk_firmware/layouts/community/60_ansi/yourfoldername/keymap.c | ||
| 45 | |||
| 46 | This keymap must have a `LAYOUT_60_ansi` layout defined. | ||
| 47 | |||
| 48 | ```c | ||
| 49 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 50 | [BASE] = LAYOUT_60_ansi( | ||
| 51 | QK_GESC, 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, | ||
| 52 | 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, | ||
| 53 | KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 54 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
| 55 | KC_LCTL, KC_LALT, KC_LGUI, KC_SPACE, MO(1), KC_RALT, KC_RGUI, KC_RCTL), | ||
| 56 | }; | ||
| 57 | ``` | ||
| 58 | |||
| 59 | ## Usage | ||
| 60 | |||
| 61 | To make generate a hex file, type | ||
| 62 | |||
| 63 | make yourkeyboard:yourfoldername | ||
| 64 | |||
| 65 | This hex file will contain a keymap with layout `LAYOUT_60_ansi` derived from | ||
| 66 | |||
| 67 | qmk_firmware/layouts/community/60_ansi/yourfoldername/keymap.c | ||
diff --git a/layouts/community/60_ansi_arrow/readme.md b/layouts/community/60_ansi_arrow/readme.md new file mode 100644 index 0000000000..5103bc3d9a --- /dev/null +++ b/layouts/community/60_ansi_arrow/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_ansi_arrow | ||
| 2 | |||
| 3 | LAYOUT_60_ansi_arrow | ||
diff --git a/layouts/community/60_ansi_arrow_split_bs_7u_spc/readme.md b/layouts/community/60_ansi_arrow_split_bs_7u_spc/readme.md new file mode 100644 index 0000000000..d60387a000 --- /dev/null +++ b/layouts/community/60_ansi_arrow_split_bs_7u_spc/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_ansi_arrow_split_bs_7u_spc | ||
| 2 | |||
| 3 | LAYOUT_60_ansi_arrow_split_bs_7u_spc | ||
diff --git a/layouts/community/60_ansi_split_bs_rshift/readme.md b/layouts/community/60_ansi_split_bs_rshift/readme.md index 479463f9a3..362392ef8e 100644 --- a/layouts/community/60_ansi_split_bs_rshift/readme.md +++ b/layouts/community/60_ansi_split_bs_rshift/readme.md | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | # 60_ansi_split_bs_rshift | 1 | # 60_ansi_split_bs_rshift |
| 2 | 2 | ||
| 3 | LAYOUT_60_ansi_split_bs_rshift \ No newline at end of file | 3 | LAYOUT_60_ansi_split_bs_rshift |
diff --git a/layouts/community/60_ansi_tsangan/readme.md b/layouts/community/60_ansi_tsangan/readme.md new file mode 100644 index 0000000000..76b4514034 --- /dev/null +++ b/layouts/community/60_ansi_tsangan/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_ansi_tsangan | ||
| 2 | |||
| 3 | LAYOUT_60_ansi_tsangan | ||
diff --git a/layouts/community/60_ansi_wkl/readme.md b/layouts/community/60_ansi_wkl/readme.md new file mode 100644 index 0000000000..c4c7e5541f --- /dev/null +++ b/layouts/community/60_ansi_wkl/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_ansi_wkl | ||
| 2 | |||
| 3 | LAYOUT_60_ansi_wkl | ||
diff --git a/layouts/community/60_ansi_wkl_split_bs_rshift/readme.md b/layouts/community/60_ansi_wkl_split_bs_rshift/readme.md new file mode 100644 index 0000000000..c34c18a0ec --- /dev/null +++ b/layouts/community/60_ansi_wkl_split_bs_rshift/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_ansi_wkl_split_bs_rshift | ||
| 2 | |||
| 3 | LAYOUT_60_ansi_wkl_split_bs_rshift | ||
diff --git a/layouts/community/60_hhkb/readme.md b/layouts/community/60_hhkb/readme.md new file mode 100644 index 0000000000..346cd6ef8a --- /dev/null +++ b/layouts/community/60_hhkb/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_hhkb | ||
| 2 | |||
| 3 | LAYOUT_60_hhkb | ||
diff --git a/layouts/community/60_iso/readme.md b/layouts/community/60_iso/readme.md index 42ff805fb6..cd1071f2f3 100644 --- a/layouts/community/60_iso/readme.md +++ b/layouts/community/60_iso/readme.md | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | # 60_iso | 1 | # 60_iso |
| 2 | 2 | ||
| 3 | LAYOUT_60_iso \ No newline at end of file | 3 | LAYOUT_60_iso |
diff --git a/layouts/community/60_iso_split_bs_rshift/readme.md b/layouts/community/60_iso_split_bs_rshift/readme.md new file mode 100644 index 0000000000..ff7fa16454 --- /dev/null +++ b/layouts/community/60_iso_split_bs_rshift/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_iso_split_bs_rshift | ||
| 2 | |||
| 3 | LAYOUT_60_iso_split_bs_rshift | ||
diff --git a/layouts/community/60_iso_tsangan/readme.md b/layouts/community/60_iso_tsangan/readme.md new file mode 100644 index 0000000000..edb7f9242d --- /dev/null +++ b/layouts/community/60_iso_tsangan/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_iso_tsangan | ||
| 2 | |||
| 3 | LAYOUT_60_iso_tsangan | ||
diff --git a/layouts/community/60_iso_tsangan_split_bs_rshift/readme.md b/layouts/community/60_iso_tsangan_split_bs_rshift/readme.md new file mode 100644 index 0000000000..4313926ca1 --- /dev/null +++ b/layouts/community/60_iso_tsangan_split_bs_rshift/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_iso_tsangan_split_bs_rshift | ||
| 2 | |||
| 3 | LAYOUT_60_iso_tsangan_split_bs_rshift | ||
diff --git a/layouts/community/60_iso_wkl/readme.md b/layouts/community/60_iso_wkl/readme.md new file mode 100644 index 0000000000..f109450c9b --- /dev/null +++ b/layouts/community/60_iso_wkl/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_iso_wkl | ||
| 2 | |||
| 3 | LAYOUT_60_iso_wkl | ||
diff --git a/layouts/community/60_iso_wkl_split_bs_rshift/readme.md b/layouts/community/60_iso_wkl_split_bs_rshift/readme.md new file mode 100644 index 0000000000..c1f4df013b --- /dev/null +++ b/layouts/community/60_iso_wkl_split_bs_rshift/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_iso_wkl_split_bs_rshift | ||
| 2 | |||
| 3 | LAYOUT_60_iso_wkl_split_bs_rshift | ||
diff --git a/layouts/community/60_jis/readme.md b/layouts/community/60_jis/readme.md new file mode 100644 index 0000000000..236abdfa07 --- /dev/null +++ b/layouts/community/60_jis/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_jis | ||
| 2 | |||
| 3 | LAYOUT_60_jis | ||
diff --git a/layouts/community/60_tsangan_hhkb/readme.md b/layouts/community/60_tsangan_hhkb/readme.md new file mode 100644 index 0000000000..78a0b82bee --- /dev/null +++ b/layouts/community/60_tsangan_hhkb/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 60_tsangan_hhkb | ||
| 2 | |||
| 3 | LAYOUT_60_tsangan_hhkb | ||
diff --git a/layouts/community/64_ansi/readme.md b/layouts/community/64_ansi/readme.md new file mode 100644 index 0000000000..64bb28197d --- /dev/null +++ b/layouts/community/64_ansi/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 64_ansi | ||
| 2 | |||
| 3 | LAYOUT_64_ansi | ||
diff --git a/layouts/community/64_iso/readme.md b/layouts/community/64_iso/readme.md new file mode 100644 index 0000000000..f56813d4a2 --- /dev/null +++ b/layouts/community/64_iso/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 64_iso | ||
| 2 | |||
| 3 | LAYOUT_64_iso | ||
diff --git a/layouts/community/65_ansi/readme.md b/layouts/community/65_ansi/readme.md new file mode 100644 index 0000000000..462b3c6a4e --- /dev/null +++ b/layouts/community/65_ansi/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 65_ansi | ||
| 2 | |||
| 3 | LAYOUT_65_ansi | ||
diff --git a/layouts/community/65_ansi_blocker/readme.md b/layouts/community/65_ansi_blocker/readme.md new file mode 100644 index 0000000000..03503b3479 --- /dev/null +++ b/layouts/community/65_ansi_blocker/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 65_ansi_blocker | ||
| 2 | |||
| 3 | LAYOUT_65_ansi_blocker | ||
diff --git a/layouts/community/65_ansi_blocker_split_bs/readme.md b/layouts/community/65_ansi_blocker_split_bs/readme.md new file mode 100644 index 0000000000..7b95eecc99 --- /dev/null +++ b/layouts/community/65_ansi_blocker_split_bs/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 65_ansi_blocker_split_bs | ||
| 2 | |||
| 3 | LAYOUT_65_ansi_blocker_split_bs | ||
diff --git a/layouts/community/65_ansi_blocker_tsangan/readme.md b/layouts/community/65_ansi_blocker_tsangan/readme.md new file mode 100644 index 0000000000..50d23c5178 --- /dev/null +++ b/layouts/community/65_ansi_blocker_tsangan/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 65_ansi_blocker_tsangan | ||
| 2 | |||
| 3 | LAYOUT_65_ansi_blocker_tsangan | ||
diff --git a/layouts/community/65_ansi_blocker_tsangan_split_bs/readme.md b/layouts/community/65_ansi_blocker_tsangan_split_bs/readme.md new file mode 100644 index 0000000000..0c6b4bc907 --- /dev/null +++ b/layouts/community/65_ansi_blocker_tsangan_split_bs/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 65_ansi_blocker_tsangan_split_bs | ||
| 2 | |||
| 3 | LAYOUT_65_ansi_blocker_tsangan_split_bs | ||
diff --git a/layouts/community/65_ansi_split_bs/readme.md b/layouts/community/65_ansi_split_bs/readme.md new file mode 100644 index 0000000000..3051b7066a --- /dev/null +++ b/layouts/community/65_ansi_split_bs/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 65_ansi_split_bs | ||
| 2 | |||
| 3 | LAYOUT_65_ansi_split_bs | ||
diff --git a/layouts/community/65_iso/readme.md b/layouts/community/65_iso/readme.md new file mode 100644 index 0000000000..bade8bfd27 --- /dev/null +++ b/layouts/community/65_iso/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 65_iso | ||
| 2 | |||
| 3 | LAYOUT_65_iso | ||
diff --git a/layouts/community/65_iso_blocker/readme.md b/layouts/community/65_iso_blocker/readme.md new file mode 100644 index 0000000000..129a85dce1 --- /dev/null +++ b/layouts/community/65_iso_blocker/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 65_iso_blocker | ||
| 2 | |||
| 3 | LAYOUT_65_iso_blocker | ||
diff --git a/layouts/community/65_iso_blocker_split_bs/readme.md b/layouts/community/65_iso_blocker_split_bs/readme.md new file mode 100644 index 0000000000..175db25268 --- /dev/null +++ b/layouts/community/65_iso_blocker_split_bs/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 65_iso_blocker_split_bs | ||
| 2 | |||
| 3 | LAYOUT_65_iso_blocker_split_bs | ||
diff --git a/layouts/community/65_iso_blocker_tsangan/readme.md b/layouts/community/65_iso_blocker_tsangan/readme.md new file mode 100644 index 0000000000..70e7fa82e3 --- /dev/null +++ b/layouts/community/65_iso_blocker_tsangan/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 65_iso_blocker_tsangan | ||
| 2 | |||
| 3 | LAYOUT_65_iso_blocker_tsangan | ||
diff --git a/layouts/community/65_iso_blocker_tsangan_split_bs/readme.md b/layouts/community/65_iso_blocker_tsangan_split_bs/readme.md new file mode 100644 index 0000000000..d2b672e005 --- /dev/null +++ b/layouts/community/65_iso_blocker_tsangan_split_bs/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 65_iso_blocker_tsangan_split_bs | ||
| 2 | |||
| 3 | LAYOUT_65_iso_blocker_tsangan_split_bs | ||
diff --git a/layouts/community/65_iso_split_bs/readme.md b/layouts/community/65_iso_split_bs/readme.md new file mode 100644 index 0000000000..b80f03e68a --- /dev/null +++ b/layouts/community/65_iso_split_bs/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 65_iso_split_bs | ||
| 2 | |||
| 3 | LAYOUT_65_iso_split_bs | ||
diff --git a/layouts/community/66_iso/readme.md b/layouts/community/66_iso/readme.md new file mode 100644 index 0000000000..db59d489a0 --- /dev/null +++ b/layouts/community/66_iso/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 66_iso | ||
| 2 | |||
| 3 | LAYOUT_66_iso | ||
diff --git a/layouts/community/68_ansi/readme.md b/layouts/community/68_ansi/readme.md index 2180973de8..504b914b25 100644 --- a/layouts/community/68_ansi/readme.md +++ b/layouts/community/68_ansi/readme.md | |||
| @@ -1,5 +1,3 @@ | |||
| 1 | # 68_ansi | 1 | # 68_ansi |
| 2 | 2 | ||
| 3 | LAYOUT_68_ansi | 3 | LAYOUT_68_ansi |
| 4 | |||
| 5 | This is the 68 key ANSI layout made popular by boards such as the Magicforce 68 and Varmilo VA68M. \ No newline at end of file | ||
diff --git a/layouts/community/68_iso/readme.md b/layouts/community/68_iso/readme.md new file mode 100644 index 0000000000..f4f37bbd1e --- /dev/null +++ b/layouts/community/68_iso/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 68_iso | ||
| 2 | |||
| 3 | LAYOUT_68_iso | ||
diff --git a/layouts/community/75_ansi/readme.md b/layouts/community/75_ansi/readme.md index 8229571db1..df25851906 100644 --- a/layouts/community/75_ansi/readme.md +++ b/layouts/community/75_ansi/readme.md | |||
| @@ -1,71 +1,3 @@ | |||
| 1 | # 75_ansi | 1 | # 75_ansi |
| 2 | 2 | ||
| 3 | This is the standard 75% ANSI keyboard layout. | 3 | LAYOUT_75_ansi |
| 4 | |||
| 5 | One may argue that having 3 1u keys to the right of spacebar | ||
| 6 | is not desired as two 1.5u keys. However, most 75% boards that | ||
| 7 | come out have that as the standard. | ||
| 8 | |||
| 9 | ## Requirements | ||
| 10 | |||
| 11 | ### 1. Layout defined | ||
| 12 | |||
| 13 | A keyboard's `.h` file needs to have `LAYOUT_75_ansi` defined | ||
| 14 | |||
| 15 | ```c | ||
| 16 | #define LAYOUT_75_ansi( \ | ||
| 17 | K5A, K5B, K5C, K5D, K5E, K5F, K5G, K5H, K5I, K5J, K5K, K5L, K5M, K5N, K5O, K5Q, \ | ||
| 18 | K4A, K4B, K4C, K4D, K4E, K4F, K4G, K4H, K4I, K4J, K4K, K4L, K4M, K4O, K4P, \ | ||
| 19 | K3A, K3B, K3C, K3D, K3E, K3F, K3G, K3H, K3I, K3J, K3K, K3L, K3M, K3O, K3P, \ | ||
| 20 | K2A, K2B, K2C, K2D, K2E, K2F, K2G, K2H, K2I, K2J, K2K, K2L, K2O, K2P, \ | ||
| 21 | K1A, K1C, K1D, K1E, K1F, K1G, K1H, K1I, K1J, K1K, K1M, K1N, K1O, K1P, \ | ||
| 22 | K0A, K0B, K0C, K0J, K0K, K0L, K0M, K0N, K0O, K0P \ | ||
| 23 | ) { \ | ||
| 24 | { K5A, K5B, K5C, K5D, K5E, K5F, K5G, K5H, K5I, K5J, K5K, K5L, K5M, K5N, K5O, KC_NO, K5Q }, \ | ||
| 25 | { K4A, K4B, K4C, K4D, K4E, K4F, K4G, K4H, K4I, K4J, K4K, K4L, K4M, KC_NO, K4O, K4P, KC_NO }, \ | ||
| 26 | { K3A, K3B, K3C, K3D, K3E, K3F, K3G, K3H, K3I, K3J, K3K, K3L, K3M, KC_NO, K3O, K3P, KC_NO }, \ | ||
| 27 | { K2A, K2B, K2C, K2D, K2E, K2F, K2G, K2H, K2I, K2J, K2K, K2L, KC_NO, KC_NO, K2O, K2P, KC_NO }, \ | ||
| 28 | { K1A, KC_NO, K1C, K1D, K1E, K1F, K1G, K1H, K1I, K1J, K1K, KC_NO, K1M, K1N, K1O, K1P, KC_NO }, \ | ||
| 29 | { K0A, K0B, K0C, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, K0J, KC_NO, K0K, K0L, K0M, K0N, K0O, K0P, KC_NO } \ | ||
| 30 | } | ||
| 31 | ``` | ||
| 32 | |||
| 33 | This layout needs to match the layout defined in | ||
| 34 | |||
| 35 | qmk_firmware/layouts/community/75_ansi/layout.json | ||
| 36 | |||
| 37 | ### 2. Configuring rules.mk | ||
| 38 | |||
| 39 | `rules.mk` needs to have the following line: | ||
| 40 | |||
| 41 | LAYOUTS = 75_ansi | ||
| 42 | |||
| 43 | ### 3. Defining a keymap | ||
| 44 | |||
| 45 | A keymap must be defined at | ||
| 46 | |||
| 47 | qmk_firmware/layouts/community/75_ansi/yourfoldername/keymap.c | ||
| 48 | |||
| 49 | This keymap must have a `LAYOUT_75_ansi` layout defined. | ||
| 50 | |||
| 51 | ```c | ||
| 52 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 53 | [0] = LAYOUT_75_ansi( | ||
| 54 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_PAUS, KC_DEL, | ||
| 55 | KC_GRV, 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_HOME, | ||
| 56 | 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_PGUP, | ||
| 57 | 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, KC_PGDN, | ||
| 58 | 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, KC_END, | ||
| 59 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT) | ||
| 60 | }; | ||
| 61 | ``` | ||
| 62 | |||
| 63 | ## Usage | ||
| 64 | |||
| 65 | To make generate a hex file, type | ||
| 66 | |||
| 67 | make yourkeyboard:yourfoldername | ||
| 68 | |||
| 69 | This hex file will contain a keymap with layout `LAYOUT_75_ansi` derived from | ||
| 70 | |||
| 71 | qmk_firmware/layouts/community/75_ansi/yourfoldername/keymap.c | ||
diff --git a/layouts/community/75_iso/readme.md b/layouts/community/75_iso/readme.md new file mode 100644 index 0000000000..8c601b7e82 --- /dev/null +++ b/layouts/community/75_iso/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 75_iso | ||
| 2 | |||
| 3 | LAYOUT_75_iso | ||
diff --git a/layouts/community/96_ansi/readme.md b/layouts/community/96_ansi/readme.md new file mode 100644 index 0000000000..8543655610 --- /dev/null +++ b/layouts/community/96_ansi/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 96_ansi | ||
| 2 | |||
| 3 | LAYOUT_96_ansi | ||
diff --git a/layouts/community/96_iso/readme.md b/layouts/community/96_iso/readme.md new file mode 100644 index 0000000000..c4dc7f6e90 --- /dev/null +++ b/layouts/community/96_iso/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # 96_iso | ||
| 2 | |||
| 3 | LAYOUT_96_iso | ||
diff --git a/layouts/community/alice/readme.md b/layouts/community/alice/readme.md new file mode 100644 index 0000000000..a52d497169 --- /dev/null +++ b/layouts/community/alice/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # alice | ||
| 2 | |||
| 3 | LAYOUT_alice | ||
diff --git a/layouts/community/alice_split_bs/readme.md b/layouts/community/alice_split_bs/readme.md new file mode 100644 index 0000000000..705defa818 --- /dev/null +++ b/layouts/community/alice_split_bs/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # alice_split_bs | ||
| 2 | |||
| 3 | LAYOUT_alice_split_bs | ||
diff --git a/layouts/community/ergodox/readme.md b/layouts/community/ergodox/readme.md index ddbe1933c2..e69af2bdef 100644 --- a/layouts/community/ergodox/readme.md +++ b/layouts/community/ergodox/readme.md | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | # ergodox | 1 | # ergodox |
| 2 | 2 | ||
| 3 | LAYOUT_ergodox \ No newline at end of file | 3 | LAYOUT_ergodox |
diff --git a/layouts/community/fullsize_ansi/readme.md b/layouts/community/fullsize_ansi/readme.md new file mode 100644 index 0000000000..9589abe0d7 --- /dev/null +++ b/layouts/community/fullsize_ansi/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # fullsize_ansi | ||
| 2 | |||
| 3 | LAYOUT_fullsize_ansi | ||
diff --git a/layouts/community/fullsize_extended_ansi/readme.md b/layouts/community/fullsize_extended_ansi/readme.md new file mode 100644 index 0000000000..7cc035cde9 --- /dev/null +++ b/layouts/community/fullsize_extended_ansi/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # fullsize_extended_ansi | ||
| 2 | |||
| 3 | LAYOUT_fullsize_extended_ansi | ||
diff --git a/layouts/community/fullsize_extended_iso/readme.md b/layouts/community/fullsize_extended_iso/readme.md new file mode 100644 index 0000000000..8688591ef1 --- /dev/null +++ b/layouts/community/fullsize_extended_iso/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # fullsize_extended_iso | ||
| 2 | |||
| 3 | LAYOUT_fullsize_extended_iso | ||
diff --git a/layouts/community/fullsize_extended_jis/readme.md b/layouts/community/fullsize_extended_jis/readme.md new file mode 100644 index 0000000000..79a00b5084 --- /dev/null +++ b/layouts/community/fullsize_extended_jis/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # fullsize_extended_jis | ||
| 2 | |||
| 3 | LAYOUT_fullsize_extended_jis | ||
diff --git a/layouts/community/fullsize_iso/readme.md b/layouts/community/fullsize_iso/readme.md new file mode 100644 index 0000000000..65c7a89044 --- /dev/null +++ b/layouts/community/fullsize_iso/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # fullsize_iso | ||
| 2 | |||
| 3 | LAYOUT_fullsize_iso | ||
diff --git a/layouts/community/fullsize_jis/readme.md b/layouts/community/fullsize_jis/readme.md new file mode 100644 index 0000000000..9385325157 --- /dev/null +++ b/layouts/community/fullsize_jis/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # fullsize_jis | ||
| 2 | |||
| 3 | LAYOUT_fullsize_jis | ||
diff --git a/layouts/community/numpad_4x4/readme.md b/layouts/community/numpad_4x4/readme.md new file mode 100644 index 0000000000..5d4b8c6e31 --- /dev/null +++ b/layouts/community/numpad_4x4/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # numpad_4x4 | ||
| 2 | |||
| 3 | LAYOUT_numpad_4x4 | ||
diff --git a/layouts/community/numpad_5x4/readme.md b/layouts/community/numpad_5x4/readme.md new file mode 100644 index 0000000000..e3fb7171bc --- /dev/null +++ b/layouts/community/numpad_5x4/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # numpad_5x4 | ||
| 2 | |||
| 3 | LAYOUT_numpad_5x4 | ||
diff --git a/layouts/community/numpad_6x4/readme.md b/layouts/community/numpad_6x4/readme.md new file mode 100644 index 0000000000..063700d420 --- /dev/null +++ b/layouts/community/numpad_6x4/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # numpad_6x4 | ||
| 2 | |||
| 3 | LAYOUT_numpad_6x4 | ||
diff --git a/layouts/community/numpad_6x5/readme.md b/layouts/community/numpad_6x5/readme.md new file mode 100644 index 0000000000..0c6d0959e3 --- /dev/null +++ b/layouts/community/numpad_6x5/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # numpad_6x5 | ||
| 2 | |||
| 3 | LAYOUT_numpad_6x5 | ||
diff --git a/layouts/community/ortho_1x1/readme.md b/layouts/community/ortho_1x1/readme.md new file mode 100644 index 0000000000..c6352dd8d5 --- /dev/null +++ b/layouts/community/ortho_1x1/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_1x1 | ||
| 2 | |||
| 3 | LAYOUT_ortho_1x1 | ||
diff --git a/layouts/community/ortho_3x3/readme.md b/layouts/community/ortho_3x3/readme.md new file mode 100644 index 0000000000..b6b2053565 --- /dev/null +++ b/layouts/community/ortho_3x3/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_3x3 | ||
| 2 | |||
| 3 | LAYOUT_ortho_3x3 | ||
diff --git a/layouts/community/ortho_4x10/readme.md b/layouts/community/ortho_4x10/readme.md new file mode 100644 index 0000000000..c5c29251c8 --- /dev/null +++ b/layouts/community/ortho_4x10/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_4x10 | ||
| 2 | |||
| 3 | LAYOUT_ortho_4x10 | ||
diff --git a/layouts/community/ortho_4x12/readme.md b/layouts/community/ortho_4x12/readme.md index 6963727c6e..5273e296d8 100644 --- a/layouts/community/ortho_4x12/readme.md +++ b/layouts/community/ortho_4x12/readme.md | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | # ortho_4x12 | 1 | # ortho_4x12 |
| 2 | 2 | ||
| 3 | LAYOUT_ortho_4x12 \ No newline at end of file | 3 | LAYOUT_ortho_4x12 |
diff --git a/layouts/community/ortho_4x16/readme.md b/layouts/community/ortho_4x16/readme.md new file mode 100644 index 0000000000..6dce03f51a --- /dev/null +++ b/layouts/community/ortho_4x16/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_4x16 | ||
| 2 | |||
| 3 | LAYOUT_ortho_4x16 | ||
diff --git a/layouts/community/ortho_4x4/readme.md b/layouts/community/ortho_4x4/readme.md index b7afef7b88..2c94c4c1cd 100644 --- a/layouts/community/ortho_4x4/readme.md +++ b/layouts/community/ortho_4x4/readme.md | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | # ortho_4x4 | 1 | # ortho_4x4 |
| 2 | 2 | ||
| 3 | LAYOUT_ortho_4x4 \ No newline at end of file | 3 | LAYOUT_ortho_4x4 |
diff --git a/layouts/community/ortho_4x6/readme.md b/layouts/community/ortho_4x6/readme.md new file mode 100644 index 0000000000..67c6175ee8 --- /dev/null +++ b/layouts/community/ortho_4x6/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_4x6 | ||
| 2 | |||
| 3 | LAYOUT_ortho_4x6 | ||
diff --git a/layouts/community/ortho_5x12/readme.md b/layouts/community/ortho_5x12/readme.md index b5037efecd..956f2b7023 100644 --- a/layouts/community/ortho_5x12/readme.md +++ b/layouts/community/ortho_5x12/readme.md | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | # ortho_5x12 | 1 | # ortho_5x12 |
| 2 | 2 | ||
| 3 | LAYOUT_ortho_5x12 \ No newline at end of file | 3 | LAYOUT_ortho_5x12 |
diff --git a/layouts/community/ortho_5x14/readme.md b/layouts/community/ortho_5x14/readme.md new file mode 100644 index 0000000000..bf2af9a639 --- /dev/null +++ b/layouts/community/ortho_5x14/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_5x14 | ||
| 2 | |||
| 3 | LAYOUT_ortho_5x14 | ||
diff --git a/layouts/community/ortho_5x15/readme.md b/layouts/community/ortho_5x15/readme.md index 137af0aeb0..2fe7c7f769 100644 --- a/layouts/community/ortho_5x15/readme.md +++ b/layouts/community/ortho_5x15/readme.md | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | # ortho_5x15 | 1 | # ortho_5x15 |
| 2 | 2 | ||
| 3 | LAYOUT_ortho_5x15 \ No newline at end of file | 3 | LAYOUT_ortho_5x15 |
diff --git a/layouts/community/ortho_5x4/readme.md b/layouts/community/ortho_5x4/readme.md new file mode 100644 index 0000000000..c953628ef6 --- /dev/null +++ b/layouts/community/ortho_5x4/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_5x4 | ||
| 2 | |||
| 3 | LAYOUT_ortho_5x4 | ||
diff --git a/layouts/community/ortho_5x5/readme.md b/layouts/community/ortho_5x5/readme.md index 3dd75765d1..2922976d3a 100644 --- a/layouts/community/ortho_5x5/readme.md +++ b/layouts/community/ortho_5x5/readme.md | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | # ortho_5x5 | 1 | # ortho_5x5 |
| 2 | 2 | ||
| 3 | LAYOUT_ortho_5x5 \ No newline at end of file | 3 | LAYOUT_ortho_5x5 |
diff --git a/layouts/community/ortho_6x4/readme.md b/layouts/community/ortho_6x4/readme.md new file mode 100644 index 0000000000..02b1c32d58 --- /dev/null +++ b/layouts/community/ortho_6x4/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_6x4 | ||
| 2 | |||
| 3 | LAYOUT_ortho_6x4 | ||
diff --git a/layouts/community/planck_mit/readme.md b/layouts/community/planck_mit/readme.md new file mode 100644 index 0000000000..e1cf2c9e36 --- /dev/null +++ b/layouts/community/planck_mit/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # planck_mit | ||
| 2 | |||
| 3 | LAYOUT_planck_mit | ||
diff --git a/layouts/community/split_3x5_2/readme.md b/layouts/community/split_3x5_2/readme.md new file mode 100644 index 0000000000..379bdac675 --- /dev/null +++ b/layouts/community/split_3x5_2/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # split_3x5_2 | ||
| 2 | |||
| 3 | LAYOUT_split_3x5_2 | ||
diff --git a/layouts/community/split_3x5_3/readme.md b/layouts/community/split_3x5_3/readme.md new file mode 100644 index 0000000000..c24b0c0293 --- /dev/null +++ b/layouts/community/split_3x5_3/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # split_3x5_3 | ||
| 2 | |||
| 3 | LAYOUT_split_3x5_3 | ||
diff --git a/layouts/community/split_3x6_3/readme.md b/layouts/community/split_3x6_3/readme.md new file mode 100644 index 0000000000..ced9a2e752 --- /dev/null +++ b/layouts/community/split_3x6_3/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # split_3x6_3 | ||
| 2 | |||
| 3 | LAYOUT_split_3x6_3 | ||
diff --git a/layouts/community/tkl_ansi/readme.md b/layouts/community/tkl_ansi/readme.md new file mode 100644 index 0000000000..cd4197ef4e --- /dev/null +++ b/layouts/community/tkl_ansi/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_ansi | ||
| 2 | |||
| 3 | LAYOUT_tkl_ansi | ||
diff --git a/layouts/community/tkl_ansi_split_bs_rshift/readme.md b/layouts/community/tkl_ansi_split_bs_rshift/readme.md new file mode 100644 index 0000000000..9eaefc20ab --- /dev/null +++ b/layouts/community/tkl_ansi_split_bs_rshift/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_ansi_split_bs_rshift | ||
| 2 | |||
| 3 | LAYOUT_tkl_ansi_split_bs_rshift | ||
diff --git a/layouts/community/tkl_ansi_tsangan/readme.md b/layouts/community/tkl_ansi_tsangan/readme.md new file mode 100644 index 0000000000..f731757359 --- /dev/null +++ b/layouts/community/tkl_ansi_tsangan/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_ansi_tsangan | ||
| 2 | |||
| 3 | LAYOUT_tkl_ansi_tsangan | ||
diff --git a/layouts/community/tkl_ansi_tsangan_split_bs_rshift/readme.md b/layouts/community/tkl_ansi_tsangan_split_bs_rshift/readme.md new file mode 100644 index 0000000000..eaa7fe6668 --- /dev/null +++ b/layouts/community/tkl_ansi_tsangan_split_bs_rshift/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_ansi_tsangan_split_bs_rshift | ||
| 2 | |||
| 3 | LAYOUT_tkl_ansi_tsangan_split_bs_rshift | ||
diff --git a/layouts/community/tkl_f13_ansi/readme.md b/layouts/community/tkl_f13_ansi/readme.md new file mode 100644 index 0000000000..902a8e5395 --- /dev/null +++ b/layouts/community/tkl_f13_ansi/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_f13_ansi | ||
| 2 | |||
| 3 | LAYOUT_tkl_f13_ansi | ||
diff --git a/layouts/community/tkl_f13_ansi_split_bs_rshift/readme.md b/layouts/community/tkl_f13_ansi_split_bs_rshift/readme.md new file mode 100644 index 0000000000..229fc74918 --- /dev/null +++ b/layouts/community/tkl_f13_ansi_split_bs_rshift/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_f13_ansi_split_bs_rshift | ||
| 2 | |||
| 3 | LAYOUT_tkl_f13_ansi_split_bs_rshift | ||
diff --git a/layouts/community/tkl_f13_ansi_tsangan/readme.md b/layouts/community/tkl_f13_ansi_tsangan/readme.md new file mode 100644 index 0000000000..2151c877c3 --- /dev/null +++ b/layouts/community/tkl_f13_ansi_tsangan/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_f13_ansi_tsangan | ||
| 2 | |||
| 3 | LAYOUT_tkl_f13_ansi_tsangan | ||
diff --git a/layouts/community/tkl_f13_ansi_tsangan_split_bs_rshift/readme.md b/layouts/community/tkl_f13_ansi_tsangan_split_bs_rshift/readme.md new file mode 100644 index 0000000000..7a1c4baa1b --- /dev/null +++ b/layouts/community/tkl_f13_ansi_tsangan_split_bs_rshift/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_f13_ansi_tsangan_split_bs_rshift | ||
| 2 | |||
| 3 | LAYOUT_tkl_f13_ansi_tsangan_split_bs_rshift | ||
diff --git a/layouts/community/tkl_f13_iso/readme.md b/layouts/community/tkl_f13_iso/readme.md new file mode 100644 index 0000000000..e7bba09f3f --- /dev/null +++ b/layouts/community/tkl_f13_iso/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_f13_iso | ||
| 2 | |||
| 3 | LAYOUT_tkl_f13_iso | ||
diff --git a/layouts/community/tkl_f13_iso_split_bs_rshift/readme.md b/layouts/community/tkl_f13_iso_split_bs_rshift/readme.md new file mode 100644 index 0000000000..4c4fc597df --- /dev/null +++ b/layouts/community/tkl_f13_iso_split_bs_rshift/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_f13_iso_split_bs_rshift | ||
| 2 | |||
| 3 | LAYOUT_tkl_f13_iso_split_bs_rshift | ||
diff --git a/layouts/community/tkl_f13_iso_tsangan/readme.md b/layouts/community/tkl_f13_iso_tsangan/readme.md new file mode 100644 index 0000000000..377b9a014e --- /dev/null +++ b/layouts/community/tkl_f13_iso_tsangan/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_f13_iso_tsangan | ||
| 2 | |||
| 3 | LAYOUT_tkl_f13_iso_tsangan | ||
diff --git a/layouts/community/tkl_f13_iso_tsangan_split_bs_rshift/readme.md b/layouts/community/tkl_f13_iso_tsangan_split_bs_rshift/readme.md new file mode 100644 index 0000000000..03e957dada --- /dev/null +++ b/layouts/community/tkl_f13_iso_tsangan_split_bs_rshift/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_f13_iso_tsangan_split_bs_rshift | ||
| 2 | |||
| 3 | LAYOUT_tkl_f13_iso_tsangan_split_bs_rshift | ||
diff --git a/layouts/community/tkl_f13_jis/readme.md b/layouts/community/tkl_f13_jis/readme.md new file mode 100644 index 0000000000..cc49ffd830 --- /dev/null +++ b/layouts/community/tkl_f13_jis/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_f13_jis | ||
| 2 | |||
| 3 | LAYOUT_tkl_f13_jis | ||
diff --git a/layouts/community/tkl_iso/readme.md b/layouts/community/tkl_iso/readme.md new file mode 100644 index 0000000000..27281687cd --- /dev/null +++ b/layouts/community/tkl_iso/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_iso | ||
| 2 | |||
| 3 | LAYOUT_tkl_iso | ||
diff --git a/layouts/community/tkl_iso_split_bs_rshift/readme.md b/layouts/community/tkl_iso_split_bs_rshift/readme.md new file mode 100644 index 0000000000..4fcb279dc0 --- /dev/null +++ b/layouts/community/tkl_iso_split_bs_rshift/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_iso_split_bs_rshift | ||
| 2 | |||
| 3 | LAYOUT_tkl_iso_split_bs_rshift | ||
diff --git a/layouts/community/tkl_iso_tsangan/readme.md b/layouts/community/tkl_iso_tsangan/readme.md new file mode 100644 index 0000000000..9f20ae7ba1 --- /dev/null +++ b/layouts/community/tkl_iso_tsangan/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_iso_tsangan | ||
| 2 | |||
| 3 | LAYOUT_tkl_iso_tsangan | ||
diff --git a/layouts/community/tkl_iso_tsangan_split_bs_rshift/readme.md b/layouts/community/tkl_iso_tsangan_split_bs_rshift/readme.md new file mode 100644 index 0000000000..08daf376bc --- /dev/null +++ b/layouts/community/tkl_iso_tsangan_split_bs_rshift/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_iso_tsangan_split_bs_rshift | ||
| 2 | |||
| 3 | LAYOUT_tkl_iso_tsangan_split_bs_rshift | ||
diff --git a/layouts/community/tkl_jis/readme.md b/layouts/community/tkl_jis/readme.md new file mode 100644 index 0000000000..860d9b2936 --- /dev/null +++ b/layouts/community/tkl_jis/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_jis | ||
| 2 | |||
| 3 | LAYOUT_tkl_jis | ||
diff --git a/layouts/community/tkl_nofrow_ansi/readme.md b/layouts/community/tkl_nofrow_ansi/readme.md new file mode 100644 index 0000000000..693b1245e6 --- /dev/null +++ b/layouts/community/tkl_nofrow_ansi/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_nofrow_ansi | ||
| 2 | |||
| 3 | LAYOUT_tkl_nofrow_ansi | ||
diff --git a/layouts/community/tkl_nofrow_iso/readme.md b/layouts/community/tkl_nofrow_iso/readme.md new file mode 100644 index 0000000000..aeaa5cfd06 --- /dev/null +++ b/layouts/community/tkl_nofrow_iso/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # tkl_nofrow_iso | ||
| 2 | |||
| 3 | LAYOUT_tkl_nofrow_iso | ||
