Klor Fix, Userspace Adds, Keymap tweaks

- Updated Klor config for updated haptic defines
- Music mode is now off for good
- Added userspace config for haptics and audio
- Went back to numpad 0 on the thumbs
- Added haptic and audio keys on the config layer
- removed all combos except drag scroll
- Updated and added overrides for haptics/audio/Mousekeys
This commit is contained in:
Victor 2024-05-24 00:13:24 -05:00
parent f07b0203d0
commit a1764f59ac
Failed to generate hash of commit
15 changed files with 188 additions and 75 deletions

View file

@ -0,0 +1,11 @@
#include tapping.h
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case NAV:
return TAPPING_TERM - 40;
default:
return TAPPING_TERM;
}
}