diff options
| author | Jonathan Rascher <jon@bcat.name> | 2021-08-03 11:39:43 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-03 09:39:43 -0700 |
| commit | 853344235a1cc1329000af2887de50ed4ce964a2 (patch) | |
| tree | 4fdaf243273da277944c783da9c44c93d6fd8c89 | |
| parent | 4d42fb203143340045bfe760bfbe2e427315cf5a (diff) | |
| download | qmk_firmware-853344235a1cc1329000af2887de50ed4ce964a2.tar.gz qmk_firmware-853344235a1cc1329000af2887de50ed4ce964a2.zip | |
[Keymap] Minor cleanup of bcat keymaps and userspace (#13224)
| -rw-r--r-- | keyboards/9key/keymaps/bcat/keymap.c | 21 | ||||
| -rw-r--r-- | keyboards/eco/keymaps/bcat/keymap.c | 9 | ||||
| -rw-r--r-- | keyboards/keebio/bdn9/keymaps/bcat/keymap.c | 30 | ||||
| -rw-r--r-- | keyboards/keebio/quefrency/keymaps/bcat/config.h | 26 | ||||
| -rw-r--r-- | keyboards/keebio/quefrency/keymaps/bcat/keymap.c | 19 | ||||
| -rw-r--r-- | keyboards/lily58/keymaps/bcat/config.h | 16 | ||||
| -rw-r--r-- | keyboards/lily58/keymaps/bcat/keymap.c | 9 | ||||
| -rw-r--r-- | layouts/community/60_ansi_split_bs_rshift/bcat/keymap.c | 18 | ||||
| -rw-r--r-- | layouts/community/60_tsangan_hhkb/bcat/keymap.c | 20 | ||||
| -rw-r--r-- | layouts/community/65_ansi_blocker_split_bs/bcat/keymap.c | 18 | ||||
| -rw-r--r-- | layouts/community/split_3x6_3/bcat/keymap.c | 9 | ||||
| -rw-r--r-- | layouts/community/split_3x6_3/bcat/readme.md | 5 | ||||
| -rw-r--r-- | users/bcat/bcat.c | 16 | ||||
| -rw-r--r-- | users/bcat/bcat.h | 18 | ||||
| -rw-r--r-- | users/bcat/readme.md | 2 |
15 files changed, 198 insertions, 38 deletions
diff --git a/keyboards/9key/keymaps/bcat/keymap.c b/keyboards/9key/keymaps/bcat/keymap.c index 5c30d6308..5c08a42a5 100644 --- a/keyboards/9key/keymaps/bcat/keymap.c +++ b/keyboards/9key/keymaps/bcat/keymap.c | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | /* Copyright 2021 Jonathan Rascher | ||
| 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 | |||
| 1 | #include QMK_KEYBOARD_H | 17 | #include QMK_KEYBOARD_H |
| 2 | 18 | ||
| 3 | enum layer { | 19 | enum layer { |
| @@ -6,18 +22,19 @@ enum layer { | |||
| 6 | }; | 22 | }; |
| 7 | 23 | ||
| 8 | #define LY_FUNC MO(LAYER_FUNCTION) | 24 | #define LY_FUNC MO(LAYER_FUNCTION) |
| 9 | #define KY_LOCK LCA(KC_L) /* Cinnamon lock screen */ | 25 | #define KY_LOCK LCA(KC_L) /* Cinnamon lock screen */ |
| 10 | 26 | ||
| 11 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 27 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 28 | // clang-format off | ||
| 12 | [LAYER_DEFAULT] = LAYOUT( | 29 | [LAYER_DEFAULT] = LAYOUT( |
| 13 | KC_MPLY, KC_VOLU, KC_MSTP, | 30 | KC_MPLY, KC_VOLU, KC_MSTP, |
| 14 | KC_MPRV, KC_VOLD, KC_MNXT, | 31 | KC_MPRV, KC_VOLD, KC_MNXT, |
| 15 | KY_LOCK, KC_MUTE, LY_FUNC | 32 | KY_LOCK, KC_MUTE, LY_FUNC |
| 16 | ), | 33 | ), |
| 17 | |||
| 18 | [LAYER_FUNCTION] = LAYOUT( | 34 | [LAYER_FUNCTION] = LAYOUT( |
| 19 | EEP_RST, _______, RESET, | 35 | EEP_RST, _______, RESET, |
| 20 | _______, _______, _______, | 36 | _______, _______, _______, |
| 21 | _______, _______, _______ | 37 | _______, _______, _______ |
| 22 | ), | 38 | ), |
| 39 | // clang-format on | ||
| 23 | }; | 40 | }; |
diff --git a/keyboards/eco/keymaps/bcat/keymap.c b/keyboards/eco/keymaps/bcat/keymap.c index 066acbe64..d46a7d416 100644 --- a/keyboards/eco/keymaps/bcat/keymap.c +++ b/keyboards/eco/keymaps/bcat/keymap.c | |||
| @@ -34,6 +34,7 @@ enum layer { | |||
| 34 | #define KY_ZMRST LCTL(KC_0) | 34 | #define KY_ZMRST LCTL(KC_0) |
| 35 | 35 | ||
| 36 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 36 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 37 | // clang-format off | ||
| 37 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/2c11371c7a5f7cd08a0132631d3d3281 */ | 38 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/2c11371c7a5f7cd08a0132631d3d3281 */ |
| 38 | [LAYER_DEFAULT] = LAYOUT( | 39 | [LAYER_DEFAULT] = LAYOUT( |
| 39 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_LBRC, KC_RBRC, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, | 40 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_LBRC, KC_RBRC, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, |
| @@ -41,7 +42,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 41 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_END, KC_PGDN, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | 42 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_END, KC_PGDN, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, |
| 42 | XXXXXXX, XXXXXXX, KC_LALT, KC_LCTL, LY_LWR, KC_SPC, XXXXXXX, XXXXXXX, KC_ENT, LY_RSE, KC_RALT, KC_RGUI, XXXXXXX, XXXXXXX | 43 | XXXXXXX, XXXXXXX, KC_LALT, KC_LCTL, LY_LWR, KC_SPC, XXXXXXX, XXXXXXX, KC_ENT, LY_RSE, KC_RALT, KC_RGUI, XXXXXXX, XXXXXXX |
| 43 | ), | 44 | ), |
| 44 | |||
| 45 | /* Lower layer: http://www.keyboard-layout-editor.com/#/gists/11256970dc0552886a82382ee02fa415 */ | 45 | /* Lower layer: http://www.keyboard-layout-editor.com/#/gists/11256970dc0552886a82382ee02fa415 */ |
| 46 | [LAYER_LOWER] = LAYOUT( | 46 | [LAYER_LOWER] = LAYOUT( |
| 47 | MC_ALTT, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, _______, _______, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______, | 47 | MC_ALTT, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, _______, _______, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______, |
| @@ -49,7 +49,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 49 | _______, KC_APP, KC_PSCR, KC_SLCK, KC_PAUS, KC_LGUI, _______, _______, KC_BSLS, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_GRV, | 49 | _______, KC_APP, KC_PSCR, KC_SLCK, KC_PAUS, KC_LGUI, _______, _______, KC_BSLS, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_GRV, |
| 50 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | 50 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ |
| 51 | ), | 51 | ), |
| 52 | |||
| 53 | /* Raise layer: http://www.keyboard-layout-editor.com/#/gists/308a8be75e0b85902dc18db1b2546862 */ | 52 | /* Raise layer: http://www.keyboard-layout-editor.com/#/gists/308a8be75e0b85902dc18db1b2546862 */ |
| 54 | [LAYER_RAISE] = LAYOUT( | 53 | [LAYER_RAISE] = LAYOUT( |
| 55 | KC_CAPS, KC_1, KC_2, KC_3, KC_4, KC_5, _______, _______, KC_6, KC_7, KC_8, KC_9, KC_0, _______, | 54 | KC_CAPS, KC_1, KC_2, KC_3, KC_4, KC_5, _______, _______, KC_6, KC_7, KC_8, KC_9, KC_0, _______, |
| @@ -57,7 +56,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 57 | _______, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END, KC_F12, KC_INS, | 56 | _______, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END, KC_F12, KC_INS, |
| 58 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | 57 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ |
| 59 | ), | 58 | ), |
| 60 | |||
| 61 | /* Adjust layer: http://www.keyboard-layout-editor.com/#/gists/b18aafa0327d7e83eaf485546c067a21 */ | 59 | /* Adjust layer: http://www.keyboard-layout-editor.com/#/gists/b18aafa0327d7e83eaf485546c067a21 */ |
| 62 | [LAYER_ADJUST] = LAYOUT( | 60 | [LAYER_ADJUST] = LAYOUT( |
| 63 | _______, NK_TOGG, KC_MPLY, KC_VOLU, KC_MSTP, _______, _______, _______, EEP_RST, RESET, _______, _______, _______, _______, | 61 | _______, NK_TOGG, KC_MPLY, KC_VOLU, KC_MSTP, _______, _______, _______, EEP_RST, RESET, _______, _______, _______, _______, |
| @@ -65,8 +63,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 65 | _______, _______, _______, KC_MUTE, _______, _______, _______, _______, RGB_HUI, RGB_SAD, RGB_SAI, RGB_HUD, RGB_SPD, _______, | 63 | _______, _______, _______, KC_MUTE, _______, _______, _______, _______, RGB_HUI, RGB_SAD, RGB_SAI, RGB_HUD, RGB_SPD, _______, |
| 66 | _______, _______, _______, _______, _______, _______, _______, _______, RGB_TOG, _______, _______, _______, _______, _______ | 64 | _______, _______, _______, _______, _______, _______, _______, _______, RGB_TOG, _______, _______, _______, _______, _______ |
| 67 | ), | 65 | ), |
| 66 | // clang-format on | ||
| 68 | }; | 67 | }; |
| 69 | 68 | ||
| 70 | layer_state_t layer_state_set_keymap(layer_state_t state) { | 69 | layer_state_t layer_state_set_keymap(layer_state_t state) { return update_tri_layer_state(state, LAYER_LOWER, LAYER_RAISE, LAYER_ADJUST); } |
| 71 | return update_tri_layer_state(state, LAYER_LOWER, LAYER_RAISE, LAYER_ADJUST); | ||
| 72 | } | ||
diff --git a/keyboards/keebio/bdn9/keymaps/bcat/keymap.c b/keyboards/keebio/bdn9/keymaps/bcat/keymap.c index 06ba9a559..c64f702b2 100644 --- a/keyboards/keebio/bdn9/keymaps/bcat/keymap.c +++ b/keyboards/keebio/bdn9/keymaps/bcat/keymap.c | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | /* Copyright 2021 Jonathan Rascher | ||
| 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 | |||
| 1 | #include QMK_KEYBOARD_H | 17 | #include QMK_KEYBOARD_H |
| 2 | 18 | ||
| 3 | enum layer { | 19 | enum layer { |
| @@ -8,17 +24,18 @@ enum layer { | |||
| 8 | #define LY_SECND MO(LAYER_SECOND) | 24 | #define LY_SECND MO(LAYER_SECOND) |
| 9 | 25 | ||
| 10 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 27 | // clang-format off | ||
| 11 | [LAYER_FIRST] = LAYOUT( | 28 | [LAYER_FIRST] = LAYOUT( |
| 12 | KC_MUTE, LY_SECND, BL_BRTG, | 29 | KC_MUTE, LY_SECND, BL_BRTG, |
| 13 | KC_F4, KC_F5, KC_F6, | 30 | KC_F4, KC_F5, KC_F6, |
| 14 | KC_F1, KC_F2, KC_F3 | 31 | KC_F1, KC_F2, KC_F3 |
| 15 | ), | 32 | ), |
| 16 | |||
| 17 | [LAYER_SECOND] = LAYOUT( | 33 | [LAYER_SECOND] = LAYOUT( |
| 18 | EEP_RST, _______, RESET, | 34 | EEP_RST, _______, RESET, |
| 19 | KC_F10, KC_F11, KC_F12, | 35 | KC_F10, KC_F11, KC_F12, |
| 20 | KC_F7, KC_F8, KC_F9 | 36 | KC_F7, KC_F8, KC_F9 |
| 21 | ), | 37 | ), |
| 38 | // clang-format on | ||
| 22 | }; | 39 | }; |
| 23 | 40 | ||
| 24 | bool encoder_update_user(uint8_t index, bool clockwise) { | 41 | bool encoder_update_user(uint8_t index, bool clockwise) { |
| @@ -26,20 +43,17 @@ bool encoder_update_user(uint8_t index, bool clockwise) { | |||
| 26 | /* Top-left encoder (volume) */ | 43 | /* Top-left encoder (volume) */ |
| 27 | case 0: | 44 | case 0: |
| 28 | tap_code(clockwise ? KC_VOLU : KC_VOLD); | 45 | tap_code(clockwise ? KC_VOLU : KC_VOLD); |
| 29 | break; | 46 | return false; |
| 30 | |||
| 31 | /* Top-right encoder (backlight brightness) */ | 47 | /* Top-right encoder (backlight brightness) */ |
| 32 | case 1: | 48 | case 1: |
| 49 | #if defined(BACKLIGHT_ENABLE) | ||
| 33 | if (clockwise) { | 50 | if (clockwise) { |
| 34 | #ifdef BACKLIGHT_ENABLE | ||
| 35 | backlight_increase(); | 51 | backlight_increase(); |
| 36 | #endif | ||
| 37 | } else { | 52 | } else { |
| 38 | #ifdef BACKLIGHT_ENABLE | ||
| 39 | backlight_decrease(); | 53 | backlight_decrease(); |
| 40 | #endif | ||
| 41 | } | 54 | } |
| 42 | break; | 55 | #endif |
| 56 | return false; | ||
| 43 | } | 57 | } |
| 44 | return true; | 58 | return true; |
| 45 | } | 59 | } |
diff --git a/keyboards/keebio/quefrency/keymaps/bcat/config.h b/keyboards/keebio/quefrency/keymaps/bcat/config.h index 34387f2dd..69771d36b 100644 --- a/keyboards/keebio/quefrency/keymaps/bcat/config.h +++ b/keyboards/keebio/quefrency/keymaps/bcat/config.h | |||
| @@ -1,10 +1,25 @@ | |||
| 1 | /* Copyright 2021 Jonathan Rascher | ||
| 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 | |||
| 1 | #pragma once | 17 | #pragma once |
| 2 | 18 | ||
| 3 | /* | 19 | /* Quefrency lacks I2C resistors on the right PCB, so the right half doesn't |
| 4 | * Quefrency lacks I2C resistors on the right PCB, so the right half doesn't | ||
| 5 | * work independently. (Presumably the floating I2C lines cause a problem.) | 20 | * work independently. (Presumably the floating I2C lines cause a problem.) |
| 6 | * Using serial seems sufficiently fast in practice and allows both halves to | 21 | * Using serial seems sufficiently fast in practice and allows both halves to be |
| 7 | * be used independently. | 22 | * used independently. |
| 8 | */ | 23 | */ |
| 9 | #define USE_SERIAL | 24 | #define USE_SERIAL |
| 10 | 25 | ||
| @@ -14,4 +29,5 @@ | |||
| 14 | 29 | ||
| 15 | /* Set up RGB lighting so it works with either side as master. */ | 30 | /* Set up RGB lighting so it works with either side as master. */ |
| 16 | #undef RGBLED_SPLIT | 31 | #undef RGBLED_SPLIT |
| 17 | #define RGBLED_SPLIT { 8, 9 } | 32 | #define RGBLED_SPLIT \ |
| 33 | { 8, 9 } | ||
diff --git a/keyboards/keebio/quefrency/keymaps/bcat/keymap.c b/keyboards/keebio/quefrency/keymaps/bcat/keymap.c index e73022d9b..d28a5083a 100644 --- a/keyboards/keebio/quefrency/keymaps/bcat/keymap.c +++ b/keyboards/keebio/quefrency/keymaps/bcat/keymap.c | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | /* Copyright 2021 Jonathan Rascher | ||
| 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 | |||
| 1 | #include QMK_KEYBOARD_H | 17 | #include QMK_KEYBOARD_H |
| 2 | 18 | ||
| 3 | enum layer { | 19 | enum layer { |
| @@ -8,6 +24,7 @@ enum layer { | |||
| 8 | #define LY_FN MO(LAYER_FUNCTION) | 24 | #define LY_FN MO(LAYER_FUNCTION) |
| 9 | 25 | ||
| 10 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 27 | // clang-format off | ||
| 11 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/60a262432bb340b37d364a4424f3037b */ | 28 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/60a262432bb340b37d364a4424f3037b */ |
| 12 | [LAYER_DEFAULT] = LAYOUT_65( | 29 | [LAYER_DEFAULT] = LAYOUT_65( |
| 13 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, KC_HOME, | 30 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, KC_HOME, |
| @@ -16,7 +33,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 16 | 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, | 33 | 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, |
| 17 | KC_LCTL, KC_LGUI, KC_LALT, LY_FN, KC_SPC, KC_SPC, XXXXXXX, KC_RALT, LY_FN, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | 34 | KC_LCTL, KC_LGUI, KC_LALT, LY_FN, KC_SPC, KC_SPC, XXXXXXX, KC_RALT, LY_FN, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT |
| 18 | ), | 35 | ), |
| 19 | |||
| 20 | /* Function layer: http://www.keyboard-layout-editor.com/#/gists/59636898946da51f91fb290f8e078b4d */ | 36 | /* Function layer: http://www.keyboard-layout-editor.com/#/gists/59636898946da51f91fb290f8e078b4d */ |
| 21 | [LAYER_FUNCTION] = LAYOUT_65( | 37 | [LAYER_FUNCTION] = LAYOUT_65( |
| 22 | _______, 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_INS, KC_DEL, RGB_HUI, | 38 | _______, 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_INS, KC_DEL, RGB_HUI, |
| @@ -25,4 +41,5 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 25 | _______, KC_APP, _______, KC_MUTE, _______, _______, _______, _______, _______, _______, _______, _______, RGB_VAI, RGB_HUD, | 41 | _______, KC_APP, _______, KC_MUTE, _______, _______, _______, _______, _______, _______, _______, _______, RGB_VAI, RGB_HUD, |
| 26 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_RMOD, RGB_VAD, RGB_MOD | 42 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_RMOD, RGB_VAD, RGB_MOD |
| 27 | ), | 43 | ), |
| 44 | // clang-format on | ||
| 28 | }; | 45 | }; |
diff --git a/keyboards/lily58/keymaps/bcat/config.h b/keyboards/lily58/keymaps/bcat/config.h index 180926204..dbe724d56 100644 --- a/keyboards/lily58/keymaps/bcat/config.h +++ b/keyboards/lily58/keymaps/bcat/config.h | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | /* Copyright 2021 Jonathan Rascher | ||
| 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 | |||
| 1 | #pragma once | 17 | #pragma once |
| 2 | 18 | ||
| 3 | #define EE_HANDS | 19 | #define EE_HANDS |
diff --git a/keyboards/lily58/keymaps/bcat/keymap.c b/keyboards/lily58/keymaps/bcat/keymap.c index 549363d03..69af2ca00 100644 --- a/keyboards/lily58/keymaps/bcat/keymap.c +++ b/keyboards/lily58/keymaps/bcat/keymap.c | |||
| @@ -34,6 +34,7 @@ enum layer { | |||
| 34 | #define KY_ZMRST LCTL(KC_0) | 34 | #define KY_ZMRST LCTL(KC_0) |
| 35 | 35 | ||
| 36 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 36 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 37 | // clang-format off | ||
| 37 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/e0eb3af65961e9fd612dcff3ddd88e4f */ | 38 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/e0eb3af65961e9fd612dcff3ddd88e4f */ |
| 38 | [LAYER_DEFAULT] = LAYOUT( | 39 | [LAYER_DEFAULT] = LAYOUT( |
| 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, | 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, |
| @@ -42,7 +43,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 42 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_WBAK, KC_WFWD, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | 43 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_WBAK, KC_WFWD, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, |
| 43 | KC_LALT, KC_LCTL, LY_LWR, KC_SPC, KC_ENT, LY_RSE, KC_RALT, KC_RGUI | 44 | KC_LALT, KC_LCTL, LY_LWR, KC_SPC, KC_ENT, LY_RSE, KC_RALT, KC_RGUI |
| 44 | ), | 45 | ), |
| 45 | |||
| 46 | /* Lower layer: http://www.keyboard-layout-editor.com/#/gists/19ad0d3b5d745fbb2818db09740f5a11 */ | 46 | /* Lower layer: http://www.keyboard-layout-editor.com/#/gists/19ad0d3b5d745fbb2818db09740f5a11 */ |
| 47 | [LAYER_LOWER] = LAYOUT( | 47 | [LAYER_LOWER] = LAYOUT( |
| 48 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 48 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
| @@ -51,7 +51,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 51 | _______, KC_APP, KC_PSCR, KC_SLCK, KC_PAUS, KC_LGUI, _______, _______, KC_BSLS, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_GRV, | 51 | _______, KC_APP, KC_PSCR, KC_SLCK, KC_PAUS, KC_LGUI, _______, _______, KC_BSLS, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_GRV, |
| 52 | _______, _______, _______, _______, _______, _______, _______, _______ | 52 | _______, _______, _______, _______, _______, _______, _______, _______ |
| 53 | ), | 53 | ), |
| 54 | |||
| 55 | /* Raise layer: http://www.keyboard-layout-editor.com/#/gists/912be7955f781cdaf692cc4d4c0b5823 */ | 54 | /* Raise layer: http://www.keyboard-layout-editor.com/#/gists/912be7955f781cdaf692cc4d4c0b5823 */ |
| 56 | [LAYER_RAISE] = LAYOUT( | 55 | [LAYER_RAISE] = LAYOUT( |
| 57 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 56 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
| @@ -60,7 +59,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 60 | _______, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END, KC_F12, KC_INS, | 59 | _______, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END, KC_F12, KC_INS, |
| 61 | _______, _______, _______, _______, _______, _______, _______, _______ | 60 | _______, _______, _______, _______, _______, _______, _______, _______ |
| 62 | ), | 61 | ), |
| 63 | |||
| 64 | /* Adjust layer: http://www.keyboard-layout-editor.com/#/gists/8f6a3f08350a9bbe1d414b22bca4e6c7 */ | 62 | /* Adjust layer: http://www.keyboard-layout-editor.com/#/gists/8f6a3f08350a9bbe1d414b22bca4e6c7 */ |
| 65 | [LAYER_ADJUST] = LAYOUT( | 63 | [LAYER_ADJUST] = LAYOUT( |
| 66 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 64 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
| @@ -69,8 +67,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 69 | _______, _______, _______, KC_MUTE, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 67 | _______, _______, _______, KC_MUTE, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
| 70 | _______, _______, _______, _______, _______, _______, _______, _______ | 68 | _______, _______, _______, _______, _______, _______, _______, _______ |
| 71 | ), | 69 | ), |
| 70 | // clang-format on | ||
| 72 | }; | 71 | }; |
| 73 | 72 | ||
| 74 | layer_state_t layer_state_set_keymap(layer_state_t state) { | 73 | layer_state_t layer_state_set_keymap(layer_state_t state) { return update_tri_layer_state(state, LAYER_LOWER, LAYER_RAISE, LAYER_ADJUST); } |
| 75 | return update_tri_layer_state(state, LAYER_LOWER, LAYER_RAISE, LAYER_ADJUST); | ||
| 76 | } | ||
diff --git a/layouts/community/60_ansi_split_bs_rshift/bcat/keymap.c b/layouts/community/60_ansi_split_bs_rshift/bcat/keymap.c index adb31525a..6bfafc332 100644 --- a/layouts/community/60_ansi_split_bs_rshift/bcat/keymap.c +++ b/layouts/community/60_ansi_split_bs_rshift/bcat/keymap.c | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | /* Copyright 2021 Jonathan Rascher | ||
| 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 | |||
| 1 | #include QMK_KEYBOARD_H | 17 | #include QMK_KEYBOARD_H |
| 2 | 18 | ||
| 3 | enum layer { | 19 | enum layer { |
| @@ -10,6 +26,7 @@ enum layer { | |||
| 10 | #define LY_FN2 MO(LAYER_FUNCTION_2) | 26 | #define LY_FN2 MO(LAYER_FUNCTION_2) |
| 11 | 27 | ||
| 12 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 28 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 29 | // clang-format off | ||
| 13 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/327b41b5a933b3d44bf60ca9822e85dc */ | 30 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/327b41b5a933b3d44bf60ca9822e85dc */ |
| 14 | [LAYER_DEFAULT] = LAYOUT_60_ansi_split_bs_rshift( | 31 | [LAYER_DEFAULT] = LAYOUT_60_ansi_split_bs_rshift( |
| 15 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, | 32 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, |
| @@ -36,4 +53,5 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 36 | _______, _______, _______, KC_MUTE, _______, BL_DEC, _______, RGB_SPD, RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, | 53 | _______, _______, _______, KC_MUTE, _______, BL_DEC, _______, RGB_SPD, RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, |
| 37 | _______, _______, _______, _______, _______, _______, _______, _______ | 54 | _______, _______, _______, _______, _______, _______, _______, _______ |
| 38 | ), | 55 | ), |
| 56 | // clang-format on | ||
| 39 | }; | 57 | }; |
diff --git a/layouts/community/60_tsangan_hhkb/bcat/keymap.c b/layouts/community/60_tsangan_hhkb/bcat/keymap.c index 2079adb93..05e6462d9 100644 --- a/layouts/community/60_tsangan_hhkb/bcat/keymap.c +++ b/layouts/community/60_tsangan_hhkb/bcat/keymap.c | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | /* Copyright 2021 Jonathan Rascher | ||
| 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 | |||
| 1 | #include QMK_KEYBOARD_H | 17 | #include QMK_KEYBOARD_H |
| 2 | 18 | ||
| 3 | enum layer { | 19 | enum layer { |
| @@ -10,6 +26,7 @@ enum layer { | |||
| 10 | #define LY_FN2 MO(LAYER_FUNCTION_2) | 26 | #define LY_FN2 MO(LAYER_FUNCTION_2) |
| 11 | 27 | ||
| 12 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 28 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 29 | // clang-format off | ||
| 13 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/86b33d75aa6f56d8781ab3d8475f4e77 */ | 30 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/86b33d75aa6f56d8781ab3d8475f4e77 */ |
| 14 | [LAYER_DEFAULT] = LAYOUT_60_tsangan_hhkb( | 31 | [LAYER_DEFAULT] = LAYOUT_60_tsangan_hhkb( |
| 15 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, | 32 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, |
| @@ -18,7 +35,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 18 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, LY_FN1, | 35 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, LY_FN1, |
| 19 | KC_LCTL, LY_FN2, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL | 36 | KC_LCTL, LY_FN2, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL |
| 20 | ), | 37 | ), |
| 21 | |||
| 22 | /* Function 1 layer: http://www.keyboard-layout-editor.com/#/gists/f6311fd7e315de781143b80eb040a551 */ | 38 | /* Function 1 layer: http://www.keyboard-layout-editor.com/#/gists/f6311fd7e315de781143b80eb040a551 */ |
| 23 | [LAYER_FUNCTION_1] = LAYOUT_60_tsangan_hhkb( | 39 | [LAYER_FUNCTION_1] = LAYOUT_60_tsangan_hhkb( |
| 24 | _______, 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_INS, KC_DEL, | 40 | _______, 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_INS, KC_DEL, |
| @@ -27,7 +43,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 27 | _______, KC_APP, _______, _______, _______, _______, _______, _______, KC_END, KC_PGDN, KC_DOWN, _______, _______, | 43 | _______, KC_APP, _______, _______, _______, _______, _______, _______, KC_END, KC_PGDN, KC_DOWN, _______, _______, |
| 28 | _______, _______, _______, _______, _______, _______, _______ | 44 | _______, _______, _______, _______, _______, _______, _______ |
| 29 | ), | 45 | ), |
| 30 | |||
| 31 | /* Function 2 layer: http://www.keyboard-layout-editor.com/#/gists/65ac939caec878401603bc36290852d4 */ | 46 | /* Function 2 layer: http://www.keyboard-layout-editor.com/#/gists/65ac939caec878401603bc36290852d4 */ |
| 32 | [LAYER_FUNCTION_2] = LAYOUT_60_tsangan_hhkb( | 47 | [LAYER_FUNCTION_2] = LAYOUT_60_tsangan_hhkb( |
| 33 | _______, 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_INS, KC_DEL, | 48 | _______, 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_INS, KC_DEL, |
| @@ -36,4 +51,5 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 36 | _______, _______, _______, KC_MUTE, _______, BL_DEC, _______, RGB_SPD, RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, | 51 | _______, _______, _______, KC_MUTE, _______, BL_DEC, _______, RGB_SPD, RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, |
| 37 | _______, _______, _______, _______, _______, _______, _______ | 52 | _______, _______, _______, _______, _______, _______, _______ |
| 38 | ), | 53 | ), |
| 54 | // clang-format on | ||
| 39 | }; | 55 | }; |
diff --git a/layouts/community/65_ansi_blocker_split_bs/bcat/keymap.c b/layouts/community/65_ansi_blocker_split_bs/bcat/keymap.c index 75b891cda..c91a1b0ea 100644 --- a/layouts/community/65_ansi_blocker_split_bs/bcat/keymap.c +++ b/layouts/community/65_ansi_blocker_split_bs/bcat/keymap.c | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | /* Copyright 2021 Jonathan Rascher | ||
| 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 | |||
| 1 | #include QMK_KEYBOARD_H | 17 | #include QMK_KEYBOARD_H |
| 2 | 18 | ||
| 3 | enum layer { | 19 | enum layer { |
| @@ -8,6 +24,7 @@ enum layer { | |||
| 8 | #define LY_FN MO(LAYER_FUNCTION) | 24 | #define LY_FN MO(LAYER_FUNCTION) |
| 9 | 25 | ||
| 10 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 27 | // clang-format off | ||
| 11 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/dd675b40cc4df2c7bb78847ac29f5988 */ | 28 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/dd675b40cc4df2c7bb78847ac29f5988 */ |
| 12 | [LAYER_DEFAULT] = LAYOUT_65_ansi_blocker_split_bs( | 29 | [LAYER_DEFAULT] = LAYOUT_65_ansi_blocker_split_bs( |
| 13 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, KC_HOME, | 30 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, KC_HOME, |
| @@ -25,4 +42,5 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 25 | _______, KC_APP, _______, KC_MUTE, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 42 | _______, KC_APP, _______, KC_MUTE, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
| 26 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | 43 | _______, _______, _______, _______, _______, _______, _______, _______, _______ |
| 27 | ), | 44 | ), |
| 45 | // clang-format on | ||
| 28 | }; | 46 | }; |
diff --git a/layouts/community/split_3x6_3/bcat/keymap.c b/layouts/community/split_3x6_3/bcat/keymap.c index 934a8e31f..4f68c8f84 100644 --- a/layouts/community/split_3x6_3/bcat/keymap.c +++ b/layouts/community/split_3x6_3/bcat/keymap.c | |||
| @@ -34,6 +34,7 @@ enum layer { | |||
| 34 | #define KY_ZMRST LCTL(KC_0) | 34 | #define KY_ZMRST LCTL(KC_0) |
| 35 | 35 | ||
| 36 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 36 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 37 | // clang-format off | ||
| 37 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/08d9827d916662a9414f48805aa895a5 */ | 38 | /* Default layer: http://www.keyboard-layout-editor.com/#/gists/08d9827d916662a9414f48805aa895a5 */ |
| 38 | [LAYER_DEFAULT] = LAYOUT_split_3x6_3( | 39 | [LAYER_DEFAULT] = LAYOUT_split_3x6_3( |
| 39 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, | 40 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, |
| @@ -41,7 +42,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 41 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | 42 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, |
| 42 | KC_LCTL, LY_LWR, KC_SPC, KC_ENT, LY_RSE, KC_RALT | 43 | KC_LCTL, LY_LWR, KC_SPC, KC_ENT, LY_RSE, KC_RALT |
| 43 | ), | 44 | ), |
| 44 | |||
| 45 | /* Lower layer: http://www.keyboard-layout-editor.com/#/gists/c3fba5eaa2cd70fdfbdbc0f9e34d3bc0 */ | 45 | /* Lower layer: http://www.keyboard-layout-editor.com/#/gists/c3fba5eaa2cd70fdfbdbc0f9e34d3bc0 */ |
| 46 | [LAYER_LOWER] = LAYOUT_split_3x6_3( | 46 | [LAYER_LOWER] = LAYOUT_split_3x6_3( |
| 47 | MC_ALTT, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______, | 47 | MC_ALTT, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______, |
| @@ -49,7 +49,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 49 | _______, KC_APP, KC_PSCR, KC_SLCK, KC_PAUS, KC_LGUI, KC_BSLS, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_GRV, | 49 | _______, KC_APP, KC_PSCR, KC_SLCK, KC_PAUS, KC_LGUI, KC_BSLS, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_GRV, |
| 50 | _______, _______, _______, _______, _______, _______ | 50 | _______, _______, _______, _______, _______, _______ |
| 51 | ), | 51 | ), |
| 52 | |||
| 53 | /* Raise layer: http://www.keyboard-layout-editor.com/#/gists/08b44355d4ca85d294bad9e2821f91d7 */ | 52 | /* Raise layer: http://www.keyboard-layout-editor.com/#/gists/08b44355d4ca85d294bad9e2821f91d7 */ |
| 54 | [LAYER_RAISE] = LAYOUT_split_3x6_3( | 53 | [LAYER_RAISE] = LAYOUT_split_3x6_3( |
| 55 | KC_CAPS, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______, | 54 | KC_CAPS, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______, |
| @@ -57,7 +56,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 57 | _______, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_HOME, KC_PGDN, KC_PGUP, KC_END, KC_F12, KC_INS, | 56 | _______, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_HOME, KC_PGDN, KC_PGUP, KC_END, KC_F12, KC_INS, |
| 58 | _______, _______, _______, _______, _______, _______ | 57 | _______, _______, _______, _______, _______, _______ |
| 59 | ), | 58 | ), |
| 60 | |||
| 61 | /* Adjust layer: http://www.keyboard-layout-editor.com/#/gists/77e7572e077b36a23eb2086017e16fee */ | 59 | /* Adjust layer: http://www.keyboard-layout-editor.com/#/gists/77e7572e077b36a23eb2086017e16fee */ |
| 62 | [LAYER_ADJUST] = LAYOUT_split_3x6_3( | 60 | [LAYER_ADJUST] = LAYOUT_split_3x6_3( |
| 63 | _______, NK_TOGG, KC_MPLY, KC_VOLU, KC_MSTP, _______, EEP_RST, RESET, _______, _______, _______, _______, | 61 | _______, NK_TOGG, KC_MPLY, KC_VOLU, KC_MSTP, _______, EEP_RST, RESET, _______, _______, _______, _______, |
| @@ -65,8 +63,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 65 | _______, _______, _______, KC_MUTE, _______, _______, RGB_HUI, RGB_SAD, RGB_SAI, RGB_HUD, RGB_SPD, _______, | 63 | _______, _______, _______, KC_MUTE, _______, _______, RGB_HUI, RGB_SAD, RGB_SAI, RGB_HUD, RGB_SPD, _______, |
| 66 | _______, _______, _______, RGB_TOG, _______, _______ | 64 | _______, _______, _______, RGB_TOG, _______, _______ |
| 67 | ), | 65 | ), |
| 66 | // clang-format on | ||
| 68 | }; | 67 | }; |
| 69 | 68 | ||
| 70 | layer_state_t layer_state_set_keymap(layer_state_t state) { | 69 | layer_state_t layer_state_set_keymap(layer_state_t state) { return update_tri_layer_state(state, LAYER_LOWER, LAYER_RAISE, LAYER_ADJUST); } |
| 71 | return update_tri_layer_state(state, LAYER_LOWER, LAYER_RAISE, LAYER_ADJUST); | ||
| 72 | } | ||
diff --git a/layouts/community/split_3x6_3/bcat/readme.md b/layouts/community/split_3x6_3/bcat/readme.md index ed17b8418..c4bf891c4 100644 --- a/layouts/community/split_3x6_3/bcat/readme.md +++ b/layouts/community/split_3x6_3/bcat/readme.md | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | # bcat's split 3x6 + 3 thumb keys layout | 1 | # bcat's split 3x6 + 3 thumb keys layout |
| 2 | 2 | ||
| 3 | (See also the | ||
| 4 | [BlueMicro](https://github.com/jpconstantineau/BlueMicro_BLE/tree/master/firmware/keyboards/crkbd/keymaps/bcat) | ||
| 5 | and [ZMK](https://github.com/bcat/zmk-config/blob/master/config/corne.keymap) | ||
| 6 | versions of this keymap.) | ||
| 7 | |||
| 3 | This is my favorite split ergo layout for typing, featuring the traditional | 8 | This is my favorite split ergo layout for typing, featuring the traditional |
| 4 | four ortho/ergo layers (Default, Lower, Raise, Adjust). It is loosely inspired | 9 | four ortho/ergo layers (Default, Lower, Raise, Adjust). It is loosely inspired |
| 5 | by the default Planck (numbers on Lower, symbols on Raise) and Crkbd (Space on | 10 | by the default Planck (numbers on Lower, symbols on Raise) and Crkbd (Space on |
diff --git a/users/bcat/bcat.c b/users/bcat/bcat.c index 397d565da..f21d282e4 100644 --- a/users/bcat/bcat.c +++ b/users/bcat/bcat.c | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | /* Copyright 2021 Jonathan Rascher | ||
| 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 | |||
| 1 | #include "bcat.h" | 17 | #include "bcat.h" |
| 2 | 18 | ||
| 3 | #if defined(RGBLIGHT_ENABLE) | 19 | #if defined(RGBLIGHT_ENABLE) |
diff --git a/users/bcat/bcat.h b/users/bcat/bcat.h index 1ea05e5fa..0dae774ec 100644 --- a/users/bcat/bcat.h +++ b/users/bcat/bcat.h | |||
| @@ -1,8 +1,24 @@ | |||
| 1 | /* Copyright 2021 Jonathan Rascher | ||
| 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 | |||
| 1 | #pragma once | 17 | #pragma once |
| 2 | 18 | ||
| 3 | #include "quantum.h" | 19 | #include "quantum.h" |
| 4 | 20 | ||
| 5 | enum user_keycodes { | 21 | enum user_keycode { |
| 6 | MC_ALTT = SAFE_RANGE, | 22 | MC_ALTT = SAFE_RANGE, |
| 7 | KEYMAP_SAFE_RANGE, | 23 | KEYMAP_SAFE_RANGE, |
| 8 | }; | 24 | }; |
diff --git a/users/bcat/readme.md b/users/bcat/readme.md index 6d097d663..1922f95f4 100644 --- a/users/bcat/readme.md +++ b/users/bcat/readme.md | |||
| @@ -15,7 +15,7 @@ Columnar-staggered split ergo layout, preferred for typing. Used on Crkbd. | |||
| 15 | * [60% Tsangan | 15 | * [60% Tsangan |
| 16 | HHKB](https://github.com/qmk/qmk_firmware/tree/master/layouts/community/60_tsangan_hhkb/bcat): | 16 | HHKB](https://github.com/qmk/qmk_firmware/tree/master/layouts/community/60_tsangan_hhkb/bcat): |
| 17 | Row-staggered layout, preferred for gaming. Used on ai03 Polaris, CannonKeys | 17 | Row-staggered layout, preferred for gaming. Used on ai03 Polaris, CannonKeys |
| 18 | AN-C, CannonKeys Instant60. | 18 | AN-C, CannonKeys Instant60, DZ60. |
| 19 | 19 | ||
| 20 | ## Other keymaps | 20 | ## Other keymaps |
| 21 | 21 | ||
