This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.

19 lines
363 B
C
Raw Normal View History

#include QMK_KEYBOARD_H
2017-11-01 14:25:44 -04:00
#define _MAIN 0
#define _FN 1
#define KC_X0 LT(_FN, KC_ESC)
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[_MAIN] = LAYOUT(
KC_VOLU, KC_MPLY, KC_MPRV, KC_PGUP,
KC_VOLD, KC_MUTE, KC_MNXT, KC_PGDN
2017-11-01 14:25:44 -04:00
),
[_FN] = LAYOUT(
KC_F, _______, RGB_HUI, _______,
RGB_TOG, RGB_MOD, RGB_HUD, _______
2017-11-01 14:25:44 -04:00
)
};