aboutsummaryrefslogtreecommitdiff
path: root/keyboards/kbdfans
diff options
context:
space:
mode:
authorJonathan Rascher <jon@bcat.name>2019-08-30 19:45:49 -0500
committerDrashna Jaelre <drashna@live.com>2019-08-30 17:45:49 -0700
commit9340b70b7e5779409bced9c30df0e4afd645f8b8 (patch)
treeeebfd2a0467d687944dbb07011655992636393bb /keyboards/kbdfans
parent733ec614d89b42f589075a28d6041c0f756e60b4 (diff)
downloadqmk_firmware-9340b70b7e5779409bced9c30df0e4afd645f8b8.tar.gz
qmk_firmware-9340b70b7e5779409bced9c30df0e4afd645f8b8.zip
[Keyboard] Assorted personal keymap/layout updates (#6621)
* Switch Quefrency back to I2C (#6161 fixes the lag) * Update Quefrency keymap * Add reset and EEPROM reset keybindings so these tasks can be performed separately, rather than relying on Bootmagic Lite, which performs both tasks at the same time. * Move Caps Lock from Fn+Ctrl to Fn+Tab since Fn+Ctrl is sometimes used as part of a more complex keybinding, whereas Fn+Tab is always safe. * Update KBD67 keymap * Add reset and EEPROM reset keybindings so these tasks can be performed separately, rather than relying on Bootmagic Lite, which performs both tasks at the same time. * Move Caps Lock from Fn+Ctrl to Fn+Tab since Fn+Ctrl is sometimes used as part of a more complex keybinding, whereas Fn+Tab is always safe. * Move Menu to a layer tap on the Fn key since that's a more natural location. * Update 60% Tsangan HHKB layout * Move Caps Lock from Fn+Ctrl to Fn+Tab since Fn+Ctrl is sometimes used as part of a more complex keybinding, whereas Fn+Tab is always safe. * Update 60% ANSI split backspace/right-shift layout * Add reset and EEPROM reset keybindings so these tasks can be performed separately, rather than relying on Bootmagic Lite, which performs both tasks at the same time. * Move Caps Lock from Fn+Ctrl to Fn+Tab since Fn+Ctrl is sometimes used as part of a more complex keybinding, whereas Fn+Tab is always safe.
Diffstat (limited to 'keyboards/kbdfans')
-rw-r--r--keyboards/kbdfans/kbd67/hotswap/keymaps/bcat/keymap.c10
-rw-r--r--keyboards/kbdfans/kbd67/hotswap/keymaps/bcat/readme.md6
2 files changed, 8 insertions, 8 deletions
diff --git a/keyboards/kbdfans/kbd67/hotswap/keymaps/bcat/keymap.c b/keyboards/kbdfans/kbd67/hotswap/keymaps/bcat/keymap.c
index 6cb6afaea..4db53ab08 100644
--- a/keyboards/kbdfans/kbd67/hotswap/keymaps/bcat/keymap.c
+++ b/keyboards/kbdfans/kbd67/hotswap/keymaps/bcat/keymap.c
@@ -5,8 +5,8 @@ enum layer {
5 LAYER_FUNCTION, 5 LAYER_FUNCTION,
6}; 6};
7 7
8/* Switch to function layer when held. */ 8/* Switch to function layer when held; send menu key when tappped. */
9#define LY_FUNC MO(LAYER_FUNCTION) 9#define LY_FUNC LT(LAYER_FUNCTION, KC_APP)
10 10
11const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { 11const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
12 /* Default layer: http://www.keyboard-layout-editor.com/#/gists/dd675b40cc4df2c7bb78847ac29f5988 */ 12 /* Default layer: http://www.keyboard-layout-editor.com/#/gists/dd675b40cc4df2c7bb78847ac29f5988 */
@@ -21,9 +21,9 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
21 /* Function layer: http://www.keyboard-layout-editor.com/#/gists/f29128427f674c43777f045e363d1b44 */ 21 /* Function layer: http://www.keyboard-layout-editor.com/#/gists/f29128427f674c43777f045e363d1b44 */
22 [LAYER_FUNCTION] = LAYOUT( 22 [LAYER_FUNCTION] = LAYOUT(
23 _______, 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, _______, 23 _______, 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, _______,
24 _______, KC_MPLY, KC_VOLU, KC_MSTP, _______, _______, _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, _______, _______, 24 KC_CAPS, KC_MPLY, KC_VOLU, KC_MSTP, _______, _______, EEP_RST, RESET, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, _______, _______,
25 KC_CAPS, KC_MPRV, KC_VOLD, KC_MNXT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, 25 _______, KC_MPRV, KC_VOLD, KC_MNXT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
26 _______, _______, KC_MUTE, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, 26 _______, _______, KC_MUTE, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
27 _______, _______, _______, _______, KC_APP, _______, _______, _______, _______ 27 _______, _______, _______, _______, _______, _______, _______, _______, _______
28 ), 28 ),
29}; 29};
diff --git a/keyboards/kbdfans/kbd67/hotswap/keymaps/bcat/readme.md b/keyboards/kbdfans/kbd67/hotswap/keymaps/bcat/readme.md
index d1779152f..4f20c24ae 100644
--- a/keyboards/kbdfans/kbd67/hotswap/keymaps/bcat/readme.md
+++ b/keyboards/kbdfans/kbd67/hotswap/keymaps/bcat/readme.md
@@ -1,4 +1,4 @@
1# bcat's Quefrency 65% layout 1# bcat's KBD67 hotswap layout
2 2
3This is pretty much a stock 65% split keyboard layout, with an HHKB-style 3This is pretty much a stock 65% split keyboard layout, with an HHKB-style
4(split) backspace and media keys in the function layer centered around the WASD 4(split) backspace and media keys in the function layer centered around the WASD
@@ -6,8 +6,8 @@ cluster.
6 6
7## Default layer 7## Default layer
8 8
9![Default layer layout](https://i.imgur.com/stwELz3.png) 9![Default layer layout](https://i.imgur.com/iJsG6Z8.png)
10 10
11## Function layer 11## Function layer
12 12
13![Function layer layout](https://i.imgur.com/urDnuTC.png) 13![Function layer layout](https://i.imgur.com/eRKdeph.png)