Updating everything to use the new userspace format
This commit is contained in:
@@ -8,12 +8,14 @@
|
||||
|
||||
enum {
|
||||
TD_Q_ESC,
|
||||
TD_W_GRV
|
||||
TD_W_GRV,
|
||||
BRT_OPA
|
||||
};
|
||||
|
||||
// Tap dance keycodes
|
||||
#define Q_ESC TD(TD_Q_ESC)
|
||||
#define W_GRV TD(TD_W_GRV)
|
||||
#define TD_OPAR TD(BRT_OPA)
|
||||
|
||||
|
||||
// Custom keycodes
|
||||
@@ -21,7 +23,7 @@ enum {
|
||||
enum {
|
||||
CUSTOM_KEYCODE_START = SAFE_RANGE,
|
||||
M_PASS1,
|
||||
M_PASS12,
|
||||
M_PASS2,
|
||||
CUSTOM_KEYCODE_END
|
||||
};
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
// THUMB KEYS
|
||||
#define ___________THUMB_L3________ MUS_ESC, NAV_BKSP,MOUSE_TAB
|
||||
#define ___________THUMB_R3________ SYM_ENTER,NUM_SPC,FUN_DEL
|
||||
#define _________________BOOT_L1____________________ _______, _______, _______
|
||||
#define ___________THUMB_3__BLANK__ _______, _______, _______
|
||||
|
||||
#define ____THUMB_L2____ NAV_BKSP,FUN_TAB
|
||||
#define ____THUMB_R2____ SYM_ENTER,NUM_SPC
|
||||
@@ -50,27 +50,23 @@
|
||||
|
||||
// SYM
|
||||
#define __________________SYM_L1____________________ KC_LCBR, KC_AMPR, KC_ASTR, KC_LPRN, KC_RCBR
|
||||
#define __________________SYM_L1____________________ KC_COLN, KC_DLR, KC_PERC, KC_CIRC, KC_PLUS
|
||||
#define __________________SYM_L1____________________ KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_PIPE
|
||||
#define __________________SYM_L2____________________ KC_COLN, KC_DLR, KC_PERC, KC_CIRC, KC_PLUS
|
||||
#define __________________SYM_L3____________________ KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_PIPE
|
||||
#define _________SYM_TH_L3________ KC_LPRN, KC_RPRN, KC_UNDS
|
||||
#define _____SYM_TH_L2___ KC_RPRN, KC_UNDS
|
||||
|
||||
// FUN
|
||||
#define __________________FUN_R1____________________ _______, _______, _______, _______, QK_BOOTLOADER
|
||||
#define __________________FUN_L1____________________ KC_LCBR, KC_AMPR, KC_ASTR, KC_LPRN, KC_RCBR
|
||||
#define __________________FUN_L1____________________ KC_COLN, KC_DLR, KC_PERC, KC_CIRC, KC_PLUS
|
||||
#define __________________FUN_L1____________________ KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_PIPE
|
||||
#define __________________FUN_L1____________________ KC_F12, KC_F7, KC_F8, KC_F9, KC_PSCR
|
||||
#define __________________FUN_L2____________________ KC_F11, KC_F4, KC_F5, KC_F6, _______
|
||||
#define __________________FUN_L3____________________ KC_F10, KC_F1, KC_F2, KC_F3, _______
|
||||
|
||||
|
||||
// MUS
|
||||
#define __________________MUS_L1____________________ QK_BOOTLOADER, _______, _______, _______, _______
|
||||
|
||||
#define __________________MUS_R1____________________ KC_LCBR, KC_AMPR, KC_ASTR, KC_LPRN, KC_RCBR
|
||||
#define __________________MUS_R2____________________ KC_COLN, KC_DLR, KC_PERC, KC_CIRC, KC_PLUS
|
||||
#define __________________MUS_R3____________________ KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_PIPE
|
||||
#define __________________MUS_R2____________________ _______, KC_MPRV, KC_VOLD, KC_VOLU, KC_MNXT
|
||||
#define __________________MUS_R3____________________ _______, KC_MSTP, KC_MPLY, KC_MUTE, _______
|
||||
|
||||
|
||||
// MOUSE
|
||||
#define __________________MOU_R1____________________ _______, KC_PSTE, KC_COPY, KC_CUT, KC_UNDO
|
||||
#define __________________MOU_R2____________________ KC_BTN1, KC_MS_L, KC_MS_D, KC_MS_U, KC_MS_R
|
||||
#define __________________MOU_R3____________________ KC_BTN2, KC_WH_L, KC_WH_D, KC_WH_U, KC_WH_R
|
||||
#define __________________MOU_R2____________________ KC_BTN1, KC_MS_L, KC_MS_D, KC_MS_U, KC_MS_R
|
||||
#define __________________MOU_R3____________________ KC_BTN2, KC_WH_L, KC_WH_D, KC_WH_U, KC_WH_R
|
||||
9
dgvigil/definitions/process_record.h
Normal file
9
dgvigil/definitions/process_record.h
Normal file
@@ -0,0 +1,9 @@
|
||||
#pragma once
|
||||
|
||||
#define _PROCESS_RECORD_RESULT_H
|
||||
|
||||
typedef enum {
|
||||
PROCESS_RECORD_RETURN_TRUE,
|
||||
PROCESS_RECORD_RETURN_FALSE,
|
||||
PROCESS_RECORD_CONTINUE
|
||||
} process_record_result_t;
|
||||
Reference in New Issue
Block a user