stanrc85 userspace and keymap updates (#9103)

* Update flash command in userspace

* Switch to BackspaceFN on split spacebar
This commit is contained in:
stanrc85 2020-05-15 13:59:25 -04:00 committed by GitHub
parent b591c0c24a
commit 9b716b7ada
Failed to generate hash of commit
3 changed files with 7 additions and 6 deletions

View file

@ -56,12 +56,12 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
if (!record->event.pressed) {
uint8_t mods = get_mods();
clear_mods();
send_string_with_delay_P(PSTR("qmk compile -kb " QMK_KEYBOARD " -km " QMK_KEYMAP "\n"), 10); //New way
if (mods & MOD_MASK_SHIFT) {
send_string(SS_LGUI());
send_string("qmk toolbox\n");
send_string_with_delay_P(PSTR("qmk flash -kb " QMK_KEYBOARD " -km " QMK_KEYMAP "\n"), 10); //New way
reset_keyboard();
}
else
send_string_with_delay_P(PSTR("qmk compile -kb " QMK_KEYBOARD " -km " QMK_KEYMAP "\n"), 10); //New way
set_mods(mods);
}
break;

View file

@ -22,6 +22,7 @@ enum my_layers {
#define CA_SCLN LCA(KC_SCLN)
#define KC_CTLE LCTL_T(KC_ESC)
#define LT_SPCF LT(_FN1_60, KC_SPC)
#define LT_BPCF LT(_FN1_60, KC_BSPC)
#define TD_TESC TD(TD_ESC)
#define TD_TWIN TD(TD_WIN)
#define TD_TCTL TD(TD_RCTL)