You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

67 lines
1.4 KiB

#include QMK_KEYBOARD_H
enum td_keys {
TD_K0,
TD_K1,
TD_K2,
TD_K3
};
void td_spade_lnx (tap_dance_state_t *state, void *user_data) {
if (state->count == 1) {
register_unicode(0x2660); // ♠
} else {
set_unicode_input_mode(UNICODE_MODE_LINUX);
}
reset_tap_dance(state);
}
void td_diamond_osx (tap_dance_state_t *state, void *user_data) {
if (state->count == 1) {
register_unicode(0x2666); // ♦
} else {
set_unicode_input_mode(UNICODE_MODE_MACOS);
}
reset_tap_dance(state);
}
void td_club_win (tap_dance_state_t *state, void *user_data) {
if (state->count == 1) {
register_unicode(0x2663); // ♣
} else {
set_unicode_input_mode(UNICODE_MODE_WINDOWS);
}
reset_tap_dance(state);
}
void td_heart_winc (tap_dance_state_t *state, void *user_data) {
if (state->count == 1) {
register_unicode(0x2665); // ♥
} else {
set_unicode_input_mode(UNICODE_MODE_WINCOMPOSE);
}
reset_tap_dance(state);
}
tap_dance_action_t tap_dance_actions[] = {
[TD_K0] = ACTION_TAP_DANCE_FN(td_spade_lnx),
[TD_K1] = ACTION_TAP_DANCE_FN(td_diamond_osx),
[TD_K2] = ACTION_TAP_DANCE_FN(td_club_win),
[TD_K3] = ACTION_TAP_DANCE_FN(td_heart_winc)
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
TD(TD_K0),
TD(TD_K1),
TD(TD_K2),
TD(TD_K3)
)
};