diff options
author | kuchosauronad0 <22005492+kuchosauronad0@users.noreply.github.com> | 2019-10-29 22:52:24 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-10-29 22:52:24 -0700 |
commit | 674fcc474c162f44fadfa8a796134751d80ee639 (patch) | |
tree | 78fd0514eb6c2a6c686a6261802002fd5d04706e /users/kuchosauronad0/process_records.c | |
parent | b1c2bf071bcfd0d5badf79656f523dd8f5146f25 (diff) | |
download | qmk_firmware-674fcc474c162f44fadfa8a796134751d80ee639.tar.gz |
[Keymap] Update to Userspace kuchosauronad0 (#6899)
* Add Plover layer, remove unused layers
* Add rgb indicator for success/failed sequences
* Add RGB effects
* Add RGB
* Add effects for start and end of a leader sequence
* Add PLOVER layer
* Add RGB
* Add RBG
* Minor clean up
* Minor clean up
* Minor clean up
* Minor clean up
* Rename rgb_light to rgblight_user and fix all references to it
* Remove unnecessary guards
Remove unnecessary matrix_scan in rgb post_init function
* remove trailing newline
Diffstat (limited to 'users/kuchosauronad0/process_records.c')
-rw-r--r-- | users/kuchosauronad0/process_records.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/users/kuchosauronad0/process_records.c b/users/kuchosauronad0/process_records.c index 1eb3043b1..bec6fa5ad 100644 --- a/users/kuchosauronad0/process_records.c +++ b/users/kuchosauronad0/process_records.c @@ -25,7 +25,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { #endif //KEYLOGGER_ENABLE switch (keycode) { - case KC_QWERTY ... KC_UNICODE: + case KC_QWERTY ... KC_PLOVER: if (record->event.pressed) { set_single_persistent_default_layer(keycode - KC_QWERTY); } @@ -168,7 +168,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { case KC_OVERWATCH: // Toggle's if we hit "ENTER" or "BACKSPACE" to input macros if (record->event.pressed) { userspace_config.is_overwatch ^= 1; eeconfig_update_user(userspace_config.raw); } #ifdef RGBLIGHT_ENABLE - userspace_config.is_overwatch ? rgblight_mode_noeeprom(17) : rgblight_mode_noeeprom(18); +// userspace_config.is_overwatch ? rgblight_mode_noeeprom(17) : rgblight_mode_noeeprom(18); #endif //RGBLIGHT_ENABLE break; case KC_SALT: |