blob: 9deb2ddaf094dc32ccbc13a5fce02966d94374cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#include QMK_KEYBOARD_H
enum tapdance_keycodes {
TD_KEY_1,
TD_KEY_2,
};
void dance_key_one (qk_tap_dance_state_t *state, void *user_data) {
if (state->count == 1) {
send_unicode_string("¯\\_(ツ)_/¯");
tap_code(KC_ENTER);
reset_tap_dance (state);
} else if (state->count == 2) {
cycle_unicode_input_mode(+1);
reset_tap_dance (state);
}
}
void dance_key_two (qk_tap_dance_state_t *state, void *user_data) {
if (state->count == 1) {
send_unicode_string("ಠ_ಠ");
tap_code(KC_ENTER);
reset_tap_dance (state);
} else if (state->count == 2) {
send_unicode_string("(ノಠ痊ಠ)ノ彡┻━┻");
tap_code(KC_ENTER);
reset_tap_dance (state);
} else if (state->count == 3) {
send_unicode_string("╭∩╮(-_-)╭∩╮");
tap_code(KC_ENTER);
reset_tap_dance (state);
} else if (state->count == 4) {
send_unicode_string("(づ ̄ ³ ̄)づ");
tap_code(KC_ENTER);
reset_tap_dance (state);
} else if (state->count == 5) {
send_unicode_string("(︺︹︺)");
tap_code(KC_ENTER);
reset_tap_dance (state);
}
}
qk_tap_dance_action_t tap_dance_actions[] = {
[TD_KEY_1] = ACTION_TAP_DANCE_FN(dance_key_one),
[TD_KEY_2] = ACTION_TAP_DANCE_FN(dance_key_two),
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
TD(TD_KEY_1),
TD(TD_KEY_2)
),
};
|