diff options
| author | Danilo Vulicevic <danilo.vulicevic@yahoo.com> | 2019-02-14 21:09:27 +0100 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-02-14 12:09:27 -0800 |
| commit | 1e6797b4e7d888f0c0449e3cd577dc83eb4c4525 (patch) | |
| tree | 054868cb8b176df99abdb91b3893e241727eaaf5 /users/billypython/billypython.h | |
| parent | ce465c084bfdfb3dbd24414397b2542176da423d (diff) | |
| download | qmk_firmware-1e6797b4e7d888f0c0449e3cd577dc83eb4c4525.tar.gz qmk_firmware-1e6797b4e7d888f0c0449e3cd577dc83eb4c4525.zip | |
[Keymap] Add my personal userspace and update my keymaps (#5128)
* Add billypython userspace and dz60 keymap
* Disable Bootmagic in dz60:billypython keymap
* Update whitefox:billypython keymap with userspace changes
Also remove numpad layer
Diffstat (limited to 'users/billypython/billypython.h')
| -rw-r--r-- | users/billypython/billypython.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/users/billypython/billypython.h b/users/billypython/billypython.h new file mode 100644 index 000000000..4a444e978 --- /dev/null +++ b/users/billypython/billypython.h | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include "quantum.h" | ||
| 4 | |||
| 5 | #ifdef TAP_DANCE_ENABLE | ||
| 6 | #include "tap_dance.h" | ||
| 7 | #endif | ||
| 8 | |||
| 9 | #ifdef LAYER_FN | ||
| 10 | #define FN MO(L_FN) | ||
| 11 | #define FN_CAPS LT(L_FN, KC_CAPS) | ||
| 12 | #define FN_FNLK TT(L_FN) | ||
| 13 | #endif | ||
| 14 | |||
| 15 | #define TOP LCTL(KC_HOME) | ||
| 16 | #define BOTTOM LCTL(KC_END) | ||
| 17 | |||
| 18 | enum keycodes_user { | ||
| 19 | CLEAR = SAFE_RANGE, | ||
| 20 | |||
| 21 | RANGE_KEYMAP, | ||
| 22 | }; | ||
| 23 | |||
| 24 | enum layers_user { | ||
| 25 | L_BASE, | ||
| 26 | #ifdef LAYER_FN | ||
| 27 | L_FN, | ||
| 28 | #endif | ||
| 29 | |||
| 30 | L_RANGE_KEYMAP, | ||
| 31 | }; | ||
| 32 | |||
| 33 | bool process_record_keymap(uint16_t keycode, keyrecord_t *record); | ||
| 34 | uint32_t layer_state_set_keymap(uint32_t state); | ||
