mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-11 22:44:56 +00:00
emojis and reorg
This commit is contained in:
parent
eb660ef218
commit
5d965a8d41
1 changed files with 45 additions and 28 deletions
|
@ -6,16 +6,30 @@
|
||||||
|
|
||||||
#define _______ KC_TRNS
|
#define _______ KC_TRNS
|
||||||
|
|
||||||
|
void tap(uint16_t keycode){
|
||||||
|
register_code(keycode);
|
||||||
|
unregister_code(keycode);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
//Tap Dance Declarations
|
//Tap Dance Declarations
|
||||||
enum {
|
enum taps{
|
||||||
TD_CTCPS = 0
|
TD_CTCPS = 0
|
||||||
};
|
};
|
||||||
|
|
||||||
//Tap Dance Definitions
|
enum unicode_name {
|
||||||
qk_tap_dance_action_t tap_dance_actions[] = {
|
THINK, // thinking face 🤔
|
||||||
//Tap once for CTRL, twice for Caps Lock
|
GRIN, // grinning face 😊
|
||||||
[TD_CTCPS] = ACTION_TAP_DANCE_DOUBLE(KC_LCTL, KC_CAPS)
|
BBB, // dat B 🅱
|
||||||
// Other declarations would go here, separated by commas, if you have them
|
POO, // poop 💩
|
||||||
|
HUNDR, // 100 💯
|
||||||
|
SMRK, // smirk 😏
|
||||||
|
WEARY, // good shit 😩
|
||||||
|
EGGPL, // EGGPLANT 🍆
|
||||||
|
WATER, // wet 💦
|
||||||
|
LIT, // fire 🔥
|
||||||
|
UNAMU, // unamused 😒
|
||||||
|
SNEK // snke 🐍
|
||||||
};
|
};
|
||||||
|
|
||||||
enum my_macros {
|
enum my_macros {
|
||||||
|
@ -25,8 +39,24 @@ enum my_macros {
|
||||||
CLOSEDESK
|
CLOSEDESK
|
||||||
};
|
};
|
||||||
|
|
||||||
const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) // this is the function signature -- just copy/paste it into your keymap file as it is.
|
enum quick {
|
||||||
{
|
DISFACE = 0,
|
||||||
|
TFLIP,
|
||||||
|
TPUT,
|
||||||
|
SHRUG,
|
||||||
|
FACE,
|
||||||
|
RANDIG
|
||||||
|
};
|
||||||
|
|
||||||
|
// Tap Dance Definitions
|
||||||
|
qk_tap_dance_action_t tap_dance_actions[] = {
|
||||||
|
// Tap once for CTRL, twice for Caps Lock
|
||||||
|
[TD_CTCPS] = ACTION_TAP_DANCE_DOUBLE(KC_LCTL, KC_CAPS)
|
||||||
|
// Other declarations would go here, separated by commas, if you have them
|
||||||
|
};
|
||||||
|
|
||||||
|
// macros
|
||||||
|
const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
|
||||||
switch(id) {
|
switch(id) {
|
||||||
case NEWDESK: // this would trigger when you hit a key mapped as M(0)
|
case NEWDESK: // this would trigger when you hit a key mapped as M(0)
|
||||||
if (record->event.pressed) {
|
if (record->event.pressed) {
|
||||||
|
@ -52,22 +82,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) //
|
||||||
return MACRO_NONE;
|
return MACRO_NONE;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// emojis in unicode
|
||||||
enum unicode_name {
|
|
||||||
THINK, // thinking face 🤔
|
|
||||||
GRIN, // grinning face 😊
|
|
||||||
BBB, // dat B 🅱
|
|
||||||
POO, // poop 💩
|
|
||||||
HUNDR, // 100 💯
|
|
||||||
SMRK, // smirk 😏
|
|
||||||
WEARY, // good shit 😩
|
|
||||||
EGGPL, // EGGPLANT 🍆
|
|
||||||
WATER, // wet 💦
|
|
||||||
LIT, // fire 🔥
|
|
||||||
UNAMU, // unamused 😒
|
|
||||||
SNEK // snke 🐍
|
|
||||||
};
|
|
||||||
|
|
||||||
const uint32_t PROGMEM unicode_map[] = {
|
const uint32_t PROGMEM unicode_map[] = {
|
||||||
[THINK] = 0x1F914,
|
[THINK] = 0x1F914,
|
||||||
[GRIN] = 0x1F600,
|
[GRIN] = 0x1F600,
|
||||||
|
@ -83,6 +98,8 @@ const uint32_t PROGMEM unicode_map[] = {
|
||||||
[SNEK] = 0x1F40D
|
[SNEK] = 0x1F40D
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// Layouts
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
[0] = KEYMAP(\
|
[0] = KEYMAP(\
|
||||||
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR,KC_SLCK,KC_PAUS, \
|
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR,KC_SLCK,KC_PAUS, \
|
||||||
|
@ -116,10 +133,8 @@ void matrix_scan_user(void) {
|
||||||
|
|
||||||
SEQ_TWO_KEYS(KC_A, KC_A) {
|
SEQ_TWO_KEYS(KC_A, KC_A) {
|
||||||
register_code(KC_LCTL);
|
register_code(KC_LCTL);
|
||||||
register_code(KC_A);
|
tap(KC_A);
|
||||||
unregister_code(KC_A);
|
tap(KC_C);
|
||||||
register_code(KC_C);
|
|
||||||
unregister_code(KC_C);
|
|
||||||
unregister_code(KC_LCTL);
|
unregister_code(KC_LCTL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -130,3 +145,5 @@ void matrix_init_user(void) {
|
||||||
_delay_ms(500);
|
_delay_ms(500);
|
||||||
set_unicode_input_mode(UC_WINC);
|
set_unicode_input_mode(UC_WINC);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue