Last active
December 24, 2018 04:42
-
-
Save hmsk/c6e448ae228d6ab82916f56c9473fedb to your computer and use it in GitHub Desktop.
Figma Macros / QMK Keymap for Sweet16 by 1upkeyboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "sweet16.h" | |
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |
LAYOUT_ortho_4x4( | |
KC_PGUP, KC_PGDN, KC_N, LSFT(KC_N), | |
LALT(LGUI(KC_L)), LALT(LGUI(KC_T)), LALT(LGUI(KC_R)), LALT(LGUI(KC_J)), | |
LALT(KC_LT), LALT(KC_GT), LALT(KC_COMMA), LALT(KC_DOT), | |
LGUI(KC_B), LGUI(KC_I), LGUI(KC_U), KC_NO | |
) | |
}; | |
bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment