diff options
Diffstat (limited to 'keyboards')
| -rw-r--r-- | keyboards/shiro/keymaps/default_mac/config.h | 19 | ||||
| -rw-r--r-- | keyboards/shiro/keymaps/default_mac/keymap.c | 50 | ||||
| -rw-r--r-- | keyboards/shiro/keymaps/default_mac/readme.md | 1 |
3 files changed, 70 insertions, 0 deletions
diff --git a/keyboards/shiro/keymaps/default_mac/config.h b/keyboards/shiro/keymaps/default_mac/config.h new file mode 100644 index 000000000..369388ada --- /dev/null +++ b/keyboards/shiro/keymaps/default_mac/config.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* Copyright 2019 T.Shinohara | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #pragma once | ||
| 18 | |||
| 19 | // place overrides here | ||
diff --git a/keyboards/shiro/keymaps/default_mac/keymap.c b/keyboards/shiro/keymaps/default_mac/keymap.c new file mode 100644 index 000000000..58ee06370 --- /dev/null +++ b/keyboards/shiro/keymaps/default_mac/keymap.c | |||
| @@ -0,0 +1,50 @@ | |||
| 1 | /* Copyright 2019 T.Shinohara | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #include QMK_KEYBOARD_H | ||
| 17 | |||
| 18 | enum layer_number { | ||
| 19 | _NUMBER = 0, | ||
| 20 | _CURSOL, | ||
| 21 | _MOUSE | ||
| 22 | }; | ||
| 23 | |||
| 24 | #define NUMBER TO(_NUMBER) | ||
| 25 | #define CURSOL TO(_CURSOL) | ||
| 26 | #define MOUSE TO(_MOUSE) | ||
| 27 | |||
| 28 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 29 | [_NUMBER] = LAYOUT( | ||
| 30 | NUMBER, CURSOL, MOUSE, | ||
| 31 | KC_P7, KC_P8, KC_P9, | ||
| 32 | KC_P4, KC_P5, KC_P6, | ||
| 33 | KC_P1, KC_P2, KC_P3, | ||
| 34 | KC_P0, KC_BSPC, KC_ENT | ||
| 35 | ), | ||
| 36 | [_CURSOL] = LAYOUT( | ||
| 37 | NUMBER, CURSOL, MOUSE, | ||
| 38 | KC_HOME, KC_UP, KC_PGUP, | ||
| 39 | KC_LEFT, KC_ESC, KC_RIGHT, | ||
| 40 | KC_END, KC_DOWN, KC_PGDN, | ||
| 41 | KC_DEL, KC_BSPC, KC_ENT | ||
| 42 | ), | ||
| 43 | [_MOUSE] = LAYOUT( | ||
| 44 | NUMBER, CURSOL, MOUSE, | ||
| 45 | LGUI(KC_X), LGUI(KC_C), LGUI(KC_V), | ||
| 46 | LGUI(KC_Z), LGUI(KC_F), KC_AGIN, | ||
| 47 | XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 48 | KC_DEL, KC_BSPC, KC_ENT | ||
| 49 | ), | ||
| 50 | }; | ||
diff --git a/keyboards/shiro/keymaps/default_mac/readme.md b/keyboards/shiro/keymaps/default_mac/readme.md new file mode 100644 index 000000000..715ddd335 --- /dev/null +++ b/keyboards/shiro/keymaps/default_mac/readme.md | |||
| @@ -0,0 +1 @@ | |||
| # The default keymap for Shiro \ No newline at end of file | |||
