diff options
author | Ibnu Daru Aji <ibnuda@users.noreply.github.com> | 2020-03-04 04:46:11 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-03 13:46:11 -0800 |
commit | 910d603c657e4ad81a4e7a4c86a74e2e79aa1eaa (patch) | |
tree | 0f6261380999d09444ed5c4313e336ef9f534a58 /users/ibnuda | |
parent | ad96e995afc6a8132a054ccab2b08e3501719159 (diff) | |
download | qmk_firmware-910d603c657e4ad81a4e7a4c86a74e2e79aa1eaa.tar.gz qmk_firmware-910d603c657e4ad81a4e7a4c86a74e2e79aa1eaa.zip |
[Keymap] new userspace for ibnuda (#8221)
* to ease the maintenance for some boards ibnuda has.
* followed ridingqwerty's suggestion on 8821.
* folloing drashna's suggestion on qmk's 8221.
* following drashn's suggestion on qmk's 8211
Diffstat (limited to 'users/ibnuda')
-rw-r--r-- | users/ibnuda/combo.c | 1 | ||||
-rw-r--r-- | users/ibnuda/combo.h | 61 | ||||
-rw-r--r-- | users/ibnuda/config.h | 9 | ||||
-rw-r--r-- | users/ibnuda/ibnuda.c | 1 | ||||
-rw-r--r-- | users/ibnuda/ibnuda.h | 55 | ||||
-rw-r--r-- | users/ibnuda/readme.md | 14 | ||||
-rw-r--r-- | users/ibnuda/rules.mk | 14 | ||||
-rw-r--r-- | users/ibnuda/tapdance.c | 83 | ||||
-rw-r--r-- | users/ibnuda/tapdance.h | 23 | ||||
-rw-r--r-- | users/ibnuda/wrapper.h | 46 |
10 files changed, 307 insertions, 0 deletions
diff --git a/users/ibnuda/combo.c b/users/ibnuda/combo.c new file mode 100644 index 000000000..a48b0aae3 --- /dev/null +++ b/users/ibnuda/combo.c | |||
@@ -0,0 +1 @@ | |||
#include "combo.h" | |||
diff --git a/users/ibnuda/combo.h b/users/ibnuda/combo.h new file mode 100644 index 000000000..a9fa69d22 --- /dev/null +++ b/users/ibnuda/combo.h | |||
@@ -0,0 +1,61 @@ | |||
1 | #pragma once | ||
2 | #include "quantum.h" | ||
3 | |||
4 | // enum for combos. | ||
5 | enum combos { | ||
6 | // left hand combinations. | ||
7 | COLON_COMMA, | ||
8 | COMMA_DOT, | ||
9 | DOT_P, | ||
10 | QUOT_Q, | ||
11 | Q_J, | ||
12 | J_K, | ||
13 | |||
14 | // right hand combinations. | ||
15 | L_R, | ||
16 | R_C, | ||
17 | C_G, | ||
18 | V_W, | ||
19 | W_M, | ||
20 | |||
21 | // both hands combinations. | ||
22 | J_W, | ||
23 | }; | ||
24 | |||
25 | // left hand combinations. | ||
26 | const uint16_t PROGMEM colon_comma_combo[] = {KC_SCLN, KC_COMM, COMBO_END}; | ||
27 | const uint16_t PROGMEM comma_dot_combo[] = {KC_COMM, KC_DOT, COMBO_END}; | ||
28 | const uint16_t PROGMEM dot_p_combo[] = {KC_DOT, KC_P, COMBO_END}; | ||
29 | const uint16_t PROGMEM quot_q_combo[] = {KC_QUOT, KC_Q, COMBO_END}; | ||
30 | const uint16_t PROGMEM q_j_combo[] = {KC_Q, KC_J, COMBO_END}; | ||
31 | const uint16_t PROGMEM j_k_combo[] = {KC_J, KC_K, COMBO_END}; | ||
32 | |||
33 | // right hand combinations. | ||
34 | const uint16_t PROGMEM l_r_combo[] = {KC_L, KC_R, COMBO_END}; | ||
35 | const uint16_t PROGMEM r_c_combo[] = {KC_R, KC_C, COMBO_END}; | ||
36 | const uint16_t PROGMEM c_g_combo[] = {KC_C, KC_G, COMBO_END}; | ||
37 | const uint16_t PROGMEM v_w_combo[] = {KC_V, KC_W, COMBO_END}; | ||
38 | const uint16_t PROGMEM w_m_combo[] = {KC_W, KC_M, COMBO_END}; | ||
39 | |||
40 | // both hand combinations. | ||
41 | const uint16_t PROGMEM j_w_combo[] = {KC_J, KC_W, COMBO_END}; | ||
42 | |||
43 | combo_t key_combos[COMBO_COUNT] = { | ||
44 | // left hand combinations. | ||
45 | [COLON_COMMA] = COMBO(colon_comma_combo, KC_TAB), | ||
46 | [COMMA_DOT] = COMBO(comma_dot_combo, KC_QUES), | ||
47 | [DOT_P] = COMBO(dot_p_combo, KC_UNDS), | ||
48 | [QUOT_Q] = COMBO(quot_q_combo, KC_ENT), | ||
49 | [Q_J] = COMBO(q_j_combo, LCTL(KC_W)), | ||
50 | [J_K] = COMBO(j_k_combo, KC_DELT), | ||
51 | |||
52 | // right hand combinations. | ||
53 | [L_R] = COMBO(l_r_combo, KC_BSPC), | ||
54 | [R_C] = COMBO(r_c_combo, KC_SLSH), | ||
55 | [C_G] = COMBO(c_g_combo, KC_MINS), | ||
56 | [V_W] = COMBO(v_w_combo, KC_APP), | ||
57 | [W_M] = COMBO(w_m_combo, KC_DELT), | ||
58 | |||
59 | // both hand combinations. | ||
60 | [J_W] = COMBO(j_w_combo, KC_ENT), | ||
61 | }; | ||
diff --git a/users/ibnuda/config.h b/users/ibnuda/config.h new file mode 100644 index 000000000..b43679a66 --- /dev/null +++ b/users/ibnuda/config.h | |||
@@ -0,0 +1,9 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #define COMBO_COUNT 18 | ||
4 | #define COMBO_TERM 100 | ||
5 | |||
6 | #define IGNORE_MOD_TAP_INTERRUPT | ||
7 | #define PERMISSIVE_HOLD | ||
8 | |||
9 | #define TAPPING_TERM 200 | ||
diff --git a/users/ibnuda/ibnuda.c b/users/ibnuda/ibnuda.c new file mode 100644 index 000000000..8d5bd04ba --- /dev/null +++ b/users/ibnuda/ibnuda.c | |||
@@ -0,0 +1 @@ | |||
#include "ibnuda.h" | |||
diff --git a/users/ibnuda/ibnuda.h b/users/ibnuda/ibnuda.h new file mode 100644 index 000000000..f50949df5 --- /dev/null +++ b/users/ibnuda/ibnuda.h | |||
@@ -0,0 +1,55 @@ | |||
1 | #pragma once | ||
2 | #include "quantum.h" | ||
3 | |||
4 | #include "tapdance.h" | ||
5 | #include "wrapper.h" | ||
6 | //#include "combo.h" | ||
7 | |||
8 | enum { | ||
9 | _BASE, | ||
10 | _LOWER, | ||
11 | _RAISE, | ||
12 | _ADJUST, | ||
13 | }; | ||
14 | |||
15 | // thumb keys. | ||
16 | #define ALT_ENT ALT_T(KC_ENT) | ||
17 | #define SFT_ESC SFT_T(KC_ESC) | ||
18 | |||
19 | // home row mods. | ||
20 | #define CT_O LCTL_T(KC_O) | ||
21 | #define CT_N RCTL_T(KC_N) | ||
22 | #define SH_A LSFT_T(KC_A) | ||
23 | #define SH_S RSFT_T(KC_S) | ||
24 | #define AL_E LALT_T(KC_E) | ||
25 | #define AL_T RALT_T(KC_T) | ||
26 | #define GU_I LGUI_T(KC_I) | ||
27 | #define GU_D RGUI_T(KC_D) | ||
28 | |||
29 | // layer toggle. | ||
30 | #define LW_I LT(_LOWER, KC_I) | ||
31 | #define LW_BSPC LT(_LOWER, KC_BSPC) | ||
32 | #define RS_SPC LT(_RAISE, KC_SPC) | ||
33 | #define RS_D LT(_RAISE, KC_D) | ||
34 | |||
35 | // idk, man. not used, i guess. | ||
36 | #define ADDDD MO(_ADJUST) | ||
37 | |||
38 | // common shortcuts for windows and linux that i use. | ||
39 | #define NXTTAB LCTL(KC_PGDN) | ||
40 | #define PRVTAB LCTL(KC_PGUP) | ||
41 | #define UPTAB LCTL(LSFT(KC_PGUP)) | ||
42 | #define DNTAB LCTL(LSFT(KC_PGDN)) | ||
43 | #define NXTWIN LALT(KC_TAB) | ||
44 | #define PRVWIN LALT(LSFT(KC_TAB)) | ||
45 | #define CALDL LCTL(LALT(KC_DELT)) | ||
46 | #define TSKMGR LCTL(LSFT(KC_ESC)) | ||
47 | #define EXPLR LGUI(KC_E) | ||
48 | #define LCKGUI LGUI(KC_L) | ||
49 | #define CONPST LSFT(KC_INS) | ||
50 | #define CLSGUI LALT(KC_F4) | ||
51 | |||
52 | // tap dances | ||
53 | #define CTL_DLT TD(TD_DLT_CTLDLT) | ||
54 | #define SM_CLN TD(TD_SCLN_CLN) | ||
55 | #define LFT_TMB TD(TD_LEFT_THUMB) | ||
diff --git a/users/ibnuda/readme.md b/users/ibnuda/readme.md new file mode 100644 index 000000000..24b8d6ba3 --- /dev/null +++ b/users/ibnuda/readme.md | |||
@@ -0,0 +1,14 @@ | |||
1 | Copyright 2020 Ibnu D. Aji <iaji@siskam.link> @ibnuda | ||
2 | |||
3 | This program is free software: you can redistribute it and/or modify | ||
4 | it under the terms of the GNU General Public License as published by | ||
5 | the Free Software Foundation, either version 2 of the License, or | ||
6 | (at your option) any later version. | ||
7 | |||
8 | This program is distributed in the hope that it will be useful, | ||
9 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | GNU General Public License for more details. | ||
12 | |||
13 | You should have received a copy of the GNU General Public License | ||
14 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
diff --git a/users/ibnuda/rules.mk b/users/ibnuda/rules.mk new file mode 100644 index 000000000..1cf315ebe --- /dev/null +++ b/users/ibnuda/rules.mk | |||
@@ -0,0 +1,14 @@ | |||
1 | COMBO_ENABLE = yes | ||
2 | COMMAND_ENABLE = yes | ||
3 | CONSOLE_ENABLE = yes | ||
4 | TAP_DANCE_ENABLE = yes | ||
5 | |||
6 | SRC += ibnuda.c | ||
7 | |||
8 | ifeq ($(strip $(TAP_DANCE_ENABLE)), yes) | ||
9 | SRC += tapdance.c | ||
10 | endif | ||
11 | |||
12 | ifeq ($(strip $(COMBO_ENABLE)), yes) | ||
13 | SRC += combo.c | ||
14 | endif | ||
diff --git a/users/ibnuda/tapdance.c b/users/ibnuda/tapdance.c new file mode 100644 index 000000000..c0d219258 --- /dev/null +++ b/users/ibnuda/tapdance.c | |||
@@ -0,0 +1,83 @@ | |||
1 | #include "tapdance.h" | ||
2 | |||
3 | static td_state_t td_state; | ||
4 | |||
5 | void dance_dlt_finished(qk_tap_dance_state_t *state, void *user_data) { | ||
6 | if (state->count == 1) { | ||
7 | register_code16(KC_DELT); | ||
8 | } else { | ||
9 | register_code16(C(KC_DELT)); | ||
10 | } | ||
11 | } | ||
12 | |||
13 | void dance_dlt_reset(qk_tap_dance_state_t *state, void *user_data) { | ||
14 | if (state->count == 1) { | ||
15 | unregister_code16(KC_DELT); | ||
16 | } else { | ||
17 | unregister_code16(C(KC_DELT)); | ||
18 | } | ||
19 | } | ||
20 | |||
21 | void dance_cln_finished(qk_tap_dance_state_t *state, void *user_data) { | ||
22 | if (state->count == 1) { | ||
23 | register_code(KC_LSFT); | ||
24 | } | ||
25 | register_code(KC_SCLN); | ||
26 | } | ||
27 | |||
28 | void dance_cln_reset(qk_tap_dance_state_t *state, void *user_data) { | ||
29 | if (state->count == 1) { | ||
30 | unregister_code(KC_LSFT); | ||
31 | } | ||
32 | unregister_code(KC_SCLN); | ||
33 | } | ||
34 | |||
35 | int current_dance(qk_tap_dance_state_t *state) { | ||
36 | if (state->count == 1) { | ||
37 | if (state->interrupted || !state->pressed) { | ||
38 | return SINGLE_TAP; | ||
39 | } else { | ||
40 | return SINGLE_HOLD; | ||
41 | } | ||
42 | } | ||
43 | if (state->count == 2) { | ||
44 | return DOUBLE_TAP; | ||
45 | } else { | ||
46 | return 3; | ||
47 | } | ||
48 | } | ||
49 | |||
50 | void dance_tmb_finished(qk_tap_dance_state_t *state, void *user_data) { | ||
51 | td_state = current_dance(state); | ||
52 | switch (td_state) { | ||
53 | case SINGLE_TAP: | ||
54 | register_code16(KC_ESC); | ||
55 | break; | ||
56 | case SINGLE_HOLD: | ||
57 | register_mods(MOD_BIT(KC_LSFT)); | ||
58 | break; | ||
59 | case DOUBLE_TAP: | ||
60 | register_code16(KC_DELT); | ||
61 | break; | ||
62 | } | ||
63 | } | ||
64 | |||
65 | void dance_tmb_reset(qk_tap_dance_state_t *state, void *user_data) { | ||
66 | switch (td_state) { | ||
67 | case SINGLE_TAP: | ||
68 | unregister_code16(KC_ESC); | ||
69 | break; | ||
70 | case SINGLE_HOLD: | ||
71 | unregister_mods(MOD_BIT(KC_LSFT)); | ||
72 | break; | ||
73 | case DOUBLE_TAP: | ||
74 | unregister_code16(KC_DELT); | ||
75 | break; | ||
76 | } | ||
77 | } | ||
78 | |||
79 | qk_tap_dance_action_t tap_dance_actions[] = { | ||
80 | [TD_DLT_CTLDLT] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, dance_dlt_finished, dance_dlt_reset), | ||
81 | [TD_SCLN_CLN] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, dance_cln_finished, dance_cln_reset), | ||
82 | [TD_LEFT_THUMB] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, dance_tmb_finished, dance_tmb_reset), | ||
83 | }; | ||
diff --git a/users/ibnuda/tapdance.h b/users/ibnuda/tapdance.h new file mode 100644 index 000000000..258321d4c --- /dev/null +++ b/users/ibnuda/tapdance.h | |||
@@ -0,0 +1,23 @@ | |||
1 | #pragma once | ||
2 | #include "ibnuda.h" | ||
3 | |||
4 | #ifdef TAP_DANCE_ENABLE | ||
5 | typedef enum { | ||
6 | SINGLE_TAP, | ||
7 | SINGLE_HOLD, | ||
8 | DOUBLE_TAP, | ||
9 | } td_state_t; | ||
10 | |||
11 | int current_dance(qk_tap_dance_state_t *state); | ||
12 | |||
13 | void dance_tmb_finished(qk_tap_dance_state_t *state, void *user_data); | ||
14 | void dance_tmb_reset(qk_tap_dance_state_t *state, void *user_data); | ||
15 | |||
16 | // enum for tap dances. | ||
17 | enum { | ||
18 | TD_DLT_CTLDLT = 0, | ||
19 | TD_SCLN_CLN, | ||
20 | TD_LEFT_THUMB, | ||
21 | }; | ||
22 | |||
23 | #endif // TAP_DANCE_ENABLE | ||
diff --git a/users/ibnuda/wrapper.h b/users/ibnuda/wrapper.h new file mode 100644 index 000000000..34350cf36 --- /dev/null +++ b/users/ibnuda/wrapper.h | |||
@@ -0,0 +1,46 @@ | |||
1 | #pragma once | ||
2 | #include "ibnuda.h" | ||
3 | |||
4 | /* | ||
5 | Since our quirky block definitions are basically a list of comma separated | ||
6 | arguments, we need a wrapper in order for these definitions to be | ||
7 | expanded before being used as arguments to the LAYOUT_xxx macro. | ||
8 | */ | ||
9 | #if (!defined(LAYOUT) && defined(KEYMAP)) | ||
10 | # define LAYOUT KEYMAP | ||
11 | #endif | ||
12 | |||
13 | #define KEYMAP_wrapper(...) LAYOUT(__VA_ARGS__) | ||
14 | #define LAYOUT_wrapper(...) LAYOUT(__VA_ARGS__) | ||
15 | |||
16 | #define ________________DVORAK_L1_______________ KC_SCLN,KC_COMM,KC_DOT, KC_P, KC_Y | ||
17 | #define ________________DVORAK_L2_______________ SH_A, CT_O, AL_E, KC_U, GU_I | ||
18 | #define ________________DVORAK_L3_______________ KC_QUOT,KC_Q, KC_J, KC_K, KC_X | ||
19 | |||
20 | #define ________________DVORAK_R1_______________ KC_F, KC_G, KC_C, KC_R, KC_L | ||
21 | #define ________________DVORAK_R2_______________ GU_D, KC_H, AL_T, CT_N, SH_S | ||
22 | #define ________________DVORAK_R3_______________ KC_B, KC_M, KC_W, KC_V, KC_Z | ||
23 | |||
24 | #define ________________RAISE_L1________________ KC_EXLM,KC_AT, KC_UP, KC_LCBR,KC_RCBR | ||
25 | #define ________________RAISE_L2________________ KC_HASH,KC_LEFT,KC_DOWN,KC_RGHT,KC_DLR | ||
26 | #define ________________RAISE_L3________________ KC_LBRC,KC_RBRC,KC_LPRN,KC_RPRN,KC_AMPR | ||
27 | |||
28 | #define ________________RAISE_R1________________ KC_BSLS,KC_7, KC_8, KC_9, KC_ASTR | ||
29 | #define ________________RAISE_R2________________ KC_EQL, KC_4, KC_5, KC_6, KC_0 | ||
30 | #define ________________RAISE_R3________________ KC_GRV, KC_1, KC_2, KC_3, KC_PLUS | ||
31 | |||
32 | #define ________________LOWER_L1________________ KC_ESC, KC_QUES,KC_UNDS,KC_F1, KC_F2 | ||
33 | #define ________________LOWER_L2________________ KC_LSFT,KC_TAB, KC_PGUP,KC_F5, KC_F6 | ||
34 | #define ________________LOWER_L3________________ KC_CLCK,KC_SLCK,KC_PGDN,KC_F9, KC_F10 | ||
35 | |||
36 | #define ________________LOWER_R1________________ KC_F3, KC_F4, KC_MINS,KC_SLSH,KC_BSPC | ||
37 | #define ________________LOWER_R2________________ KC_F7, KC_F8, KC_HOME,KC_LALT,KC_ENT | ||
38 | #define ________________LOWER_R3________________ KC_F11, KC_F12, KC_END, KC_INS, KC_SLSH | ||
39 | |||
40 | #define ________________ADJUST_L1_______________ _______,EXPLR, KC_UP, PRVTAB, PRVWIN | ||
41 | #define ________________ADJUST_L2_______________ TSKMGR, KC_LEFT,KC_DOWN,KC_RGHT,UPTAB | ||
42 | #define ________________ADJUST_L3_______________ _______,CLSGUI, _______,CONPST, RESET | ||
43 | |||
44 | #define ________________ADJUST_R1_______________ NXTWIN, NXTTAB, _______,_______,LCKGUI | ||
45 | #define ________________ADJUST_R2_______________ DNTAB, KC_ENT, KC_LGUI,_______,CALDL | ||
46 | #define ________________ADJUST_R3_______________ _______,_______,_______,_______,_______ | ||