diff options
Diffstat (limited to 'users/klackygears/klackygears.h')
-rw-r--r-- | users/klackygears/klackygears.h | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/users/klackygears/klackygears.h b/users/klackygears/klackygears.h new file mode 100644 index 000000000..69f3279e2 --- /dev/null +++ b/users/klackygears/klackygears.h | |||
@@ -0,0 +1,72 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include QMK_KEYBOARD_H | ||
4 | |||
5 | #include "wrappers.h" | ||
6 | #include "eeprom.h" | ||
7 | #ifdef TAP_DANCE_ENABLE | ||
8 | #include "tap_dances.h" | ||
9 | #endif // TAP_DANCE_ENABLE | ||
10 | |||
11 | enum layer_number { | ||
12 | _WINBASE = 0, | ||
13 | _MACBASE, | ||
14 | _QWERTY, | ||
15 | _GAMER, | ||
16 | _GAMR1, | ||
17 | _GAMR2, | ||
18 | _NGMR, | ||
19 | _NUMB, | ||
20 | _MNMB, | ||
21 | _SYMB, | ||
22 | _FUNC, | ||
23 | _MDIA, | ||
24 | _MEME | ||
25 | }; | ||
26 | |||
27 | enum userspace_custom_keycodes { | ||
28 | KC_MACBASE = SAFE_RANGE, | ||
29 | KC_QWERTY, | ||
30 | KC_WINBASE, | ||
31 | KC_GAMER, | ||
32 | KC_GAMR1, | ||
33 | KC_GAMR2, | ||
34 | NUMB, | ||
35 | MNMB, | ||
36 | SYMB, | ||
37 | FUNC, | ||
38 | MDIA, | ||
39 | RGBRST, | ||
40 | MAKEK, | ||
41 | MAKEKF, | ||
42 | SHRUG, | ||
43 | //DYNAMIC_MACRO_RANGE, | ||
44 | SAFE_RANGE_KEYMAP | ||
45 | }; | ||
46 | |||
47 | |||
48 | /* | ||
49 | #ifdef UNICODEMAP_ENABLE | ||
50 | enum unicode_names { | ||
51 | BANG, | ||
52 | IRONY, | ||
53 | SNEK, | ||
54 | }; | ||
55 | |||
56 | const uint32_t PROGMEM unicode_map[] = { | ||
57 | [BANG] = 0x203D, // ‽ | ||
58 | [IRONY] = 0x2E2E, // ⸮ | ||
59 | [SNEK] = 0x1F40D, // 🐍 | ||
60 | }; | ||
61 | #endif // UNICODEMAP_ENABLE | ||
62 | */ | ||
63 | |||
64 | |||
65 | //#include "dynamic_macro.h" | ||
66 | |||
67 | |||
68 | |||
69 | #if RGBLIGHT_ENABLE | ||
70 | uint8_t RGB_current_mode; | ||
71 | |||
72 | #endif | ||