summaryrefslogtreecommitdiffstats
path: root/keyboards/synthandkeys/bento_box/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/synthandkeys/bento_box/keymaps/default/keymap.c')
-rw-r--r--keyboards/synthandkeys/bento_box/keymaps/default/keymap.c41
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