Skip to content

Commit

Permalink
move personal code
Browse files Browse the repository at this point in the history
  • Loading branch information
asdiasx committed Aug 25, 2024
1 parent 0f5d297 commit ed6e0c9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 29 deletions.
29 changes: 0 additions & 29 deletions users/manna-harbour_miryoku/custom_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,32 +26,3 @@ U_NP, U_NP, U_NA, U_NA, U_NA
K32, K33, K34, K35, K36, K37 \
)
#endif


enum custom_keycodes {
STR_VPN,
STR_NIB,
// SELWRD,
};

bool process_record_user(uint16_t keycode, keyrecord_t* record) {
// if (!process_select_word(keycode, record, SELWRD)) { return false; }
switch (keycode) {

case STR_VPN:
if (record->event.pressed) {
SEND_STRING("9l0i9jod");
}
return false;

case STR_NIB:
if (record->event.pressed) {
SEND_STRING("1%9$m2My");
}
return false;
}
return true;
}



25 changes: 25 additions & 0 deletions users/manna-harbour_miryoku/manna-harbour_miryoku.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,31 @@

#include "manna-harbour_miryoku.h"

// ASD features
enum custom_keycodes {
STR_VPN,
STR_NIB,
// SELWRD,
};

bool process_record_user(uint16_t keycode, keyrecord_t* record) {
// if (!process_select_word(keycode, record, SELWRD)) { return false; }
switch (keycode) {

case STR_VPN:
if (record->event.pressed) {
SEND_STRING("9l0i9jod");
}
return false;

case STR_NIB:
if (record->event.pressed) {
SEND_STRING("1%9$m2My");
}
return false;
}
return true;
}

// Additional Features double tap guard

Expand Down

0 comments on commit ed6e0c9

Please sign in to comment.