aboutsummaryrefslogtreecommitdiff
path: root/users/yet-another-developer
diff options
context:
space:
mode:
authorYet Another Developer <50936645+yet-another-developer@users.noreply.github.com>2019-10-21 02:07:57 +0800
committerDrashna Jaelre <drashna@live.com>2019-10-20 11:07:56 -0700
commit3d53ea439c277e49cd4149a6caea727304f41ace (patch)
tree1d782a97be651ff911342cbec19cdb18ceeeda62 /users/yet-another-developer
parentf64d9b06215bb08d7f77aeba126c0804fffd0064 (diff)
downloadqmk_firmware-3d53ea439c277e49cd4149a6caea727304f41ace.tar.gz
qmk_firmware-3d53ea439c277e49cd4149a6caea727304f41ace.zip
[Keymap] Ergodash keymap for yet-another-developer (#7046)
* Initialize ergodash rev 1 keymap ./util/new_keymap.sh ergodash/rev1 yet-another-developer * Add user space configurations referenced from drashna * Start community layout for ergodash in ortho_5x14 * Remove unused layers * Add userspace layers * Add Userspace gitignore Hide Secrets * Remove userspace unused drashna features * Scrap default keymap and follow drashna's template * Add code referenced from kuchosauronad0 * Make sure that the author is named Developer * Replace middle keys del and bksp with curly brace * Reduce ONESHOT_TIMEOUT from 3sec to 2sec * Remove adjust key AG_SWAP * Disable UNICODEMAP_ENABLE, remove code causing build fail * Increase TAPPING_TERM to 240 Reason: Because Space is also LOWER, space sometimes not registering. PS: I dont want to #define RETRO_TAPPING yet * Update KC_MAKE to use :flash * Remove TAP_ONCE, use tap_code Signed-off-by: Developer <anotherdeveloper@icloud.com> * Remove redundant code implementation of keyboard_post_init_user https://github.com/qmk/qmk_firmware/pull/7046 users/yet-another-developer/leader.c ``` static bool has_ran_yet; if (!has_ran_yet) { has_ran_yet = true; startup_user(); ``` Comment for lines +11 – +14 @drashna: Not needed anymore. You can use keyboard_post_init_user now. Signed-off-by: Developer <anotherdeveloper@icloud.com>
Diffstat (limited to 'users/yet-another-developer')
-rw-r--r--users/yet-another-developer/.gitignore2
-rw-r--r--users/yet-another-developer/README.md7
-rw-r--r--users/yet-another-developer/combo.c27
-rw-r--r--users/yet-another-developer/combo.h21
-rw-r--r--users/yet-another-developer/config.h56
-rw-r--r--users/yet-another-developer/leader.c46
-rw-r--r--users/yet-another-developer/leader.h6
-rw-r--r--users/yet-another-developer/process_records.c193
-rw-r--r--users/yet-another-developer/process_records.h109
-rw-r--r--users/yet-another-developer/rules.mk50
-rw-r--r--users/yet-another-developer/tap_dances.c55
-rw-r--r--users/yet-another-developer/tap_dances.h26
-rw-r--r--users/yet-another-developer/unicode.c62
-rw-r--r--users/yet-another-developer/unicode.h67
-rw-r--r--users/yet-another-developer/wrappers.h166
-rw-r--r--users/yet-another-developer/yet-another-developer.c160
-rw-r--r--users/yet-another-developer/yet-another-developer.h87
17 files changed, 1140 insertions, 0 deletions
diff --git a/users/yet-another-developer/.gitignore b/users/yet-another-developer/.gitignore
new file mode 100644
index 000000000..d81556914
--- /dev/null
+++ b/users/yet-another-developer/.gitignore
@@ -0,0 +1,2 @@
1secrets.c
2secrets.h \ No newline at end of file
diff --git a/users/yet-another-developer/README.md b/users/yet-another-developer/README.md
new file mode 100644
index 000000000..3e528bcf5
--- /dev/null
+++ b/users/yet-another-developer/README.md
@@ -0,0 +1,7 @@
1# User Space for yet-another-developer
2
3
4## Reference / Inspiration
5 - /u/kuchosauronad0
6 - /u/drashna
7 - /u/not-quite-neo \ No newline at end of file
diff --git a/users/yet-another-developer/combo.c b/users/yet-another-developer/combo.c
new file mode 100644
index 000000000..b4e8e84ae
--- /dev/null
+++ b/users/yet-another-developer/combo.c
@@ -0,0 +1,27 @@
1#include "combo.h"
2
3void process_combo_event(uint8_t combo_index, bool pressed){
4 switch(combo_index) {
5 case ZV_COPY:
6 if (pressed) {
7 tap_code16(LCTL(KC_C));
8 }
9 break;
10 case XV_CUT:
11 if (pressed) {
12 tap_code16(LCTL(KC_X));
13 }
14 break;
15
16 case CV_PASTE:
17 if (pressed) {
18 tap_code16(LCTL(KC_V));
19 }
20 break;
21 case QP_SLEEP:
22 if (pressed) {
23 tap_code16(KC_SYSTEM_SLEEP);
24 }
25 break;
26 }
27}
diff --git a/users/yet-another-developer/combo.h b/users/yet-another-developer/combo.h
new file mode 100644
index 000000000..e2ff09ab5
--- /dev/null
+++ b/users/yet-another-developer/combo.h
@@ -0,0 +1,21 @@
1#pragma once
2#include "quantum.h"
3enum combo_events {
4 ZV_COPY,
5 XV_CUT,
6 CV_PASTE,
7 QP_SLEEP
8};
9
10const uint16_t PROGMEM copy_combo[] = {KC_Z, KC_V, COMBO_END};
11const uint16_t PROGMEM cut_combo[] = {KC_X, KC_V, COMBO_END};
12const uint16_t PROGMEM paste_combo[] = {KC_C, KC_V, COMBO_END};
13const uint16_t PROGMEM sleep_combo[] = {KC_Q, KC_P, COMBO_END};
14
15combo_t key_combos[COMBO_COUNT] = {
16 [ZV_COPY] = COMBO_ACTION(copy_combo),
17 [XV_CUT] = COMBO_ACTION(cut_combo),
18 [CV_PASTE] = COMBO_ACTION(paste_combo),
19 [QP_SLEEP] = COMBO_ACTION(sleep_combo),
20};
21
diff --git a/users/yet-another-developer/config.h b/users/yet-another-developer/config.h
new file mode 100644
index 000000000..d46d487fe
--- /dev/null
+++ b/users/yet-another-developer/config.h
@@ -0,0 +1,56 @@
1#pragma once
2
3/* Set Polling rate to 1000Hz */
4#define USB_POLLING_INTERVAL_MS 1
5
6#ifndef ONESHOT_TAP_TOGGLE
7 #define ONESHOT_TAP_TOGGLE 2
8#endif // !ONESHOT_TAP_TOGGLE
9
10#ifndef ONESHOT_TIMEOUT
11 #define ONESHOT_TIMEOUT 2000
12#endif // !ONESHOT_TIMEOUT
13
14#ifndef QMK_KEYS_PER_SCAN
15 #define QMK_KEYS_PER_SCAN 4
16#endif // !QMK_KEYS_PER_SCAN
17
18#if defined(LEADER_ENABLE)
19 #define LEADER_PER_KEY_TIMING
20 #define LEADER_TIMEOUT 250
21#endif // !LEADER_ENABLE
22
23#if defined(COMBO_ENABLE)
24 #define COMBO_COUNT 4
25 #define COMBO_TERM 150
26#endif // !COMBO_ENABLE
27
28#if defined(NKRO_ENABLE)
29 #define FORCE_NKRO
30#endif // !NKRO_ENABLE
31
32// this makes it possible to do rolling combos (zx) with keys that
33// convert to other keys on hold (z becomes ctrl when you hold it,
34// and when this option isn't enabled, z rapidly followed by x
35// actually sends Ctrl-x. That's bad.)
36#define IGNORE_MOD_TAP_INTERRUPT
37#undef PERMISSIVE_HOLD
38//#define TAPPING_FORCE_HOLD
39//#define RETRO_TAPPING
40
41#ifndef TAPPING_TOGGLE
42 #define TAPPING_TOGGLE 1
43#endif
44
45#ifdef TAPPING_TERM
46# undef TAPPING_TERM
47#endif // !TAPPING_TERM
48#if defined(KEYBOARD_ergodash)
49 #define TAPPING_TERM 240
50#else
51 #define TAPPING_TERM 200
52#endif
53
54#define TAP_CODE_DELAY 5 //DEFAULT: 100
55
56#define MACRO_TIMER 5
diff --git a/users/yet-another-developer/leader.c b/users/yet-another-developer/leader.c
new file mode 100644
index 000000000..3cbbf8d70
--- /dev/null
+++ b/users/yet-another-developer/leader.c
@@ -0,0 +1,46 @@
1#include "leader.h"
2
3LEADER_EXTERNS();
4
5// Runs constantly in the background, in a loop.
6void matrix_scan_user(void){
7
8#ifdef TAP_DANCE_ENABLE // Run Diablo 3 macro checking code.
9// run_diablo_macro_check();
10#endif // TAP_DANCE_ENABLE
11
12#ifdef RGBLIGHT_ENABLE
13 matrix_scan_rgb();
14#endif // RGBLIGHT_ENABLE
15
16 LEADER_DICTIONARY() {
17 leading = false;
18 leader_end();
19
20 SEQ_TWO_KEYS(KC_V, KC_Z){
21 // vim: Zoom pane
22 tap_code16(LCTL(KC_W));
23 tap_code16(LSFT(KC_BSLS));
24 }
25
26 SEQ_TWO_KEYS(KC_V, KC_R) {
27 // vim: Substitute and place cursor
28 SEND_STRING(":%s///g" SS_TAP(X_LEFT));
29 tap_code(KC_LEFT);
30 tap_code(KC_LEFT);
31 }
32
33 SEQ_TWO_KEYS(KC_V, KC_T) {
34 // vim: move current pane to new tab
35 tap_code16(LCTL(KC_W));
36 tap_code16(LSFT(KC_T));
37 }
38
39 SEQ_THREE_KEYS(KC_BSPC, KC_BSPC, KC_BSPC){
40 // Reset the keyboard
41 reset_keyboard();
42 }
43 }
44
45 matrix_scan_keymap();
46}
diff --git a/users/yet-another-developer/leader.h b/users/yet-another-developer/leader.h
new file mode 100644
index 000000000..7ed6c8a82
--- /dev/null
+++ b/users/yet-another-developer/leader.h
@@ -0,0 +1,6 @@
1#pragma once
2#include "yet-another-developer.h"
3
4#include "leader.h"
5
6void matrix_scan_user(void);
diff --git a/users/yet-another-developer/process_records.c b/users/yet-another-developer/process_records.c
new file mode 100644
index 000000000..c7dbd704a
--- /dev/null
+++ b/users/yet-another-developer/process_records.c
@@ -0,0 +1,193 @@
1#include "yet-another-developer.h"
2
3uint16_t copy_paste_timer;
4
5__attribute__ ((weak))
6bool process_record_keymap(uint16_t keycode, keyrecord_t *record) {
7 return true;
8}
9
10__attribute__ ((weak))
11bool process_record_secrets(uint16_t keycode, keyrecord_t *record) {
12 return true;
13}
14
15// Defines actions for my global custom keycodes. Defined in yet-another-developer.h file
16// Then runs the _keymap's record handier if not processed here
17bool process_record_user(uint16_t keycode, keyrecord_t *record) {
18
19 // If console is enabled, it will print the matrix position and status of each key pressed
20#ifdef KEYLOGGER_ENABLE
21 #if defined(KEYBOARD_ergodox_ez) || defined(KEYBOARD_keebio_iris_rev2)
22 xprintf("KL: kc: %u, col: %u, row: %u, pressed: %u\n", keycode, record->event.key.row, record->event.key.col, record->event.pressed);
23 #else
24 xprintf("KL: kc: %u, col: %u, row: %u, pressed: %u\n", keycode, record->event.key.col, record->event.key.row, record->event.pressed);
25 #endif
26#endif //KEYLOGGER_ENABLE
27
28 switch (keycode) {
29 case KC_QWERTY ... KC_UNICODE:
30 if (record->event.pressed) {
31 set_single_persistent_default_layer(keycode - KC_QWERTY);
32 }
33 break;
34
35 case KC_MAKE: // Compiles the firmware, and adds the flash command based on keyboard bootloader
36 if (!record->event.pressed) {
37 clear_mods();
38 clear_oneshot_mods();
39 send_string_with_delay_P(PSTR("make " QMK_KEYBOARD ":" QMK_KEYMAP), TAP_CODE_DELAY);
40 {
41 send_string_with_delay_P(PSTR(":flash"), TAP_CODE_DELAY);
42 }
43 }
44 break;
45
46 /* Tap Dance */
47 case MC_QT1: // ""
48 if(record->event.pressed){
49 SEND_STRING("\"\"");
50 tap_code(KC_LEFT);
51 }
52 break;
53 case MC_QT2: // ''
54 if(record->event.pressed){
55 SEND_STRING("''");
56 tap_code(KC_LEFT);
57 }
58 break;
59 case MC_QT3: // `'
60 if(record->event.pressed){
61 SEND_STRING("`'");
62 tap_code(KC_LEFT);
63 }
64 break;
65 case MC_PAR: // Parenthesis
66 if(record->event.pressed){
67 SEND_STRING("()");
68 tap_code(KC_LEFT);
69 }
70 break;
71 case MC_CUR: // Curly bracket
72 if(record->event.pressed){
73 SEND_STRING("{}");
74 tap_code(KC_LEFT);
75 }
76 break;
77 case MC_SQR: // Square bracket
78 if(record->event.pressed){
79 SEND_STRING("[]");
80 tap_code(KC_LEFT);
81 }
82 break;
83 case MC_ABR: // Angle bracket
84 if(record->event.pressed){
85 SEND_STRING("<>");
86 tap_code(KC_LEFT);
87 }
88 break;
89 case MCT_NEW: // New Tmux Session
90 if(record->event.pressed){
91 SEND_STRING(":neww");
92 tap_code(KC_ENT);
93 }
94 break;
95 case MCT_SH: // Tmux horizontal split
96 if(record->event.pressed){
97 SEND_STRING("%");
98 }
99 break;
100 case MCT_SV: // Tmux vertical split
101 if(record->event.pressed){
102 SEND_STRING("\"");
103 }
104 break;
105 case MCT_ZM: // Tmux zoom
106 if(record->event.pressed){
107 tap_code(KC_Z);
108 }
109 break;
110 case MCT_SCR: // Tmux scroll mode
111 if(record->event.pressed){
112 tap_code(KC_PGUP);
113 }
114 break;
115 case MCT_UP: // Tmux up
116 break;
117 case MCT_DW: // Tmux down
118 break;
119 case MCT_LFT: // Tmux left
120 break;
121 case MCT_RGT: // Tmux right
122 tap_code(KC_RIGHT);
123 break;
124 case MCV_B: // Vim begin of line
125 if(record->event.pressed){
126 tap_code(KC_0);
127 }
128 break;
129 case MCV_E: // Vim end of line
130 if(record->event.pressed){
131 SEND_STRING(":vsplit");
132 tap_code(KC_ENT);
133 }
134 break;
135 case MCT_F: // Vim for loop
136 if(record->event.pressed){
137 SEND_STRING(":help");
138 tap_code(KC_ENT);
139 }
140 break;
141
142 case VRSN: // Prints firmware version
143 if (record->event.pressed) {
144 send_string_with_delay_P(PSTR(QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION ", Built on: " QMK_BUILDDATE), TAP_CODE_DELAY);
145 }
146 break;
147
148
149 case KC_CCCV: // One key copy/paste
150 if (record->event.pressed) {
151 copy_paste_timer = timer_read();
152 } else {
153 if (timer_elapsed(copy_paste_timer) > TAPPING_TERM) { // Hold, copy
154 register_code(KC_LCTL);
155 tap_code(KC_C);
156 unregister_code(KC_LCTL);
157 } else { // Tap, paste
158 register_code(KC_LCTL);
159 tap_code(KC_V);
160 unregister_code(KC_LCTL);
161 }
162 }
163 break;
164#ifdef UNICODE_ENABLE
165 case UC_FLIP: // (ノಠ痊ಠ)ノ彡┻━┻
166 if (record->event.pressed) {
167 send_unicode_hex_string("0028 30CE 0CA0 75CA 0CA0 0029 30CE 5F61 253B 2501 253B");
168 }
169 break;
170 case UC_TABL: // ┬─┬ノ( º _ ºノ)
171 if (record->event.pressed) {
172 send_unicode_hex_string("252C 2500 252C 30CE 0028 0020 00BA 0020 005F 0020 00BA 30CE 0029");
173 }
174 break;
175 case UC_SHRG: // ¯\_(ツ)_/¯
176 if (record->event.pressed) {
177 send_unicode_hex_string("00AF 005C 005F 0028 30C4 0029 005F 002F 00AF");
178 }
179 break;
180 case UC_DISA: // ಠ_ಠ
181 if (record->event.pressed) {
182 send_unicode_hex_string("0CA0 005F 0CA0");
183 }
184 break;
185#endif // UNICODE_ENABLE
186 }
187
188 return process_record_keymap(keycode, record) &&
189#if defined(RGBLIGHT_ENABLE) || defined(RGB_MATRIX_ENABLE)
190 process_record_user_rgb(keycode, record) &&
191#endif // RGBLIGHT_ENABLE
192 process_record_secrets(keycode, record);
193}
diff --git a/users/yet-another-developer/process_records.h b/users/yet-another-developer/process_records.h
new file mode 100644
index 000000000..d4576f541
--- /dev/null
+++ b/users/yet-another-developer/process_records.h
@@ -0,0 +1,109 @@
1#pragma once
2#include "yet-another-developer.h"
3
4#if defined(KEYMAP_SAFE_RANGE)
5# define PLACEHOLDER_SAFE_RANGE KEYMAP_SAFE_RANGE
6#else
7# define PLACEHOLDER_SAFE_RANGE SAFE_RANGE
8#endif
9
10enum userspace_custom_keycodes {
11 VRSN = PLACEHOLDER_SAFE_RANGE, // Prints QMK Firmware and board info
12 KC_QWERTY, // Sets default layer to QWERTY
13 KC_COLEMAK, // Sets default layer to COLEMAK
14 KC_DVORAK, // Sets default layer to DVORAK
15 KC_WORKMAN, // Sets default layer to WORKMAN
16 KC_UNICODE, // Sets default layer to UNICOD
17
18 KC_MAKE, // Run keyboard's customized make command
19 KC_SECRET_1, // test1
20 KC_SECRET_2, // test2
21 KC_SECRET_3, // test3
22 KC_SECRET_4, // test4
23 KC_SECRET_5, // test5
24 KC_CCCV, // Hold to copy, tap to paste
25 KC_NUKE, // NUCLEAR LAUNCH DETECTED!!!
26 UC_FLIP, // (ಠ痊ಠ)┻━┻
27 UC_TABL, // ┬─┬ノ( º _ ºノ)
28 UC_SHRG, // ¯\_(ツ)_/¯
29 UC_DISA, // ಠ_ಠ
30
31 MC_QT1, // ""
32 MC_QT2, // ''
33 MC_QT3, // `'
34 MC_PAR, // Parenthesis
35 MC_CUR, // Curly bracket
36 MC_SQR, // Square bracket
37 MC_ABR, // Angle bracket
38 MCT_NEW, // New Tmux Session
39 MCT_SH, // Tmux horizontal split
40 MCT_SV, // Tmux vertical split
41 MCT_ZM, // Tmux zoom
42 MCT_SCR, // Tmux scroll mode
43 MCT_UP, // Tmux up
44 MCT_DW, // Tmux down
45 MCT_LFT, // Tmux left
46 MCT_RGT, // Tmux right
47 MCV_B, // Vim begin of line
48 MCV_E, // Vim end of line
49 MCT_F, // Vim for loop
50 MCG_A, // Git add
51 MCG_C, // Git commit
52 MCG_P, // Git push
53 MCG_R, // Git revert
54 MCG_L, // Git log
55 MCG_S, // Git status
56
57 NEW_SAFE_RANGE // use "NEWPLACEHOLDER for keymap specific codes
58};
59
60bool process_record_secrets(uint16_t keycode, keyrecord_t *record);
61bool process_record_keymap( uint16_t keycode, keyrecord_t *record);
62
63#define LOWER MO(_LOWER)
64#define RAISE MO(_RAISE)
65#define ADJUST MO(_ADJUST)
66#define TG_MODS TG(_MODS)
67#define OS_LWR OSL(_LOWER)
68#define OS_RSE OSL(_RAISE)
69#define OS_UNI OSL(_UNICODE)
70
71#define KC_SEC1 KC_SECRET_1
72#define KC_SEC2 KC_SECRET_2
73#define KC_SEC3 KC_SECRET_3
74#define KC_SEC4 KC_SECRET_4
75#define KC_SEC5 KC_SECRET_5
76
77#define QWERTY KC_QWERTY
78#define DVORAK KC_DVORAK
79#define COLEMAK KC_COLEMAK
80#define WORKMAN KC_WORKMAN
81#define UNICODE KC_UNICODE
82
83#define KC_RESET RESET
84#define KC_RST KC_RESET
85
86#define BK_LWER LT(_LOWER, KC_BSPC)
87#define SP_LWER LT(_LOWER, KC_SPC)
88#define DL_RAIS LT(_RAISE, KC_DEL)
89#define ET_RAIS LT(_RAISE, KC_ENTER)
90
91/* OSM keycodes, to keep things clean and easy to change */
92#define KC_MLSF OSM(MOD_LSFT)
93#define KC_MRSF OSM(MOD_RSFT)
94
95#define OS_LGUI OSM(MOD_LGUI)
96#define OS_RGUI OSM(MOD_RGUI)
97#define OS_LSFT OSM(MOD_LSFT)
98#define OS_RSFT OSM(MOD_RSFT)
99#define OS_LCTL OSM(MOD_LCTL)
100#define OS_RCTL OSM(MOD_RCTL)
101#define OS_LALT OSM(MOD_LALT)
102#define OS_RALT OSM(MOD_RALT)
103#define OS_MEH OSM(MOD_MEH)
104#define OS_HYPR OSM(MOD_HYPR)
105
106#define ALT_APP ALT_T(KC_APP)
107
108#define UC_IRNY UC(0x2E2E)
109#define UC_CLUE UC(0x203D)
diff --git a/users/yet-another-developer/rules.mk b/users/yet-another-developer/rules.mk
new file mode 100644
index 000000000..597df6d0b
--- /dev/null
+++ b/users/yet-another-developer/rules.mk
@@ -0,0 +1,50 @@
1SRC += yet-another-developer.c \
2 process_records.c
3
4LINK_TIME_OPTIMIZATION_ENABLE = yes
5SPACE_CADET_ENABLE = no
6
7ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
8 SRC += tap_dances.c
9endif
10
11ifeq ($(strip $(COMBO_ENABLE)), yes)
12 SRC += combo.c
13endif
14
15
16ifeq ($(strip $(LEADER_ENABLE)), yes)
17 SRC += leader.c
18endif
19
20
21ifneq ("$(wildcard $(USER_PATH)/secrets.c)","")
22 SRC += secrets.c
23endif
24
25
26ifeq ($(strip $(NO_SECRETS)), yes)
27 OPT_DEFS += -DNO_SECRETS
28endif
29
30
31ifeq ($(strip $(UNICODEMAP_ENABLE)), yes)
32 SRC += unicode.c
33endif
34
35
36ifeq ($(strip $(MACROS_ENABLED)), yes)
37 OPT_DEFS += -DMACROS_ENABLED
38endif
39
40
41ifdef CONSOLE_ENABLE
42 ifeq ($(strip $(KEYLOGGER_ENABLE)), yes)
43 OPT_DEFS += -DKEYLOGGER_ENABLE
44 endif
45endif
46
47
48ifeq ($(strip $(MAKE_BOOTLOADER)), yes)
49 OPT_DEFS += -DMAKE_BOOTLOADER
50endif
diff --git a/users/yet-another-developer/tap_dances.c b/users/yet-another-developer/tap_dances.c
new file mode 100644
index 000000000..66dcc60fa
--- /dev/null
+++ b/users/yet-another-developer/tap_dances.c
@@ -0,0 +1,55 @@
1#include "tap_dances.h"
2
3void td_parenthesis (qk_tap_dance_state_t *state, void *user_data) {
4 if (state->count == 1) {
5// SEND_STRING ("\(");
6 tap_code(KC_QUOT);
7 reset_tap_dance (state);
8 }
9 else if (state->count == 2) {
10 SEND_STRING("()" SS_TAP(X_LEFT));
11 reset_tap_dance (state);
12 }
13 else if (state->count == 3) {
14 SEND_STRING("[]" SS_TAP(X_LEFT));
15 reset_tap_dance (state);
16 }
17 else if (state->count == 4) {
18 SEND_STRING("{}" SS_TAP(X_LEFT));
19 reset_tap_dance (state);
20 }
21 else if (state->count >= 5) {
22 SEND_STRING("<>" SS_TAP(X_LEFT));
23 reset_tap_dance (state);
24 }
25}
26
27void safe_reset(qk_tap_dance_state_t *state, void *user_data) {
28 if (state->count >= 3) {
29 // Reset the keyboard if you tap the key more than three times
30 reset_keyboard();
31 reset_tap_dance(state);
32 }
33}
34
35qk_tap_dance_action_t tap_dance_actions[] = {
36 [TD_RESET] = ACTION_TAP_DANCE_FN(safe_reset),
37 [TD_NUM1] = ACTION_TAP_DANCE_DOUBLE(KC_1, KC_4),
38 [TD_NUM2] = ACTION_TAP_DANCE_DOUBLE(KC_2, KC_5),
39 [TD_NUM3] = ACTION_TAP_DANCE_DOUBLE(KC_3, KC_6),
40 [TD_QT1] = ACTION_TAP_DANCE_DOUBLE(KC_QUOT, MC_QT1),
41 [TD_QT2] = ACTION_TAP_DANCE_DOUBLE(LSFT(KC_QUOT), MC_QT2),
42 [TD_QT3] = ACTION_TAP_DANCE_DOUBLE(KC_GRV, MC_QT3),
43
44 [TD_EOL] = ACTION_TAP_DANCE_DOUBLE(KC_E, MC_EOL), // end of line
45 [TD_BOL] = ACTION_TAP_DANCE_DOUBLE(KC_A, MC_BOL), // beginning of line
46 [TD_NW] = ACTION_TAP_DANCE_DOUBLE(KC_F, MC_NW), // next word
47 [TD_PW] = ACTION_TAP_DANCE_DOUBLE(KC_B, MC_PW), // pevious word
48 [TD_DW] = ACTION_TAP_DANCE_DOUBLE(KC_W, MC_DW), // pevious word
49
50 [TD_SPC] = ACTION_TAP_DANCE_FN(td_parenthesis), // \(, (), [], {}, <>
51 [TD_PAR] = ACTION_TAP_DANCE_DOUBLE(KC_LPRN, MC_PAR), // ()
52 [TD_SQR] = ACTION_TAP_DANCE_DOUBLE(KC_LBRC, MC_SQR), // []
53 [TD_CUR] = ACTION_TAP_DANCE_DOUBLE(LSFT(KC_LCBR), MC_CUR),// {}
54 [TD_ABR] = ACTION_TAP_DANCE_DOUBLE(LSFT(KC_COMM), MC_ABR),//
55};
diff --git a/users/yet-another-developer/tap_dances.h b/users/yet-another-developer/tap_dances.h
new file mode 100644
index 000000000..8afda817c
--- /dev/null
+++ b/users/yet-another-developer/tap_dances.h
@@ -0,0 +1,26 @@
1#pragma once
2#include "yet-another-developer.h"
3
4#ifdef TAP_DANCE_ENABLE
5enum {
6 TD_RESET = 0,
7 TD_SPC, // for special function td_parenthesis testing
8 TD_NUM1, // compact gaming numpad
9 TD_NUM2, //
10 TD_NUM3, //
11 TD_TMX, // tmux control sequence
12 TD_EOL, // end of line
13 TD_BOL, // beginning of line
14 TD_NW, // next word
15 TD_PW, // pevious word
16 TD_DW, // delete word
17 TD_QT1, // single double quote for '
18 TD_QT2, // single double quote for "
19 TD_QT3, // single double quote for `
20 TD_PAR, // single double parenthesis
21 TD_CUR, // single double curly braces
22 TD_SQR, // single double square brackets
23 TD_ABR // single double angle brackets
24};
25#endif // TAP_DANCE_ENABLE
26void td_parenthesis (qk_tap_dance_state_t *state, void *user_data);
diff --git a/users/yet-another-developer/unicode.c b/users/yet-another-developer/unicode.c
new file mode 100644
index 000000000..8b312deb6
--- /dev/null
+++ b/users/yet-another-developer/unicode.c
@@ -0,0 +1,62 @@
1#include "unicode.h"
2
3//#ifdef UNICODEMAP_ENABLE
4const uint32_t PROGMEM unicode_map[] = {
5 [BANG] = 0x0203D,// ‽
6 [IRONY] = 0x02E2E,// ⸮
7 [DEGREE] = 0x000B0,// °
8 [THINK] = 0x1F914,// 🤔
9 [GRIN] = 0x1F600,// �
10 [MONOCL] = 0x1F9D0,// 🧐
11 [DRUG0] = 0x1F92A,// 🤪
12 [DRUG1] = 0x1F974,// 🥴
13 [CLOWN] = 0x1F921,// 🤡
14 [MNDBLWN] = 0x1F92F,// 🤯
15 [MONEY] = 0x1F911,// 🤑
16 [SHTUP] = 0x1F910,// 🤐
17 [PARTY] = 0x1F973,// 🥳
18 [SMRK] = 0x1F60F,// 😏
19 [WEARY] = 0x1F629,// 😩
20 [UNAMU] = 0x1F612,// 😒
21 [SPY] = 0x1F575,//🕵
22 [DAFUQ] = 0x1F47A,// 👺
23 [FIST0] = 0x1F91B,// 🤛
24 [FIST1] = 0x1F91C,// 🤜
25 [FIST2] = 0x270A, // ✊
26 [FIST3] = 0x1F44A,// 👊
27 [WIFIHAND] = 0x1F44B,// 👋
28 [OKOK] = 0x1F44C,// 👌
29 [EFFU] = 0x1F595,// 🖕
30 [SPOCK] = 0x1F596,// 🖖
31 [INUP] = 0x1F446,// 👆
32 [THDN] = 0x1F44E,// 👎
33 [THUP] = 0x1F44D,// 👍
34 [TUMBLER] = 0x1F943,// 🥃
35 [DRAGON0] = 0x1F409,// 🐉
36 [DRAGON1] = 0x1F432,// 🐲
37 [TIGER0] = 0x1F405,// 🐅
38 [TIGER1] = 0x1F42F,// 🐯
39 [COOL] = 0x1F192,// 🆒
40 [UCHART] = 0x1F4C8,// 📈
41 [DCHART] = 0x1F4C9,// 📉
42 [BCHART] = 0x1F4CA,// 📊
43 [NOPRCY] = 0x1F572,// 🕲
44 [PRCY] = 0x1F571,// 🕱
45 [BBB] = 0x1F171,// 🅱
46 [POO] = 0x1F4A9,// 💩
47 [HUNDR] = 0x1F4AF,// 💯
48 [EGGPL] = 0x1F346,// 🍆
49 [WATER] = 0x1F4A6,// 💦
50 [LIT] = 0x1F525,// 🔥
51 [SNEK] = 0x1F40D,// 🐍
52 [PENGUIN] = 0x1F427,// 🐧
53 [BOAR] = 0x1F417,// 🐗
54 [MONKEY] = 0x1F412,// 🐒
55 [CHICK] = 0x1F425,// 🐥
56 [DASH] = 0x1F4A8,// 💨
57 [DIZZY] = 0x1F4AB,// 💫
58 [KEEB] = 0x1F5AE,// 🖮
59 [HOLE] = 0x1F573,// 🕳
60 [SAUCER] = 0x1F6F8// 🛸
61 };
62//#endif // UNICODEMAP_ENABLE
diff --git a/users/yet-another-developer/unicode.h b/users/yet-another-developer/unicode.h
new file mode 100644
index 000000000..cb550243e
--- /dev/null
+++ b/users/yet-another-developer/unicode.h
@@ -0,0 +1,67 @@
1#pragma once
2
3#include "quantum.h"
4
5void send_unicode_hex_string(const char* str);
6
7/* use X(n) to call the */
8#ifdef UNICODEMAP_ENABLE
9enum unicode_name {
10OKOK, //
11BANG, // ‽
12IRONY, // ⸮
13DEGREE, // °
14THINK, // 🤔
15GRIN, // �
16MONOCL, // 🧐
17DRUG0, // 🤪
18DRUG1, // 🥴
19CLOWN, // 🤡
20MNDBLWN, // 🤯
21MONEY, // 🤑
22SHTUP, // 🤐
23PARTY, // 🥳
24SMRK, // 😏
25WEARY, // 😩
26UNAMU, // 😒
27SPY, // 🕵
28DAFUQ, // 👺
29FIST0, // 🤛
30FIST1, // 🤜
31FIST2, // ✊
32FIST3, // 👊
33WIFIHAND, // 👌
34EFFU, // 🖕
35SPOCK, // 🖖
36INUP, // 👆
37THDN, // 👎
38THUP, // 👍
39TUMBLER, // 🥃
40DRAGON0, // 🐉
41DRAGON1, // 🐅
42TIGER0, // 🐅
43TIGER1, // 🐯
44COOL, // 🆒
45UCHART, // 📈
46DCHART, // 📉
47BCHART, // 📊
48NOPRCY, // 🕲
49PRCY, // 🕱
50BBB, // 🅱
51POO, // 💩
52HUNDR, // 💯
53EGGPL, // 🍆
54WATER, // 💦
55LIT, // 🔥
56SNEK, // 🐍
57PENGUIN, // 🐧
58BOAR, // 🐗
59MONKEY, // 🐒
60CHICK, // 🐥
61DASH, // 💨
62DIZZY, // 💫
63KEEB, // 🖮
64HOLE, // 🕳
65SAUCER // 🛸
66};
67#endif
diff --git a/users/yet-another-developer/wrappers.h b/users/yet-another-developer/wrappers.h
new file mode 100644
index 000000000..cd21032a4
--- /dev/null
+++ b/users/yet-another-developer/wrappers.h
@@ -0,0 +1,166 @@
1#pragma once
2#include "yet-another-developer.h"
3
4/*
5Since our quirky block definitions are basically a list of comma separated
6arguments, we need a wrapper in order for these definitions to be
7expanded 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// clang-format off
14
15#define KEYMAP_wrapper(...) LAYOUT(__VA_ARGS__)
16#define LAYOUT_wrapper(...) LAYOUT(__VA_ARGS__)
17#define LAYOUT_ortho_5x14_wrapper(...) LAYOUT_ortho_5x14(__VA_ARGS__)
18
19/* ---------- LEFT HAND ----------- ---------- RIGHT HAND ---------- */
20#define LAYOUT_ergodash_pretty( \
21 L00, L01, L02, L03, L04, L05, L06, R00, R01, R02, R03, R04, R05, R06, \
22 L10, L11, L12, L13, L14, L15, L16, R10, R11, R12, R13, R14, R15, R16, \
23 L20, L21, L22, L23, L24, L25, L26, R20, R21, R22, R23, R24, R25, R26, \
24 L30, L31, L32, L33, L34, L35, R31, R32, R33, R34, R35, R36, \
25 L40, L41, L42, L43, R43, R44, R45, R46, \
26 L36, R30, \
27 L44, L45, L46, R40, R41, R42 \
28 ) \
29 { \
30 { L00, L01, L02, L03, L04, L05, L06 }, \
31 { L10, L11, L12, L13, L14, L15, L16 }, \
32 { L20, L21, L22, L23, L24, L25, L26 }, \
33 { L30, L31, L32, L33, L34, L35, L36 }, \
34 { L40, L41, L42, L43, L44, L45, L46 }, \
35 { R06, R05, R04, R03, R02, R01, R00 }, \
36 { R16, R15, R14, R13, R12, R11, R10 }, \
37 { R26, R25, R24, R23, R22, R21, R20 }, \
38 { R36, R35, R34, R33, R32, R31, R30 }, \
39 { R46, R45, R44, R43, R42, R41, R40 } \
40 }
41
42/*
43Blocks for each of the four major keyboard layouts
44Organized so we can quickly adapt and modify all of them
45at once, rather than for each keyboard, one at a time.
46And this allows for much cleaner blocks in the keymaps.
47For instance Tap/Hold for Control on all of the layouts
48
49NOTE: These are all the same length. If you do a search/replace
50 then you need to add/remove underscores to keep the
51 lengths consistent.
52*/
53
54#define _________________QWERTY_L1_________________ KC_Q, KC_W, KC_E, KC_R, KC_T
55#define _________________QWERTY_L2_________________ KC_A, KC_S, KC_D, KC_F, KC_G
56#define _________________QWERTY_L3_________________ KC_Z, KC_X, KC_C, KC_V, KC_B
57
58#define _________________QWERTY_R1_________________ KC_Y, KC_U, KC_I, KC_O, KC_P
59#define _________________QWERTY_R2_________________ KC_H, KC_J, KC_K, KC_L, KC_SCLN
60#define _________________QWERTY_R3_________________ KC_N, KC_M, KC_COMM, KC_DOT, KC_SLASH
61
62
63#ifdef TAP_DANCE_ENABLE
64 #define _________________COLEMAK_L1________________ KC_Q, KC_W, KC_F, KC_P, KC_G
65 #define _________________COLEMAK_L2________________ KC_BOL, KC_R, KC_S, KC_T, KC_D
66 #define _________________COLEMAK_L3________________ KC_Z, KC_X, KC_C, KC_V, KC_B
67
68 #define _________________COLEMAK_R1________________ KC_J, KC_L, KC_U, KC_Y, KC_SCLN
69 #define _________________COLEMAK_R2________________ KC_H, KC_N, KC_E, KC_I, KC_O
70 #define _________________COLEMAK_R3________________ KC_K, KC_M, KC_COMM, KC_DOT, KC_SLASH
71#else
72 #define _________________COLEMAK_L1________________ KC_Q, KC_W, KC_F, KC_P, KC_G
73 #define _________________COLEMAK_L2________________ KC_A, KC_R, KC_S, KC_T, KC_D
74 #define _________________COLEMAK_L3________________ KC_Z, KC_X, KC_C, KC_V, KC_B
75
76 #define _________________COLEMAK_R1________________ KC_J, KC_L, KC_U, KC_Y, KC_SCLN
77 #define _________________COLEMAK_R2________________ KC_H, KC_N, KC_E, KC_I, KC_O
78 #define _________________COLEMAK_R3________________ KC_K, KC_M, KC_COMM, KC_DOT, KC_SLASH
79#endif
80
81
82
83
84#define _________________DVORAK_L1_________________ KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y
85#define _________________DVORAK_L2_________________ KC_A, KC_O, KC_E, KC_U, KC_I
86#define _________________DVORAK_L3_________________ KC_SCLN, KC_Q, KC_J, KC_K, KC_X
87
88#define _________________DVORAK_R1_________________ KC_F, KC_G, KC_C, KC_R, KC_L
89#define _________________DVORAK_R2_________________ KC_D, KC_H, KC_T, KC_N, KC_S
90#define _________________DVORAK_R3_________________ KC_B, KC_M, KC_W, KC_V, KC_Z
91
92
93#define _________________WORKMAN_L1________________ KC_Q, KC_D, KC_R, KC_W, KC_B
94#define _________________WORKMAN_L2________________ KC_A, KC_S, KC_H, KC_T, KC_G
95#define _________________WORKMAN_L3________________ KC_Z, KC_X, KC_M, KC_C, KC_V
96
97#define _________________WORKMAN_R1________________ KC_J, KC_F, KC_U, KC_P, KC_SCLN
98#define _________________WORKMAN_R2________________ KC_Y, KC_N, KC_E, KC_O, KC_I
99#define _________________WORKMAN_R3________________ KC_K, KC_L, KC_COMM, KC_DOT, KC_SLASH
100
101// #define _________________WHITE_R1__________________ KC_V, KC_Y, KC_D, KC_COMM, KC_QUOT
102// #define _________________WHITE_R2__________________ KC_A, KC_T, KC_H, KC_E, KC_B
103// #define _________________WHITE_R3__________________ KC_P, KC_K, KC_G, KC_W, KC_Q
104
105// #define _________________WHITE_L1__________________ KC_INT1, KC_J, KC_M, KC_L, KC_U
106// #define _________________WHITE_L2__________________ KC_MINS, KC_C, KC_S, KC_N, KC_O // KC_I
107// #define _________________WHITE_L3__________________ KC_X, KC_R, KC_F, KC_DOT, KC_Z
108
109
110#ifdef UNICODE_ENABLE
111#define _______________UNICODE_L1__________________ UC_DISA,UC_DISA, UC_DISA, UC_DISA, UC_DISA
112#define _______________UNICODE_L2__________________ UC_DISA,UC_DISA, UC_DISA, UC_DISA, UC_DISA
113#define _______________UNICODE_L3__________________ UC_DISA,UC_DISA, UC_DISA, UC_DISA, UC_DISA
114
115#define _______________UNICODE_R1__________________ UC_SHRG, UC_SHRG, UC_SHRG, UC_SHRG, UC_SHRG
116#define _______________UNICODE_R2__________________ UC_SHRG, UC_SHRG, UC_SHRG, UC_SHRG, UC_SHRG
117#define _______________UNICODE_R3__________________ UC_SHRG, UC_SHRG, UC_SHRG, UC_SHRG, UC_SHRG
118#endif
119
120#ifdef UNICODEMAP_ENABLE
121#define _______________UNICODE_L1__________________ X(SMRK), X(THINK), X(CLOWN), X(HUNDR), X(BANG)
122#define _______________UNICODE_L2__________________ X(GRIN), X(MONKEY), X(OKOK), X(EGGPL), X(LIT)
123#define _______________UNICODE_L3__________________ X(WEARY), X(UNAMU), X(EFFU), X(MONOCL), X(IRONY)
124
125#define _______________UNICODE_R1__________________ X(DRUG0), X(THUP), X(INUP), X(DIZZY), X(COOL)
126#define _______________UNICODE_R2__________________ X(FIST0), X(FIST2),X(FIST3),X(FIST1), X(OKOK)
127#define _______________UNICODE_R3__________________ X(MNDBLWN), X(THDN), X(SPOCK),X(HOLE), X(DASH)
128#endif
129
130#define ________________NUMBER_LEFT________________ KC_1, KC_2, KC_3, KC_4, KC_5
131#define ________________NUMBER_RIGHT_______________ KC_6, KC_7, KC_8, KC_9, KC_0
132#define _________________FUNC_LEFT_________________ KC_F1, KC_F2, KC_F3, KC_F4, KC_F5
133#define _________________FUNC_RIGHT________________ KC_F6, KC_F7, KC_F8, KC_F9, KC_F10
134
135#define ___________________BLANK___________________ _______, _______, _______, _______, _______
136
137
138#define _________________LOWER_L1__________________ KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC
139#define _________________LOWER_L2__________________ _________________FUNC_LEFT_________________
140#define _________________LOWER_L3__________________ _________________FUNC_RIGHT________________
141
142#define _________________LOWER_R1__________________ KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN
143#define _________________LOWER_R2__________________ OS_UNI, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR
144#define _________________LOWER_R3__________________ _______, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
145
146
147
148#define _________________RAISE_L1__________________ ________________NUMBER_LEFT________________
149#define _________________RAISE_L2__________________ ___________________BLANK___________________
150#define _________________RAISE_L3__________________ ___________________BLANK___________________
151
152#define _________________RAISE_R1__________________ ________________NUMBER_RIGHT_______________
153#define _________________RAISE_R2__________________ _______, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC
154#define _________________RAISE_R3__________________ _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END
155
156
157
158#define _________________ADJUST_L1_________________ ___________________BLANK___________________
159#define _________________ADJUST_L2_________________ _________________FUNC_LEFT_________________
160#define _________________ADJUST_L3_________________ _______, QWERTY, COLEMAK, DVORAK, WORKMAN
161
162#define _________________ADJUST_R1_________________ KC_SEC1, KC_SEC2, KC_SEC3, KC_SEC4, KC_SEC5
163#define _________________ADJUST_R2_________________ _________________FUNC_RIGHT________________
164#define _________________ADJUST_R3_________________ KC_MUTE, KC_MUTE, KC_VOLD, KC_VOLU, KC_MNXT
165
166// clang-format on
diff --git a/users/yet-another-developer/yet-another-developer.c b/users/yet-another-developer/yet-another-developer.c
new file mode 100644
index 000000000..b729c0621
--- /dev/null
+++ b/users/yet-another-developer/yet-another-developer.c
@@ -0,0 +1,160 @@
1#include "quantum.h"
2#include "yet-another-developer.h"
3
4userspace_config_t userspace_config;
5
6#if (defined(UNICODE_ENABLE) || defined(UNICODEMAP_ENABLE) || defined(UCIS_ENABLE))
7 #define YAD_UNICODE_MODE UC_WIN
8#else
9// set to 2 for UC_WIN, set to 4 for UC_WINC
10 #define YAD_UNICODE_MODE 2
11#endif
12
13
14bool mod_key_press_timer(uint16_t code, uint16_t mod_code, bool pressed) {
15 static uint16_t this_timer;
16 if (pressed) {
17 this_timer = timer_read();
18 } else {
19 if (timer_elapsed(this_timer) < TAPPING_TERM) {
20 tap_code(code);
21 } else {
22 register_code(mod_code);
23 tap_code(code);
24 unregister_code(mod_code);
25 }
26 }
27 return false;
28}
29
30bool mod_key_press(uint16_t code, uint16_t mod_code, bool pressed, uint16_t this_timer) {
31 if (pressed) {
32 this_timer = timer_read();
33 } else {
34 if (timer_elapsed(this_timer) < TAPPING_TERM) {
35 tap_code(code);
36 } else {
37 register_code(mod_code);
38 tap_code(code);
39 unregister_code(mod_code);
40 }
41 }
42 return false;
43}
44
45// Add reconfigurable functions here, for keymap customization
46// This allows for a global, userspace functions, and continued
47// customization of the keymap. Use _keymap instead of _user
48// functions in the keymaps
49__attribute__ ((weak))
50void matrix_init_keymap(void) {}
51
52// Call user matrix init, set default RGB colors and then
53// call the keymap's init function
54void matrix_init_user(void) {
55 userspace_config.raw = eeconfig_read_user();
56
57 #if (defined(UNICODE_ENABLE) || defined(UNICODEMAP_ENABLE) || defined(UCIS_ENABLE))
58 set_unicode_input_mode(YAD_UNICODE_MODE);
59 get_unicode_input_mode();
60 #endif //UNICODE_ENABLE
61
62 matrix_init_keymap();
63}
64
65__attribute__((weak))
66void keyboard_post_init_keymap(void) {}
67
68void keyboard_post_init_user(void) {
69#ifdef RGBLIGHT_ENABLE
70 keyboard_post_init_rgb();
71#endif
72 keyboard_post_init_keymap();
73}
74
75__attribute__((weak))
76void suspend_power_down_keymap(void) {}
77
78void suspend_power_down_user(void) {
79 suspend_power_down_keymap();
80}
81
82__attribute__((weak))
83void suspend_wakeup_init_keymap(void) {}
84
85void suspend_wakeup_init_user(void) {
86 suspend_wakeup_init_keymap();
87}
88
89__attribute__((weak))
90void matrix_scan_keymap(void) {}
91
92__attribute__ ((weak))
93void matrix_scan_user(void){
94
95#ifdef TAP_DANCE_ENABLE // Run Diablo 3 macro checking code.
96// run_diablo_macro_check();
97#endif // TAP_DANCE_ENABLE
98
99#ifdef RGBLIGHT_ENABLE
100 matrix_scan_rgb();
101#endif // RGBLIGHT_ENABLE
102
103 matrix_scan_keymap();
104}
105
106__attribute__((weak))
107layer_state_t layer_state_set_keymap(layer_state_t state) {
108 return state;
109}
110
111// on layer change, no matter where the change was initiated
112// Then runs keymap's layer change check
113layer_state_t layer_state_set_user(layer_state_t state) {
114 state = update_tri_layer_state(state, _RAISE, _LOWER, _ADJUST);
115#ifdef RGBLIGHT_ENABLE
116 state = layer_state_set_rgb(state);
117#endif // RGBLIGHT_ENABLE
118 return layer_state_set_keymap(state);
119}
120
121__attribute__((weak))
122layer_state_t default_layer_state_set_keymap(layer_state_t state) {
123 return state;
124}
125
126// Runs state check and changes underglow color and animation
127layer_state_t default_layer_state_set_user(layer_state_t state) {
128 state = default_layer_state_set_keymap(state);
129#if 0
130#ifdef RGBLIGHT_ENABLE
131 state = default_layer_state_set_rgb(state);
132#endif // RGBLIGHT_ENABLE
133#endif
134 return state;
135}
136
137__attribute__ ((weak))
138void led_set_keymap(uint8_t usb_led) {}
139
140// Any custom LED code goes here.
141// So far, I only have keyboard specific code,
142// So nothing goes here.
143void led_set_user(uint8_t usb_led) {
144 led_set_keymap(usb_led);
145}
146
147__attribute__ ((weak))
148void eeconfig_init_keymap(void) {}
149
150void eeconfig_init_user(void) {
151 userspace_config.raw = 0;
152 userspace_config.rgb_layer_change = true;
153 eeconfig_update_user(userspace_config.raw);
154 #if (defined(UNICODE_ENABLE) || defined(UNICODEMAP_ENABLE) || defined(UCIS_ENABLE))
155 set_unicode_input_mode(YAD_UNICODE_MODE);
156 get_unicode_input_mode();
157 #else
158 eeprom_update_byte(EECONFIG_UNICODEMODE, YAD_UNICODE_MODE);
159 #endif
160}
diff --git a/users/yet-another-developer/yet-another-developer.h b/users/yet-another-developer/yet-another-developer.h
new file mode 100644
index 000000000..e0d02f707
--- /dev/null
+++ b/users/yet-another-developer/yet-another-developer.h
@@ -0,0 +1,87 @@
1#pragma once
2#include "quantum.h"
3#include "version.h"
4#include "eeprom.h"
5#include "wrappers.h"
6#include "process_records.h"
7
8#ifdef TAP_DANCE_ENABLE
9 #include "tap_dances.h"
10 #define KC_TMX TD(TD_TMX) // tap1: 't' tap2: <CTL>+b
11 #define KC_EOL TD(TD_EOL) // tap1: 'e' tap2: <CTL>+e
12 #define KC_BOL TD(TD_BOL) // tap1: 'a' tap2: <CTL>+a
13 #define KC_NW TD(TD_NW) // tap1: 'f' tap2: <ALT>+f
14 #define KC_PW TD(TD_PW) // tap1: 'b' tap2: <ALT>+b
15 #define KC_DW TD(TD_DW) // tap1: 'w' tap2: <CTL>+w
16#endif //!TAP_DANCE_ENABLE
17#if defined(RGBLIGHT_ENABLE) || defined(RGB_MATRIX_ENABLE)
18 #include "rgb_stuff.h"
19#endif
20#if defined(UNICODEMAP_ENABLE) || defined(UNICODE_ENABLE)
21 #include "unicode.h"
22#endif //!UNICODE_ENABLE
23
24#define MC_BOL LCTL(KC_A) // jump to beginning of line
25#define MC_EOL LCTL(KC_E) // jump to end of line
26#define MC_NW LALT(KC_F) // next word
27#define MC_PW LALT(KC_B) // previous word
28#define MC_DW LCTL(KC_W) // delete word
29
30/* Define layer names */
31enum userspace_layers {
32 _QWERTY = 0,
33 _NUMLOCK = 0,
34 _COLEMAK,
35 _DVORAK,
36 _WORKMAN,
37 _UNICODE,
38 _MODS, /* layer 8 */
39 _MACROS,
40 _MEDIA,
41 _LOWER,
42 _RAISE,
43 _ADJUST,
44};
45
46bool mod_key_press_timer(uint16_t code, uint16_t mod_code, bool pressed);
47bool mod_key_press(uint16_t code, uint16_t mod_code, bool pressed, uint16_t this_timer);
48void matrix_init_keymap(void);
49void suspend_power_down_keymap(void);
50void suspend_wakeup_init_keymap(void);
51void matrix_scan_keymap(void);
52layer_state_t layer_state_set_keymap(layer_state_t state);
53layer_state_t default_layer_state_set_keymap(layer_state_t state);
54void led_set_keymap(uint8_t usb_led);
55void eeconfig_init_keymap(void);
56
57typedef union {
58 uint32_t raw;
59 struct {
60 bool rgb_layer_change :1;
61 bool is_overwatch :1;
62 bool nuke_switch :1;
63 uint8_t unicode_mod :4;
64 bool swapped_numbers :1;
65 };
66} userspace_config_t;
67
68extern userspace_config_t userspace_config;
69
70/*
71Custom Keycodes for Diablo 3 layer
72But since TD() doesn't work when tap dance is disabled
73We use custom codes here, so we can substitute the right stuff
74*/
75#ifdef TAP_DANCE_ENABLE
76#define KC_D3_1 TD(TD_D3_1)
77#define KC_D3_2 TD(TD_D3_2)
78#define KC_D3_3 TD(TD_D3_3)
79#define KC_D3_4 TD(TD_D3_4)
80#else // TAP_DANCE_ENABLE
81#define KC_D3_1 KC_1
82#define KC_D3_2 KC_2
83#define KC_D3_3 KC_3
84#define KC_D3_4 KC_4
85#endif // TAP_DANCE_ENABLE
86
87