diff options
author | Synth and Keys <117340582+Synth-and-Keys@users.noreply.github.com> | 2023-08-02 11:05:00 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 10:05:00 -0700 |
commit | 34a2f1427426e28f9e260e2e9f53a63a131e6ad2 (patch) | |
tree | f97a7dbdba2e2d622d04cc7eb8fb28b3e741a550 /keyboards/synthandkeys/bento_box/keymaps | |
parent | d16d87c2f33f66e02861a657f259a9c82307de8f (diff) |
[Keyboard] Add Bento Box macropad (#20521)
Diffstat (limited to 'keyboards/synthandkeys/bento_box/keymaps')
-rw-r--r-- | keyboards/synthandkeys/bento_box/keymaps/default/keymap.c | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/keyboards/synthandkeys/bento_box/keymaps/default/keymap.c b/keyboards/synthandkeys/bento_box/keymaps/default/keymap.c new file mode 100644 index 0000000000..bf8f26984b --- /dev/null +++ b/keyboards/synthandkeys/bento_box/keymaps/default/keymap.c @@ -0,0 +1,41 @@ +// Copyright 2023 Synth-and-Keys (@Synth-and-Keys) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + /* + * ---------------------------------------------------------------- + * | | | | Ctrl+0 | GUI+Shift+S | + * ---------------------------------------------------------------- + * | | Mute | | Copy | Paste | + * ---------------------------------------------------------------- + * | Prev | Pause | Next | | | + * ---------------------------------------------------------------- + * | Home | Up | End | Ctrl+T | Ctrl+W | + * ---------------------------------------------------------------- + * | Left | Down | Right | Shift+Alt+Tab | Alt+Tab | + * ---------------------------------------------------------------- + */ + [0] = LAYOUT( + C(KC_0), G(S(KC_S)), + KC_MUTE, C(KC_C), C(KC_V), + KC_MPRV, KC_MPLY, KC_MNXT, + KC_HOME, KC_UP, KC_END, C(KC_T), C(KC_W), + KC_LEFT, KC_DOWN, KC_RIGHT, S(C(KC_TAB)), C(KC_TAB) + ) +}; + + /* LAYER TEMPLATE + * ------------------------------------ + * | | | | | | + * ------------------------------------ + * | | | | | | + * ------------------------------------ + * | | | | | | + * ------------------------------------ + * | | | | | | + * ------------------------------------ + * | | | | | | + * ------------------------------------ + */
\ No newline at end of file |