aboutsummaryrefslogtreecommitdiff
path: root/keyboards/quark/keymaps
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/quark/keymaps')
-rw-r--r--keyboards/quark/keymaps/default/config.h17
-rw-r--r--keyboards/quark/keymaps/default/keymap.c124
-rw-r--r--keyboards/quark/keymaps/default/readme.md1
-rw-r--r--keyboards/quark/keymaps/default_4x12/config.h19
-rw-r--r--keyboards/quark/keymaps/default_4x12/keymap.c80
-rw-r--r--keyboards/quark/keymaps/default_4x12_2x225/config.h2
-rw-r--r--keyboards/quark/keymaps/default_4x12_2x225/keymap.c83
-rw-r--r--keyboards/quark/keymaps/default_4x12_2x225u/config.h19
-rw-r--r--keyboards/quark/keymaps/default_4x12_2x225u/keymap.c80
-rw-r--r--keyboards/quark/keymaps/default_4x12_2x3/config.h2
-rw-r--r--keyboards/quark/keymaps/default_4x12_2x3/keymap.c83
-rw-r--r--keyboards/quark/keymaps/default_4x12_2x3u/config.h19
-rw-r--r--keyboards/quark/keymaps/default_4x12_2x3u/keymap.c80
-rw-r--r--keyboards/quark/keymaps/default_4x12_grid/config.h2
-rw-r--r--keyboards/quark/keymaps/default_4x12_grid/keymap.c83
-rw-r--r--keyboards/quark/keymaps/default_4x12_mit/config.h19
-rw-r--r--keyboards/quark/keymaps/default_4x12_mit/keymap.c83
-rw-r--r--keyboards/quark/keymaps/default_5x12_2x3/config.h18
-rw-r--r--keyboards/quark/keymaps/default_5x12_2x3/keymap.c89
-rw-r--r--keyboards/quark/keymaps/default_5x12_2x3u/config.h19
-rw-r--r--keyboards/quark/keymaps/default_5x12_2x3u/keymap.c86
-rw-r--r--keyboards/quark/keymaps/default_mit/config.h19
-rw-r--r--keyboards/quark/keymaps/default_mit/keymap.c80
-rw-r--r--keyboards/quark/keymaps/via/keymap.c124
24 files changed, 640 insertions, 591 deletions
diff --git a/keyboards/quark/keymaps/default/config.h b/keyboards/quark/keymaps/default/config.h
index 311c729c5..c6f30237d 100644
--- a/keyboards/quark/keymaps/default/config.h
+++ b/keyboards/quark/keymaps/default/config.h
@@ -1,2 +1,19 @@
1/* Copyright 2020 Nathan Spears
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
1 18
2#define TAPPING_TOGGLE 2 19#define TAPPING_TOGGLE 2
diff --git a/keyboards/quark/keymaps/default/keymap.c b/keyboards/quark/keymaps/default/keymap.c
index 87e03fa18..3953b6a68 100644
--- a/keyboards/quark/keymaps/default/keymap.c
+++ b/keyboards/quark/keymaps/default/keymap.c
@@ -1,4 +1,5 @@
1/* Copyright 2020 Nathan Spears 1/* Copyright 2020 Nathan Spears
2 *
2 * This program is free software: you can redistribute it and/or modify 3 * This program is free software: you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by 4 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation, either version 2 of the License, or 5 * the Free Software Foundation, either version 2 of the License, or
@@ -19,70 +20,67 @@
19#define CALTDEL LCTL(LALT(KC_DEL)) 20#define CALTDEL LCTL(LALT(KC_DEL))
20#define TSKMGR LCTL(LSFT(KC_ESC)) 21#define TSKMGR LCTL(LSFT(KC_ESC))
21 22
22
23const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { 23const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
24 /* [0]
25 * ,-----------------------------------------------------------------------------------------.
26 * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
27 * |------------+------+------+------+------+------+------+------+------+------+------+------|
28 * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del |
29 * |------------+------+------+------+------+-------------+------+------+------+------+------|
30 * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " |
31 * |------------+------+------+------+------+------|------+------+------+------+------+------|
32 * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter |
33 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------|
34 * | PRINT | OS | Alt | Layer | Space & Layer | [ | ] | CAPS |
35 * `-----------------------------------------------------------------------------------------'
36 */
37 [0] = LAYOUT_ortho_5x12_2x225u(
38 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
39 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
40 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
41 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
42 KC_PSCR, KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC, KC_CAPS
43 ),
24 44
25/* [0] 45 /* [1]
26 * ,-----------------------------------------------------------------------------------------. 46 * ,---------------------------------------------------------------------------------------.
27 * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | 47 * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
28 * |------------+------+------+------+------+------+------+------+------+------+------+------| 48 * |------------+------+------+------+------+------+------+------+------+------+------+----|
29 * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del | 49 * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
30 * |------------+------+------+------+------+-------------+------+------+------+------+------| 50 * |------------+------+------+------+------+-------------+------+------+------+------+----|
31 * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " | 51 * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
32 * |------------+------+------+------+------+------|------+------+------+------+------+------| 52 * |------------+------+------+------+------+------|------+------+------+------+------+----|
33 * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter | 53 * | | | | | | | | + | = | | | |
34 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------| 54 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
35 * | PRINT | OS | Alt | Layer | Space & Layer | [ | ] | CAPS | 55 * | ESC | CTRL-ALT-DEL | TASK | | | '|' | ` | |
36 * `-----------------------------------------------------------------------------------------' 56 * `---------------------------------------------------------------------------------------'
37 */ 57 */
38[0] = LAYOUT_5x12_2x225( \ 58 [1] = LAYOUT_ortho_5x12_2x225u(
39 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, 59 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
40 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, 60 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
41 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, 61 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
42 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, 62 _______, _______, _______, _______, _______, _______, _______, KC_PPLS, KC_EQL, _______, _______, _______,
43 KC_PSCR, KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC, KC_CAPS 63 KC_ESC, CALTDEL, TSKMGR, _______, _______, KC_NUBS, KC_GRV, _______
44), 64 ),
45
46/* [1]
47* ,---------------------------------------------------------------------------------------.
48* | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
49* |------------+------+------+------+------+------+------+------+------+------+------+----|
50* | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
51* |------------+------+------+------+------+-------------+------+------+------+------+----|
52* | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
53* |------------+------+------+------+------+------|------+------+------+------+------+----|
54* | | | | | | | | + | = | | | |
55* |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
56* | ESC | CTRL-ALT-DEL | TASK | | | '|' | ` | |
57* `---------------------------------------------------------------------------------------'
58*/
59[1] = LAYOUT_5x12_2x225( \
60 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
61 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
62 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
63 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______,
64 KC_ESC, CALTDEL, TSKMGR, _______, _______, KC_NUBS, KC_GRV, _______
65),
66
67/* [2]
68* ,---------------------------------------------------------------------------------------.
69* | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
70* |------------+------+------+------+------+------+------+------+------+------+------+---|
71* | | | | UP | | | | _ | | [ | ] | |
72* |------------+------+------+------+------+-------------+------+------+------+------+---|
73* | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
74* |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
75* | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
76* |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
77* | RESET | | | | | | | |
78* `---------------------------------------------------------------------------------------'
79 */
80[2] = LAYOUT_5x12_2x225( \
81 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
82 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
83 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
84 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
85 RESET, _______, _______, _______, _______, _______, _______, _______
86),
87 65
66 /* [2]
67 * ,---------------------------------------------------------------------------------------.
68 * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
69 * |------------+------+------+------+------+------+------+------+------+------+------+---|
70 * | | | | UP | | | | _ | | [ | ] | |
71 * |------------+------+------+------+------+-------------+------+------+------+------+---|
72 * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
73 * |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
74 * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
75 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
76 * | RESET | | | | | | | |
77 * `---------------------------------------------------------------------------------------'
78 */
79 [2] = LAYOUT_ortho_5x12_2x225u(
80 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
81 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
82 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
83 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
84 RESET, _______, _______, _______, _______, _______, _______, _______
85 )
88}; 86};
diff --git a/keyboards/quark/keymaps/default/readme.md b/keyboards/quark/keymaps/default/readme.md
index 1e0d8e25c..9a85e831e 100644
--- a/keyboards/quark/keymaps/default/readme.md
+++ b/keyboards/quark/keymaps/default/readme.md
@@ -1,2 +1 @@
1# The Default Quark Layout # The Default Quark Layout
2
diff --git a/keyboards/quark/keymaps/default_4x12/config.h b/keyboards/quark/keymaps/default_4x12/config.h
new file mode 100644
index 000000000..c6f30237d
--- /dev/null
+++ b/keyboards/quark/keymaps/default_4x12/config.h
@@ -0,0 +1,19 @@
1/* Copyright 2020 Nathan Spears
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
18
19#define TAPPING_TOGGLE 2
diff --git a/keyboards/quark/keymaps/default_4x12/keymap.c b/keyboards/quark/keymaps/default_4x12/keymap.c
new file mode 100644
index 000000000..aefb2f2a3
--- /dev/null
+++ b/keyboards/quark/keymaps/default_4x12/keymap.c
@@ -0,0 +1,80 @@
1/* Copyright 2020 Nathan Spears
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include QMK_KEYBOARD_H
18
19// Defines for task manager and such
20#define CALTDEL LCTL(LALT(KC_DEL))
21#define TSKMGR LCTL(LSFT(KC_ESC))
22
23const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
24 /* [0]
25 * ,-----------------------------------------------------------------------------------------.
26 * |------------+------+------+------+------+------+------+------+------+------+------+------|
27 * | TAB | Q | W | E | R | T | Y | U | I | O | P | DEL |
28 * |------------+------+------+------+------+-------------+------+------+------+------+------|
29 * | CTRL&ESC | A | S | D | F | G | H | J | K | L | ; | " |
30 * |------------+------+------+------+------+------|------+------+------+------+------+------|
31 * | SHIFT | Z | X | C | V | B | N | M | , | . | / | ENTER |
32 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------|
33 * | PRINT | Ctrl | ALT | GUI |LOWER |SPACE |SPACE|RAISE | LEFT | DOWN | UP |RIGHT |
34 * `-----------------------------------------------------------------------------------------'
35 */
36 [0] = LAYOUT_ortho_4x12(
37 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
38 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
39 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
40 KC_PSCR, KC_LCTL, KC_LALT, KC_LGUI, TT(1), KC_SPC, KC_SPC, TT(2), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
41 ),
42
43 /* [1]
44 * ,---------------------------------------------------------------------------------------.
45 * |------------+------+------+------+------+------+------+------+------+------+------+----|
46 * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
47 * |------------+------+------+------+------+-------------+------+------+------+------+----|
48 * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
49 * |------------+------+------+------+------+------|------+------+------+------+------+----|
50 * | | | | | | | | + | = | | | |
51 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
52 * | | | ESC |CTRL-ALT-DEL|TASK| | | | | | '|' | ` | |
53 * `---------------------------------------------------------------------------------------'
54 */
55 [1] = LAYOUT_ortho_4x12(
56 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
57 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
58 _______, _______, _______, _______, _______, _______, _______, KC_PPLS, KC_EQL, _______, _______, _______,
59 _______, KC_ESC, CALTDEL, TSKMGR, _______, _______, _______, _______, _______, KC_NUBS, KC_GRV, _______
60 ),
61
62 /* [2]
63 * ,---------------------------------------------------------------------------------------.
64 * |------------+------+------+------+------+------+------+------+------+------+------+---|
65 * | | | | UP | | | | _ | | [ | ] | |
66 * |------------+------+------+------+------+-------------+------+------+------+------+---|
67 * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
68 * |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
69 * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
70 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
71 * |RESET | | | | | | | | | | | |
72 * `---------------------------------------------------------------------------------------'
73 */
74 [2] = LAYOUT_ortho_4x12(
75 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
76 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
77 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
78 RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
79 )
80};
diff --git a/keyboards/quark/keymaps/default_4x12_2x225/config.h b/keyboards/quark/keymaps/default_4x12_2x225/config.h
deleted file mode 100644
index 311c729c5..000000000
--- a/keyboards/quark/keymaps/default_4x12_2x225/config.h
+++ /dev/null
@@ -1,2 +0,0 @@
1
2#define TAPPING_TOGGLE 2
diff --git a/keyboards/quark/keymaps/default_4x12_2x225/keymap.c b/keyboards/quark/keymaps/default_4x12_2x225/keymap.c
deleted file mode 100644
index d94d62026..000000000
--- a/keyboards/quark/keymaps/default_4x12_2x225/keymap.c
+++ /dev/null
@@ -1,83 +0,0 @@
1/* Copyright 2015-2017 Jack Humbert
2 * Modified by Nasp for the Quark
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include QMK_KEYBOARD_H
18
19// Defines for task manager and such
20#define CALTDEL LCTL(LALT(KC_DEL))
21#define TSKMGR LCTL(LSFT(KC_ESC))
22
23
24const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
25
26 /* [0]
27 * ,-----------------------------------------------------------------------------------------.
28 * |------------+------+------+------+------+------+------+------+------+------+------+------|
29 * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del |
30 * |------------+------+------+------+------+-------------+------+------+------+------+------|
31 * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " |
32 * |------------+------+------+------+------+------|------+------+------+------+------+------|
33 * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter |
34 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------|
35 * | PRINT | OS | Alt | Layer | Space & Layer | [ | ] | CAPS |
36 * `-----------------------------------------------------------------------------------------'
37 */
38 [0] = LAYOUT_4x12_2x225( \
39 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
40 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
41 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
42 KC_PSCR, KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC, KC_CAPS
43 ),
44
45 /* [1]
46 * ,---------------------------------------------------------------------------------------.
47 * |------------+------+------+------+------+------+------+------+------+------+------+----|
48 * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
49 * |------------+------+------+------+------+-------------+------+------+------+------+----|
50 * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
51 * |------------+------+------+------+------+------|------+------+------+------+------+----|
52 * | | | | | | | | + | = | | | |
53 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
54 * | ESC | CTRL-ALT-DEL | TASK | | | '|' | ` | |
55 * `---------------------------------------------------------------------------------------'
56 */
57 [1] = LAYOUT_4x12_2x225( \
58 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
59 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
60 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______,
61 KC_ESC, CALTDEL, TSKMGR, _______, _______, KC_NUBS, KC_GRV, _______
62 ),
63
64 /* [2]
65 * ,---------------------------------------------------------------------------------------.
66 * |------------+------+------+------+------+------+------+------+------+------+------+---|
67 * | | | | UP | | | | _ | | [ | ] | |
68 * |------------+------+------+------+------+-------------+------+------+------+------+---|
69 * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
70 * |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
71 * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
72 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
73 * | RESET | | | | | | | |
74 * `---------------------------------------------------------------------------------------'
75 */
76 [2] = LAYOUT_4x12_2x225( \
77 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
78 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
79 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
80 RESET, _______, _______, _______, _______, _______, _______, _______
81 ),
82
83 };
diff --git a/keyboards/quark/keymaps/default_4x12_2x225u/config.h b/keyboards/quark/keymaps/default_4x12_2x225u/config.h
new file mode 100644
index 000000000..c6f30237d
--- /dev/null
+++ b/keyboards/quark/keymaps/default_4x12_2x225u/config.h
@@ -0,0 +1,19 @@
1/* Copyright 2020 Nathan Spears
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
18
19#define TAPPING_TOGGLE 2
diff --git a/keyboards/quark/keymaps/default_4x12_2x225u/keymap.c b/keyboards/quark/keymaps/default_4x12_2x225u/keymap.c
new file mode 100644
index 000000000..f2f187bf4
--- /dev/null
+++ b/keyboards/quark/keymaps/default_4x12_2x225u/keymap.c
@@ -0,0 +1,80 @@
1/* Copyright 2020 Nathan Spears
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include QMK_KEYBOARD_H
18
19// Defines for task manager and such
20#define CALTDEL LCTL(LALT(KC_DEL))
21#define TSKMGR LCTL(LSFT(KC_ESC))
22
23const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
24 /* [0]
25 * ,-----------------------------------------------------------------------------------------.
26 * |------------+------+------+------+------+------+------+------+------+------+------+------|
27 * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del |
28 * |------------+------+------+------+------+-------------+------+------+------+------+------|
29 * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " |
30 * |------------+------+------+------+------+------|------+------+------+------+------+------|
31 * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter |
32 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------|
33 * | PRINT | OS | Alt | Layer | Space & Layer | [ | ] | CAPS |
34 * `-----------------------------------------------------------------------------------------'
35 */
36 [0] = LAYOUT_ortho_4x12_2x225u(
37 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
38 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
39 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
40 KC_PSCR, KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC, KC_CAPS
41 ),
42
43 /* [1]
44 * ,---------------------------------------------------------------------------------------.
45 * |------------+------+------+------+------+------+------+------+------+------+------+----|
46 * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
47 * |------------+------+------+------+------+-------------+------+------+------+------+----|
48 * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
49 * |------------+------+------+------+------+------|------+------+------+------+------+----|
50 * | | | | | | | | + | = | | | |
51 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
52 * | ESC | CTRL-ALT-DEL | TASK | | | '|' | ` | |
53 * `---------------------------------------------------------------------------------------'
54 */
55 [1] = LAYOUT_ortho_4x12_2x225u(
56 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
57 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
58 _______, _______, _______, _______, _______, _______, _______, KC_PPLS, KC_EQL, _______, _______, _______,
59 KC_ESC, CALTDEL, TSKMGR, _______, _______, KC_NUBS, KC_GRV, _______
60 ),
61
62 /* [2]
63 * ,---------------------------------------------------------------------------------------.
64 * |------------+------+------+------+------+------+------+------+------+------+------+---|
65 * | | | | UP | | | | _ | | [ | ] | |
66 * |------------+------+------+------+------+-------------+------+------+------+------+---|
67 * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
68 * |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
69 * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
70 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
71 * | RESET | | | | | | | |
72 * `---------------------------------------------------------------------------------------'
73 */
74 [2] = LAYOUT_ortho_4x12_2x225u(
75 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
76 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
77 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
78 RESET, _______, _______, _______, _______, _______, _______, _______
79 )
80};
diff --git a/keyboards/quark/keymaps/default_4x12_2x3/config.h b/keyboards/quark/keymaps/default_4x12_2x3/config.h
deleted file mode 100644
index 311c729c5..000000000
--- a/keyboards/quark/keymaps/default_4x12_2x3/config.h
+++ /dev/null
@@ -1,2 +0,0 @@
1
2#define TAPPING_TOGGLE 2
diff --git a/keyboards/quark/keymaps/default_4x12_2x3/keymap.c b/keyboards/quark/keymaps/default_4x12_2x3/keymap.c
deleted file mode 100644
index 938fb6824..000000000
--- a/keyboards/quark/keymaps/default_4x12_2x3/keymap.c
+++ /dev/null
@@ -1,83 +0,0 @@
1/* Copyright 2015-2017 Jack Humbert
2 * Modified by Nasp for the Quark
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include QMK_KEYBOARD_H
18
19// Defines for task manager and such
20#define CALTDEL LCTL(LALT(KC_DEL))
21#define TSKMGR LCTL(LSFT(KC_ESC))
22
23
24const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
25
26/* [0]
27* ,-----------------------------------------------------------------------------------------.
28* |------------+------+------+------+------+------+------+------+------+------+------+------|
29* | Tab | Q | W | E | R | T | Y | U | I | O | P | Del |
30* |------------+------+------+------+------+-------------+------+------+------+------+------|
31* | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " |
32* |------------+------+------+------+------+------|------+------+------+------+------+------|
33* | Shift | Z | X | C | V | B | N | M | , | . | / |Enter |
34* |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------|
35* | PRINT | OS | Alt | Layer | Space & Layer | [ | ] | CAPS |
36* `-----------------------------------------------------------------------------------------'
37*/
38[0] = LAYOUT_4x12_2x3( \
39 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
40 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
41 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
42 KC_PSCR, KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC, KC_CAPS
43 ),
44
45/* [1]
46* ,---------------------------------------------------------------------------------------.
47* |------------+------+------+------+------+------+------+------+------+------+------+----|
48* | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
49* |------------+------+------+------+------+-------------+------+------+------+------+----|
50* | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
51* |------------+------+------+------+------+------|------+------+------+------+------+----|
52* | | | | | | | | + | = | | | |
53* |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
54* | ESC | CTRL-ALT-DEL | TASK | | | '|' | ` | |
55* `---------------------------------------------------------------------------------------'
56*/
57[1] = LAYOUT_4x12_2x3( \
58 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
59 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
60 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______,
61 KC_ESC, CALTDEL, TSKMGR, _______, _______, KC_NUBS, KC_GRV, _______
62 ),
63
64/* [2]
65* ,---------------------------------------------------------------------------------------.
66* |------------+------+------+------+------+------+------+------+------+------+------+---|
67* | | | | UP | | | | _ | | [ | ] | |
68* |------------+------+------+------+------+-------------+------+------+------+------+---|
69* | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
70* |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
71* | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
72* |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
73* | RESET | | | | | | | |
74* `---------------------------------------------------------------------------------------'
75 */
76[2] = LAYOUT_4x12_2x3( \
77 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
78 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
79 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
80 RESET, _______, _______, _______, _______, _______, _______, _______
81 ),
82
83 };
diff --git a/keyboards/quark/keymaps/default_4x12_2x3u/config.h b/keyboards/quark/keymaps/default_4x12_2x3u/config.h
new file mode 100644
index 000000000..c6f30237d
--- /dev/null
+++ b/keyboards/quark/keymaps/default_4x12_2x3u/config.h
@@ -0,0 +1,19 @@
1/* Copyright 2020 Nathan Spears
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
18
19#define TAPPING_TOGGLE 2
diff --git a/keyboards/quark/keymaps/default_4x12_2x3u/keymap.c b/keyboards/quark/keymaps/default_4x12_2x3u/keymap.c
new file mode 100644
index 000000000..128c3e1a0
--- /dev/null
+++ b/keyboards/quark/keymaps/default_4x12_2x3u/keymap.c
@@ -0,0 +1,80 @@
1/* Copyright 2020 Nathan Spears
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include QMK_KEYBOARD_H
18
19// Defines for task manager and such
20#define CALTDEL LCTL(LALT(KC_DEL))
21#define TSKMGR LCTL(LSFT(KC_ESC))
22
23const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
24 /* [0]
25 * ,-----------------------------------------------------------------------------------------.
26 * |------------+------+------+------+------+------+------+------+------+------+------+------|
27 * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del |
28 * |------------+------+------+------+------+-------------+------+------+------+------+------|
29 * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " |
30 * |------------+------+------+------+------+------|------+------+------+------+------+------|
31 * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter |
32 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------|
33 * | PRINT | OS | Alt | Layer | Space & Layer | [ | ] | CAPS |
34 * `-----------------------------------------------------------------------------------------'
35 */
36 [0] = LAYOUT_ortho_4x12_2x3u(
37 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
38 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
39 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
40 KC_PSCR, KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC, KC_CAPS
41 ),
42
43 /* [1]
44 * ,---------------------------------------------------------------------------------------.
45 * |------------+------+------+------+------+------+------+------+------+------+------+----|
46 * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
47 * |------------+------+------+------+------+-------------+------+------+------+------+----|
48 * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
49 * |------------+------+------+------+------+------|------+------+------+------+------+----|
50 * | | | | | | | | + | = | | | |
51 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
52 * | ESC | CTRL-ALT-DEL | TASK | | | '|' | ` | |
53 * `---------------------------------------------------------------------------------------'
54 */
55 [1] = LAYOUT_ortho_4x12_2x3u(
56 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
57 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
58 _______, _______, _______, _______, _______, _______, _______, KC_PPLS, KC_EQL, _______, _______, _______,
59 KC_ESC, CALTDEL, TSKMGR, _______, _______, KC_NUBS, KC_GRV, _______
60 ),
61
62 /* [2]
63 * ,---------------------------------------------------------------------------------------.
64 * |------------+------+------+------+------+------+------+------+------+------+------+---|
65 * | | | | UP | | | | _ | | [ | ] | |
66 * |------------+------+------+------+------+-------------+------+------+------+------+---|
67 * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
68 * |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
69 * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
70 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
71 * | RESET | | | | | | | |
72 * `---------------------------------------------------------------------------------------'
73 */
74 [2] = LAYOUT_ortho_4x12_2x3u(
75 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
76 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
77 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
78 RESET, _______, _______, _______, _______, _______, _______, _______
79 )
80};
diff --git a/keyboards/quark/keymaps/default_4x12_grid/config.h b/keyboards/quark/keymaps/default_4x12_grid/config.h
deleted file mode 100644
index 311c729c5..000000000
--- a/keyboards/quark/keymaps/default_4x12_grid/config.h
+++ /dev/null
@@ -1,2 +0,0 @@
1
2#define TAPPING_TOGGLE 2
diff --git a/keyboards/quark/keymaps/default_4x12_grid/keymap.c b/keyboards/quark/keymaps/default_4x12_grid/keymap.c
deleted file mode 100644
index 3eb0e8f86..000000000
--- a/keyboards/quark/keymaps/default_4x12_grid/keymap.c
+++ /dev/null
@@ -1,83 +0,0 @@
1/* Copyright 2015-2017 Jack Humbert
2 * Modified by Nasp for the Quark
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include QMK_KEYBOARD_H
18
19// Defines for task manager and such
20#define CALTDEL LCTL(LALT(KC_DEL))
21#define TSKMGR LCTL(LSFT(KC_ESC))
22
23
24const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
25
26 /* [0]
27 * ,-----------------------------------------------------------------------------------------.
28 * |------------+------+------+------+------+------+------+------+------+------+------+------|
29 * | TAB | Q | W | E | R | T | Y | U | I | O | P | DEL |
30 * |------------+------+------+------+------+-------------+------+------+------+------+------|
31 * | CTRL&ESC | A | S | D | F | G | H | J | K | L | ; | " |
32 * |------------+------+------+------+------+------|------+------+------+------+------+------|
33 * | SHIFT | Z | X | C | V | B | N | M | , | . | / | ENTER |
34 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------|
35 * | PRINT | Ctrl | ALT | GUI |LOWER |SPACE |SPACE|RAISE | LEFT | DOWN | UP |RIGHT |
36 * `-----------------------------------------------------------------------------------------'
37 */
38 [0] = LAYOUT_ortho_4x12( \
39 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
40 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
41 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
42 KC_PSCR, KC_LCTL, KC_LALT, KC_LGUI, TT(1), KC_SPC, KC_SPC, TT(2), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
43 ),
44
45 /* [1]
46 * ,---------------------------------------------------------------------------------------.
47 * |------------+------+------+------+------+------+------+------+------+------+------+----|
48 * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
49 * |------------+------+------+------+------+-------------+------+------+------+------+----|
50 * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
51 * |------------+------+------+------+------+------|------+------+------+------+------+----|
52 * | | | | | | | | + | = | | | |
53 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
54 * | | | ESC |CTRL-ALT-DEL|TASK| | | | | | '|' | ` | |
55 * `---------------------------------------------------------------------------------------'
56 */
57 [1] = LAYOUT_ortho_4x12( \
58 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
59 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
60 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______,
61 _______, KC_ESC, CALTDEL, TSKMGR, _______, _______, _______, _______, _______, KC_NUBS, KC_GRV, _______
62 ),
63
64 /* [2]
65 * ,---------------------------------------------------------------------------------------.
66 * |------------+------+------+------+------+------+------+------+------+------+------+---|
67 * | | | | UP | | | | _ | | [ | ] | |
68 * |------------+------+------+------+------+-------------+------+------+------+------+---|
69 * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
70 * |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
71 * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
72 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
73 * |RESET | | | | | | | | | | | |
74 * `---------------------------------------------------------------------------------------'
75 */
76 [2] = LAYOUT_ortho_4x12( \
77 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
78 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
79 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
80 RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
81 ),
82
83 };
diff --git a/keyboards/quark/keymaps/default_4x12_mit/config.h b/keyboards/quark/keymaps/default_4x12_mit/config.h
deleted file mode 100644
index 2e3dbdb68..000000000
--- a/keyboards/quark/keymaps/default_4x12_mit/config.h
+++ /dev/null
@@ -1,19 +0,0 @@
1/* Copyright 2020 Nathan_Spears
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
18
19#define TAPPING_TOGGLE 2
diff --git a/keyboards/quark/keymaps/default_4x12_mit/keymap.c b/keyboards/quark/keymaps/default_4x12_mit/keymap.c
deleted file mode 100644
index db2042e63..000000000
--- a/keyboards/quark/keymaps/default_4x12_mit/keymap.c
+++ /dev/null
@@ -1,83 +0,0 @@
1/* Copyright 2015-2017 Jack Humbert
2 * Modified by Nasp for the Quark
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include QMK_KEYBOARD_H
18
19// Defines for task manager and such
20#define CALTDEL LCTL(LALT(KC_DEL))
21#define TSKMGR LCTL(LSFT(KC_ESC))
22
23
24const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
25
26 /* [0]
27 * ,-----------------------------------------------------------------------------------------.
28 * |------------+------+------+------+------+------+------+------+------+------+------+------|
29 * | TAB | Q | W | E | R | T | Y | U | I | O | P | DEL |
30 * |------------+------+------+------+------+-------------+------+------+------+------+------|
31 * | CTRL&ESC | A | S | D | F | G | H | J | K | L | ; | " |
32 * |------------+------+------+------+------+------|------+------+------+------+------+------|
33 * | SHIFT | Z | X | C | V | B | N | M | , | . | / | ENTER |
34 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------|
35 * | PRINT | Ctrl | ALT | GUI |LOWER | SPACE |RAISE | LEFT | DOWN | UP |RIGHT |
36 * `-----------------------------------------------------------------------------------------'
37 */
38 [0] = LAYOUT_4x12_MIT( \
39 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
40 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
41 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
42 KC_PSCR, KC_LCTL, KC_LALT, KC_LGUI, TT(1), KC_SPC, TT(2), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
43 ),
44
45 /* [1]
46 * ,---------------------------------------------------------------------------------------.
47 * |------------+------+------+------+------+------+------+------+------+------+------+----|
48 * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
49 * |------------+------+------+------+------+-------------+------+------+------+------+----|
50 * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
51 * |------------+------+------+------+------+------|------+------+------+------+------+----|
52 * | | | | | | | | + | = | | | |
53 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
54 * | | | ESC |CTRL-ALT-DEL|TASK| | | | | '|' | ` | |
55 * `---------------------------------------------------------------------------------------'
56 */
57 [1] = LAYOUT_4x12_MIT( \
58 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
59 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
60 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______,
61 _______, KC_ESC, CALTDEL, TSKMGR, _______, _______, _______, _______, KC_NUBS, KC_GRV, _______
62 ),
63
64 /* [2]
65 * ,---------------------------------------------------------------------------------------.
66 * |------------+------+------+------+------+------+------+------+------+------+------+---|
67 * | | | | UP | | | | _ | | [ | ] | |
68 * |------------+------+------+------+------+-------------+------+------+------+------+---|
69 * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
70 * |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
71 * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
72 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
73 * |RESET | | | | | | | | | | |
74 * `---------------------------------------------------------------------------------------'
75 */
76 [2] = LAYOUT_4x12_MIT( \
77 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
78 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
79 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
80 RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
81 ),
82
83 };
diff --git a/keyboards/quark/keymaps/default_5x12_2x3/config.h b/keyboards/quark/keymaps/default_5x12_2x3/config.h
deleted file mode 100644
index ef97c811f..000000000
--- a/keyboards/quark/keymaps/default_5x12_2x3/config.h
+++ /dev/null
@@ -1,18 +0,0 @@
1/* Copyright 2020 Nathan Spears
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17
18#define TAPPING_TOGGLE 2
diff --git a/keyboards/quark/keymaps/default_5x12_2x3/keymap.c b/keyboards/quark/keymaps/default_5x12_2x3/keymap.c
deleted file mode 100644
index 8b3cf0311..000000000
--- a/keyboards/quark/keymaps/default_5x12_2x3/keymap.c
+++ /dev/null
@@ -1,89 +0,0 @@
1/* Copyright 2015-2017 Jack Humbert
2 * Modified by Nasp for the Quark
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include QMK_KEYBOARD_H
18
19// Defines for task manager and such
20#define CALTDEL LCTL(LALT(KC_DEL))
21#define TSKMGR LCTL(LSFT(KC_ESC))
22
23
24const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
25
26/* [0]
27 * ,-----------------------------------------------------------------------------------------.
28 * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
29 * |------------+------+------+------+------+------+------+------+------+------+------+------|
30 * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del |
31 * |------------+------+------+------+------+-------------+------+------+------+------+------|
32 * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " |
33 * |------------+------+------+------+------+------|------+------+------+------+------+------|
34 * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter |
35 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------|
36 * | OS | Alt | Layer | Space & Layer | [ | ] |
37 * `-----------------------------------------------------------------------------------------'
38 */
39[0] = LAYOUT_5x12_2x3( \
40 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
41 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
42 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
43 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
44 KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC
45),
46
47/* [1]
48* ,---------------------------------------------------------------------------------------.
49* | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
50* |------------+------+------+------+------+------+------+------+------+------+------+----|
51* | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
52* |------------+------+------+------+------+-------------+------+------+------+------+----|
53* | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
54* |------------+------+------+------+------+------|------+------+------+------+------+----|
55* | | | | | | | | + | = | | | |
56* |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
57* | ESC | CTRL-ALT-DEL | | | '|' | ` |
58* `---------------------------------------------------------------------------------------'
59*/
60[1] = LAYOUT_5x12_2x3( \
61 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
62 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
63 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
64 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______,
65 KC_ESC, CALTDEL, _______, _______, KC_NUBS, KC_GRV
66),
67
68/* [2]
69* ,---------------------------------------------------------------------------------------.
70* | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
71* |------------+------+------+------+------+------+------+------+------+------+------+---|
72* | | | | UP | | | | _ | | [ | ] | |
73* |------------+------+------+------+------+-------------+------+------+------+------+---|
74* | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
75* |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
76* | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
77* |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
78* | RESET | | | | | |
79* `---------------------------------------------------------------------------------------'
80 */
81[2] = LAYOUT_5x12_2x3( \
82 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
83 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
84 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
85 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
86 RESET, _______, _______, _______, _______, _______
87),
88
89};
diff --git a/keyboards/quark/keymaps/default_5x12_2x3u/config.h b/keyboards/quark/keymaps/default_5x12_2x3u/config.h
new file mode 100644
index 000000000..c6f30237d
--- /dev/null
+++ b/keyboards/quark/keymaps/default_5x12_2x3u/config.h
@@ -0,0 +1,19 @@
1/* Copyright 2020 Nathan Spears
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
18
19#define TAPPING_TOGGLE 2
diff --git a/keyboards/quark/keymaps/default_5x12_2x3u/keymap.c b/keyboards/quark/keymaps/default_5x12_2x3u/keymap.c
new file mode 100644
index 000000000..43e4d7e13
--- /dev/null
+++ b/keyboards/quark/keymaps/default_5x12_2x3u/keymap.c
@@ -0,0 +1,86 @@
1/* Copyright 2020 Nathan Spears
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include QMK_KEYBOARD_H
18
19// Defines for task manager and such
20#define CALTDEL LCTL(LALT(KC_DEL))
21#define TSKMGR LCTL(LSFT(KC_ESC))
22
23const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
24 /* [0]
25 * ,-----------------------------------------------------------------------------------------.
26 * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
27 * |------------+------+------+------+------+------+------+------+------+------+------+------|
28 * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del |
29 * |------------+------+------+------+------+-------------+------+------+------+------+------|
30 * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " |
31 * |------------+------+------+------+------+------|------+------+------+------+------+------|
32 * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter |
33 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------|
34 * | OS | Alt | Layer | Space & Layer | [ | ] |
35 * `-----------------------------------------------------------------------------------------'
36 */
37 [0] = LAYOUT_ortho_5x12_2x3u(
38 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
39 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
40 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
41 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
42 KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC
43 ),
44
45 /* [1]
46 * ,---------------------------------------------------------------------------------------.
47 * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
48 * |------------+------+------+------+------+------+------+------+------+------+------+----|
49 * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
50 * |------------+------+------+------+------+-------------+------+------+------+------+----|
51 * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
52 * |------------+------+------+------+------+------|------+------+------+------+------+----|
53 * | | | | | | | | + | = | | | |
54 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
55 * | ESC | CTRL-ALT-DEL | | | '|' | ` |
56 * `---------------------------------------------------------------------------------------'
57 */
58 [1] = LAYOUT_ortho_5x12_2x3u(
59 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
60 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
61 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
62 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______,
63 KC_ESC, CALTDEL, _______, _______, KC_NUBS, KC_GRV
64 ),
65
66 /* [2]
67 * ,---------------------------------------------------------------------------------------.
68 * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
69 * |------------+------+------+------+------+------+------+------+------+------+------+---|
70 * | | | | UP | | | | _ | | [ | ] | |
71 * |------------+------+------+------+------+-------------+------+------+------+------+---|
72 * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
73 * |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
74 * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
75 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
76 * | RESET | | | | | |
77 * `---------------------------------------------------------------------------------------'
78 */
79 [2] = LAYOUT_ortho_5x12_2x3u(
80 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
81 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
82 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
83 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
84 RESET, _______, _______, _______, _______, _______
85 )
86};
diff --git a/keyboards/quark/keymaps/default_mit/config.h b/keyboards/quark/keymaps/default_mit/config.h
new file mode 100644
index 000000000..c6f30237d
--- /dev/null
+++ b/keyboards/quark/keymaps/default_mit/config.h
@@ -0,0 +1,19 @@
1/* Copyright 2020 Nathan Spears
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
18
19#define TAPPING_TOGGLE 2
diff --git a/keyboards/quark/keymaps/default_mit/keymap.c b/keyboards/quark/keymaps/default_mit/keymap.c
new file mode 100644
index 000000000..c18b3b557
--- /dev/null
+++ b/keyboards/quark/keymaps/default_mit/keymap.c
@@ -0,0 +1,80 @@
1/* Copyright 2020 Nathan Spears
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include QMK_KEYBOARD_H
18
19// Defines for task manager and such
20#define CALTDEL LCTL(LALT(KC_DEL))
21#define TSKMGR LCTL(LSFT(KC_ESC))
22
23const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
24 /* [0]
25 * ,-----------------------------------------------------------------------------------------.
26 * |------------+------+------+------+------+------+------+------+------+------+------+------|
27 * | TAB | Q | W | E | R | T | Y | U | I | O | P | DEL |
28 * |------------+------+------+------+------+-------------+------+------+------+------+------|
29 * | CTRL&ESC | A | S | D | F | G | H | J | K | L | ; | " |
30 * |------------+------+------+------+------+------|------+------+------+------+------+------|
31 * | SHIFT | Z | X | C | V | B | N | M | , | . | / | ENTER |
32 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------|
33 * | PRINT | Ctrl | ALT | GUI |LOWER | SPACE |RAISE | LEFT | DOWN | UP |RIGHT |
34 * `-----------------------------------------------------------------------------------------'
35 */
36 [0] = LAYOUT_planck_mit(
37 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
38 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
39 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
40 KC_PSCR, KC_LCTL, KC_LALT, KC_LGUI, TT(1), KC_SPC, TT(2), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
41 ),
42
43 /* [1]
44 * ,---------------------------------------------------------------------------------------.
45 * |------------+------+------+------+------+------+------+------+------+------+------+----|
46 * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
47 * |------------+------+------+------+------+-------------+------+------+------+------+----|
48 * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
49 * |------------+------+------+------+------+------|------+------+------+------+------+----|
50 * | | | | | | | | + | = | | | |
51 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
52 * | | | ESC |CTRL-ALT-DEL|TASK| | | | | '|' | ` | |
53 * `---------------------------------------------------------------------------------------'
54 */
55 [1] = LAYOUT_planck_mit(
56 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
57 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
58 _______, _______, _______, _______, _______, _______, _______, KC_PPLS, KC_EQL, _______, _______, _______,
59 _______, KC_ESC, CALTDEL, TSKMGR, _______, _______, _______, _______, KC_NUBS, KC_GRV, _______
60 ),
61
62 /* [2]
63 * ,---------------------------------------------------------------------------------------.
64 * |------------+------+------+------+------+------+------+------+------+------+------+---|
65 * | | | | UP | | | | _ | | [ | ] | |
66 * |------------+------+------+------+------+-------------+------+------+------+------+---|
67 * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
68 * |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
69 * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
70 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
71 * |RESET | | | | | | | | | | |
72 * `---------------------------------------------------------------------------------------'
73 */
74 [2] = LAYOUT_planck_mit(
75 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
76 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
77 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
78 RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
79 )
80};
diff --git a/keyboards/quark/keymaps/via/keymap.c b/keyboards/quark/keymaps/via/keymap.c
index 87e03fa18..3953b6a68 100644
--- a/keyboards/quark/keymaps/via/keymap.c
+++ b/keyboards/quark/keymaps/via/keymap.c
@@ -1,4 +1,5 @@
1/* Copyright 2020 Nathan Spears 1/* Copyright 2020 Nathan Spears
2 *
2 * This program is free software: you can redistribute it and/or modify 3 * This program is free software: you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by 4 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation, either version 2 of the License, or 5 * the Free Software Foundation, either version 2 of the License, or
@@ -19,70 +20,67 @@
19#define CALTDEL LCTL(LALT(KC_DEL)) 20#define CALTDEL LCTL(LALT(KC_DEL))
20#define TSKMGR LCTL(LSFT(KC_ESC)) 21#define TSKMGR LCTL(LSFT(KC_ESC))
21 22
22
23const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { 23const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
24 /* [0]
25 * ,-----------------------------------------------------------------------------------------.
26 * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
27 * |------------+------+------+------+------+------+------+------+------+------+------+------|
28 * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del |
29 * |------------+------+------+------+------+-------------+------+------+------+------+------|
30 * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " |
31 * |------------+------+------+------+------+------|------+------+------+------+------+------|
32 * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter |
33 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------|
34 * | PRINT | OS | Alt | Layer | Space & Layer | [ | ] | CAPS |
35 * `-----------------------------------------------------------------------------------------'
36 */
37 [0] = LAYOUT_ortho_5x12_2x225u(
38 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
39 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
40 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
41 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
42 KC_PSCR, KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC, KC_CAPS
43 ),
24 44
25/* [0] 45 /* [1]
26 * ,-----------------------------------------------------------------------------------------. 46 * ,---------------------------------------------------------------------------------------.
27 * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | 47 * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
28 * |------------+------+------+------+------+------+------+------+------+------+------+------| 48 * |------------+------+------+------+------+------+------+------+------+------+------+----|
29 * | Tab | Q | W | E | R | T | Y | U | I | O | P | Del | 49 * | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
30 * |------------+------+------+------+------+-------------+------+------+------+------+------| 50 * |------------+------+------+------+------+-------------+------+------+------+------+----|
31 * | CTL & ESC | A | S | D | F | G | H | J | K | L | ; | " | 51 * | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
32 * |------------+------+------+------+------+------|------+------+------+------+------+------| 52 * |------------+------+------+------+------+------|------+------+------+------+------+----|
33 * | Shift | Z | X | C | V | B | N | M | , | . | / |Enter | 53 * | | | | | | | | + | = | | | |
34 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+------| 54 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
35 * | PRINT | OS | Alt | Layer | Space & Layer | [ | ] | CAPS | 55 * | ESC | CTRL-ALT-DEL | TASK | | | '|' | ` | |
36 * `-----------------------------------------------------------------------------------------' 56 * `---------------------------------------------------------------------------------------'
37 */ 57 */
38[0] = LAYOUT_5x12_2x225( \ 58 [1] = LAYOUT_ortho_5x12_2x225u(
39 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, 59 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
40 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, 60 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
41 CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, 61 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
42 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, 62 _______, _______, _______, _______, _______, _______, _______, KC_PPLS, KC_EQL, _______, _______, _______,
43 KC_PSCR, KC_LGUI, KC_LALT, TT(1), LT(2, KC_SPC), KC_LBRC, KC_RBRC, KC_CAPS 63 KC_ESC, CALTDEL, TSKMGR, _______, _______, KC_NUBS, KC_GRV, _______
44), 64 ),
45
46/* [1]
47* ,---------------------------------------------------------------------------------------.
48* | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
49* |------------+------+------+------+------+------+------+------+------+------+------+----|
50* | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BCKSPC |
51* |------------+------+------+------+------+-------------+------+------+------+------+----|
52* | \ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | / |
53* |------------+------+------+------+------+------|------+------+------+------+------+----|
54* | | | | | | | | + | = | | | |
55* |-------+-------+-------+-------+-------+-------+------+------+------+------+------+----|
56* | ESC | CTRL-ALT-DEL | TASK | | | '|' | ` | |
57* `---------------------------------------------------------------------------------------'
58*/
59[1] = LAYOUT_5x12_2x225( \
60 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
61 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
62 KC_SLSH, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
63 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_EQL, _______, _______, _______,
64 KC_ESC, CALTDEL, TSKMGR, _______, _______, KC_NUBS, KC_GRV, _______
65),
66
67/* [2]
68* ,---------------------------------------------------------------------------------------.
69* | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
70* |------------+------+------+------+------+------+------+------+------+------+------+---|
71* | | | | UP | | | | _ | | [ | ] | |
72* |------------+------+------+------+------+-------------+------+------+------+------+---|
73* | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
74* |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
75* | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
76* |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
77* | RESET | | | | | | | |
78* `---------------------------------------------------------------------------------------'
79 */
80[2] = LAYOUT_5x12_2x225( \
81 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
82 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
83 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
84 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
85 RESET, _______, _______, _______, _______, _______, _______, _______
86),
87 65
66 /* [2]
67 * ,---------------------------------------------------------------------------------------.
68 * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
69 * |------------+------+------+------+------+------+------+------+------+------+------+---|
70 * | | | | UP | | | | _ | | [ | ] | |
71 * |------------+------+------+------+------+-------------+------+------+------+------+---|
72 * | | | LEFT | DOWN | RIGHT | | | - | | [ | ] | |
73 * |------------+------+------+------+------+-----+-----+------+------+------+------+-----|
74 * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
75 * |-------+-------+-------+-------+-------+-------+------+------+------+------+------+---|
76 * | RESET | | | | | | | |
77 * `---------------------------------------------------------------------------------------'
78 */
79 [2] = LAYOUT_ortho_5x12_2x225u(
80 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
81 _______, _______, _______, KC_UP, _______, _______, _______, KC_UNDS, _______, KC_LBRC, KC_RBRC, _______,
82 _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_MINS, _______, KC_LCBR, KC_RCBR, _______,
83 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
84 RESET, _______, _______, _______, _______, _______, _______, _______
85 )
88}; 86};