You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
455 B

  1. bool MATRIX_SCANNED = false;
  2. void matrix_scan_user(void) {
  3. if (!(MATRIX_SCANNED)) {
  4. rgblight_sethsv_noeeprom(HSV_GREEN);
  5. MATRIX_SCANNED = true;
  6. }
  7. };
  8. void leader_end_user(void) {
  9. if (leader_sequence_one_key(TD(APMR_PIPE))) {
  10. register_code(KC_LCTL);
  11. register_code(KC_LSFT);
  12. register_code(KC_U);
  13. unregister_code(KC_U);
  14. unregister_code(KC_LSFT);
  15. unregister_code(KC_LCTL);
  16. }
  17. }