55 regels
2.6 KiB
C
55 regels
2.6 KiB
C
/*
|
|
Copyright 2016 Jun Wako <wakojun@gmail.com>
|
|
|
|
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 "unimap_trans.h"
|
|
|
|
|
|
#define AC_L1 ACTION_LAYER_TAP_KEY(1, KC_RGUI)
|
|
|
|
|
|
#ifdef KEYMAP_SECTION_ENABLE
|
|
const action_t actionmaps[][UNIMAP_ROWS][UNIMAP_COLS] __attribute__ ((section (".keymap.keymaps"))) = {
|
|
#else
|
|
const action_t actionmaps[][UNIMAP_ROWS][UNIMAP_COLS] PROGMEM = {
|
|
#endif
|
|
/* 0:
|
|
* ,-----------------------------------------------------------.
|
|
* |` | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| #|Bsp|
|
|
* |-----------------------------------------------------------|
|
|
* |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \ |
|
|
* |-----------------------------------------------------------|
|
|
* |Caps | A| S| D| F| G| H| J| K| L| ;| '|Enter |
|
|
* |-----------------------------------------------------------|
|
|
* |Shft| \| Z| X| C| V| B| N| M| ,| .| /|Shift |Esc|
|
|
* |-----------------------------------------------------------'
|
|
* |Ctrl|Gui |Alt | Space |App |Alt |Gui |Ctrl |
|
|
* `-----------------------------------------------------------'
|
|
*/
|
|
[0] = UNIMAP_ALPS64( \
|
|
GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS,EQL, NUHS,BSPC, \
|
|
TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC,RBRC, BSLS, \
|
|
LCTL,A, S, D, F, G, H, J, K, L, SCLN,QUOT, ENT, \
|
|
LSFT,NUBS,Z, X, C, V, B, N, M, COMM,DOT, SLSH, RSFT,ESC, \
|
|
LCTL,LGUI,LALT, SPC, APP, RALT,L1, RCTL),
|
|
|
|
[1] = UNIMAP_ALPS64( \
|
|
ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, INS, DEL, \
|
|
CAPS,TRNS,TRNS,TRNS,TRNS,TRNS,TRNS,TRNS,PSCR,SLCK,PAUS, UP, TRNS, BSPC, \
|
|
TRNS,VOLD,VOLU,MUTE,TRNS,TRNS,PAST,PSLS,HOME,PGUP,LEFT,RGHT, PENT, \
|
|
TRNS,TRNS,TRNS,TRNS,TRNS,TRNS,TRNS,PPLS,PMNS,END, PGDN,DOWN, TRNS,TRNS, \
|
|
TRNS,TRNS,TRNS, TRNS, TRNS,TRNS,TRNS,TRNS),
|
|
};
|