Add pcoves's userspace (#9354)
Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Pablo COVES <pablo.coves@anatoscope.com>
This commit is contained in:
parent
071e0c2029
commit
facca23315
13 changed files with 375 additions and 0 deletions
42
users/pcoves/rainbowUnicorn.c
Normal file
42
users/pcoves/rainbowUnicorn.c
Normal file
|
@ -0,0 +1,42 @@
|
|||
#include "rainbowUnicorn.h"
|
||||
#include "pcoves.h"
|
||||
|
||||
static struct {
|
||||
bool enabled;
|
||||
uint8_t color;
|
||||
char string[2];
|
||||
uint8_t mods;
|
||||
} state = {false, 0};
|
||||
|
||||
bool process_record_rainbowUnicorn(uint16_t keycode, keyrecord_t* record) {
|
||||
if (keycode == RAINBOW_UNICORN_TOGGLE) {
|
||||
state.enabled ^= true;
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!state.enabled) return true;
|
||||
|
||||
switch (keycode) {
|
||||
case KC_A ... KC_Z:
|
||||
case KC_1 ... KC_0:
|
||||
case ALT_T(KC_A)... ALT_T(KC_Z):
|
||||
case CTL_T(KC_A)... CTL_T(KC_Z):
|
||||
case GUI_T(KC_A)... GUI_T(KC_Z):
|
||||
case SFT_T(KC_A)... SFT_T(KC_Z):
|
||||
if (record->event.pressed) {
|
||||
state.mods = get_mods();
|
||||
clear_mods();
|
||||
|
||||
tap_code16(C(KC_C));
|
||||
|
||||
itoa(state.color + 3, state.string, 10);
|
||||
send_string(state.string);
|
||||
|
||||
set_mods(state.mods);
|
||||
} else {
|
||||
state.color = (state.color + 1) % 11;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue