aboutsummaryrefslogtreecommitdiffstats
path: root/.config/qmk_firmware/keyboards/keebio/nyquist/keymaps/ageha
diff options
context:
space:
mode:
authorkatherine <ageha@airen-no-jikken.icu>2022-06-17 07:00:05 -0700
committerkatherine <ageha@airen-no-jikken.icu>2022-06-17 07:00:05 -0700
commite6b49c47c69fbb72d827f85ba577dd8e2492ea91 (patch)
treec44392990663869637ed8020a25e86e6b04aa800 /.config/qmk_firmware/keyboards/keebio/nyquist/keymaps/ageha
parent58529a552b973f7c3cf45fb7796fc0d4e526875c (diff)
downloaddotfiles-e6b49c47c69fbb72d827f85ba577dd8e2492ea91.tar.gz
add persistent FN toggle
Diffstat (limited to '.config/qmk_firmware/keyboards/keebio/nyquist/keymaps/ageha')
-rw-r--r--.config/qmk_firmware/keyboards/keebio/nyquist/keymaps/ageha/keymap.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/.config/qmk_firmware/keyboards/keebio/nyquist/keymaps/ageha/keymap.c b/.config/qmk_firmware/keyboards/keebio/nyquist/keymaps/ageha/keymap.c
index 76540c9..ac5559b 100644
--- a/.config/qmk_firmware/keyboards/keebio/nyquist/keymaps/ageha/keymap.c
+++ b/.config/qmk_firmware/keyboards/keebio/nyquist/keymaps/ageha/keymap.c
@@ -73,15 +73,17 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
const uint16_t PROGMEM combo_qwerty[] = { KC_LCTL, KC_RCTL, COMBO_END };
+const uint16_t PROGMEM combo_fn[] = { KC_LALT, KC_RALT, COMBO_END };
combo_t key_combos[] = {
COMBO(combo_qwerty, TG(_QWERTY)),
+ COMBO(combo_fn, TG(_FN)),
};
uint16_t COMBO_LEN = sizeof(key_combos) / sizeof(combo_t);
void keyboard_post_init_user(void) {
- rgblight_disable();
rgblight_sethsv(148, 56, 71);
rgblight_mode(RGBLIGHT_MODE_BREATHING);
+ rgblight_disable();
}