Skip to content

Commit

Permalink
Port MonsGeek M6 to Vial
Browse files Browse the repository at this point in the history
  • Loading branch information
adophoxia committed Sep 29, 2023
1 parent ee7f5ac commit 0efdcaa
Show file tree
Hide file tree
Showing 4 changed files with 342 additions and 0 deletions.
8 changes: 8 additions & 0 deletions keyboards/monsgeek/m6/keymaps/vial/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */

#pragma once

#define VIAL_KEYBOARD_UID {0x4C, 0x18, 0xFC, 0x92, 0x2C, 0x74, 0x6D, 0xF7}

#define VIAL_UNLOCK_COMBO_ROWS { 0, 3 }
#define VIAL_UNLOCK_COMBO_COLS { 0, 13 }
76 changes: 76 additions & 0 deletions keyboards/monsgeek/m6/keymaps/vial/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
/* Copyright (C) 2023 jonylee@hfd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include QMK_KEYBOARD_H

enum __layers {
WIN_B,
WIN_W,
WIN_FN,
MAC_B,
MAC_W,
MAC_FN
};

#define KC_TASK LGUI(KC_TAB)
#define KC_FLXP LGUI(KC_E)
#define KC_SIRI LCMD(KC_SPC)
// clang-format off
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

[WIN_B] = LAYOUT( /* Base */
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,KC_EQL, KC_BSPC, KC_DEL,
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,KC_RBRC, KC_BSLS, KC_PGUP,
KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,KC_NUHS, KC_ENT, KC_PGDN,
KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
KC_LCTL, KC_LALT, KC_SPC, KC_LGUI, KC_SPC, KC_RALT, MO(WIN_FN), KC_LEFT, KC_DOWN, KC_RGHT),

[WIN_W] = LAYOUT( /* Base */
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_W,
_______, _______, _______, _______, _______, _______, _______, KC_A, KC_S, KC_D),

[WIN_FN] = LAYOUT(
KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, RGB_MOD,
_______, _______,TG(WIN_W),_______, _______, _______, _______, _______, KC_INS, DF(MAC_B),KC_PSCR,_______, _______, _______, KC_HOME,
_______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_TOG, RGB_SPD, RGB_SPI, _______, RGB_HUI, KC_END,
_______, _______, _______, _______, KC_CALC, _______, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, RGB_VAI,
_______, _______, _______, GU_TOGG, _______, _______, _______, RGB_SAD, RGB_VAD, RGB_SAI),

[MAC_B] = LAYOUT( /* Base */
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,KC_EQL, KC_BSPC, KC_DEL,
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,KC_RBRC, KC_BSLS, KC_PGUP,
KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,KC_NUHS, KC_ENT, KC_PGDN,
KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
KC_LCTL, KC_LGUI, KC_SPC, KC_LALT, KC_SPC, KC_RGUI, MO(MAC_FN), KC_LEFT, KC_DOWN, KC_RGHT),

[MAC_W] = LAYOUT(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_W,
_______, _______, _______, _______, _______, _______, _______, KC_A, KC_S, KC_D),

[MAC_FN] = LAYOUT( /* FN */
KC_GRV, KC_BRID, KC_BRIU, KC_MCTL, KC_SIRI, _______, _______, KC_MPRV, KC_MPLY, KC_MNXT, KC_MUTE, KC_VOLD,KC_VOLU, _______, RGB_MOD,
_______, _______,TG(MAC_W),_______, _______, _______, _______, _______, KC_INS, DF(WIN_B),KC_PSCR,_______, _______, _______, KC_HOME,
_______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_TOG, RGB_SPD, RGB_SPI, _______, RGB_HUI, KC_END,
_______, _______, _______, _______, KC_CALC, _______, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, RGB_VAI,
_______, _______, _______, _______, _______, _______, _______, RGB_SAD, RGB_VAD, RGB_SAI),
};

2 changes: 2 additions & 0 deletions keyboards/monsgeek/m6/keymaps/vial/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
VIA_ENABLE = yes
VIAL_ENABLE = yes
256 changes: 256 additions & 0 deletions keyboards/monsgeek/m6/keymaps/vial/vial.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,256 @@
{
"name": "M6",
"vendorId": "0xFFFE",
"productId": "0x0011",
"lighting": "vialrgb",
"matrix": { "rows": 5, "cols": 16 },
"layouts": {
"keymap":[
[
{
"y": 0.25,
"x": 2.75
},
"0,2",
{
"x": 9
},
"0,11"
],
[
{
"y": -0.75,
"x": 0.75,
"c": "#aaaaaa"
},
"0,0",
{
"c": "#cccccc"
},
"0,1",
{
"x": 11
},
"0,12",
{
"c": "#777777",
"w": 2
},
"0,13",
{
"x": 1.25
},
"0,15"
],
[
{
"x": 0.75,
"w": 1.5
},
"1,0",
{
"c": "#cccccc"
},
"1,1",
{
"x": 9.25
},
"1,10",
"1,11",
"1,12",
{
"w": 1.5
},
"1,13",
{
"x": 1,
"c": "#777777"
},
"1,15"
],
[
{
"x": 0.5,
"w": 2
},
"2,0",
{
"c": "#cccccc"
},
"2,1",
{
"x": 9.5
},
"2,10",
"2,11",
{
"c": "#aaaaaa",
"w": 2.25
},
"2,13",
{
"x": 0.75,
"c": "#777777"
},
"2,15"
],
[
{
"x": 0.25,
"w": 2.5
},
"3,0",
{
"x": 10,
"c": "#cccccc"
},
"3,10",
"3,13",
{
"c": "#777777",
"w": 2
},
"3,14",
{
"x": 0.25
},
"3,15"
],
[
{
"x": 0.25,
"w": 1.5
},
"4,0",
{
"x": 11.25,
"w": 1.25
},
"4,11",
{
"x": 1.75
},
"4,13",
"4,14",
"4,15"
],
[
{
"rx": 1,
"y": 3.5,
"x": 1.75,
"c": "#cccccc"
},
"3,1"
],
[
{
"r": 10,
"rx": 1.5,
"x": 2.5
},
"0,3",
"0,4",
"0,5",
"0,6"
],
[
{
"x": 2.25
},
"1,2",
"1,3",
"1,4",
"1,5"
],
[
{
"x": 2.75
},
"2,2",
"2,3",
"2,4",
"2,5"
],
[
{
"x": 3.25
},
"3,2",
"3,3",
"3,4",
"3,5"
],
[
{
"x": 3,
"c": "#777777",
"w": 1.25
},
"4,1",
{
"c": "#cccccc",
"w": 2
},
"4,2",
{
"c": "#777777",
"w": 1.25
},
"4,5"
],
[
{
"r": -10,
"rx": 1,
"y": 2.5,
"x": 7.25,
"c": "#cccccc"
},
"0,7",
"0,8",
"0,9",
"0,10"
],
[
{
"x": 6.75
},
"1,6",
"1,7",
"1,8",
"1,9"
],
[
{
"x": 7
},
"2,6",
"2,7",
"2,8",
"2,9"
],
[
{
"x": 6.5
},
"3,6",
"3,7",
"3,8",
"3,9"
],
[
{
"x": 6.5,
"w": 2.5
},
"4,9",
{
"c": "#777777",
"w": 1.75
},
"4,10"
]
]
}
}

0 comments on commit 0efdcaa

Please sign in to comment.