~ruther/qmk_firmware

ref: cd374b1500b6d581c133f18d45a4a774d9e0f313 qmk_firmware/keyboards/anavi/arrows/keymaps/default/keymap.c -rw-r--r-- 472 bytes
cd374b15 — Ryan `clueboard/card`: Swap layout and alias (#24007) 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2023 Leon Anavi <leon@anavi.org>
// SPDX-License-Identifier: GPL-2.0-or-later

#include QMK_KEYBOARD_H

enum layer_names {
    _BASE
};

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
    [_BASE] = LAYOUT(
                           KC_MUTE,
                  KC_UP,
        KC_RIGHT, KC_DOWN, KC_LEFT)
};

const uint16_t PROGMEM backlight_combo[] = {KC_UP, KC_DOWN, COMBO_END};
combo_t key_combos[] = {
    COMBO(backlight_combo, BL_STEP)
};
Do not follow this link