From 98f879ee45bb4fd5e1b29318a27633f8788c2764 Mon Sep 17 00:00:00 2001 From: Dave G Vigil Sr Date: Fri, 22 Mar 2024 10:57:39 -0500 Subject: [PATCH] Added SPOTLI to Iris keymap --- iris/keymap.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/iris/keymap.c b/iris/keymap.c index 0a36693..8d690fd 100644 --- a/iris/keymap.c +++ b/iris/keymap.c @@ -44,7 +44,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { //├────────┼────────┼────────┼────────┼────────┼────────┤ ├────────┼────────┼────────┼────────┼────────┼────────┤ KC_LCTL, __________________BASE_L2____________________, __________________BASE_R2____________________, _______, //├────────┼────────┼────────┼────────┼────────┼────────┼────────┐ ┌────────┼────────┼────────┼────────┼────────┼────────┼────────┤ - KC_LSFT, __________________BASE_L3____________________,KC_HOME, _______, __________________BASE_R3____________________, KC_RSFT, + KC_LSFT, __________________BASE_L3____________________,SPOTLI, _______, __________________BASE_R3____________________, KC_RSFT, //└────────┴────────┴────────┴───┬────┴───┬────┴───┬────┴───┬────┘ └───┬────┴───┬────┴───┬────┴───┬────┴────────┴────────┴────────┘ ___________THUMB_L3________, ___________THUMB_R3________ // └────────┴────────┴────────┘ └────────┴────────┴────────┘ @@ -233,6 +233,11 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { SEND_STRING("10242677"); } return false; + case SPOTLI: + if (record->event.pressed) { + tap_code16(LGUI(KC_SPACE)); + } + return false; } return true; } @@ -297,4 +302,4 @@ const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = { } } } -#endif \ No newline at end of file +#endif