Skip to content

Commit

Permalink
chore: Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioCadenas committed Aug 14, 2022
1 parent d3129cc commit fb11a19
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
29 changes: 15 additions & 14 deletions keyboards/nasu/keymaps/mariocs/keymap.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright 2021 MarioCadenas
/* Copyright 2021 MarioCadenas (@MarioCadenas)
*
* 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
Expand All @@ -15,26 +15,27 @@
*/
#include QMK_KEYBOARD_H

enum {
TD_LGUI,
};

layer_state_t layer_state_set_user(layer_state_t state) {
switch (get_highest_layer(state)) {
case 1:
setPinInputHigh(B0);
break;
default:
setPinInputLow(B0);
break;
}
return state;
layer_state_cmp(state, 1) ? setPinInputHigh(B0) : setPinInputLow(B0);

return state;
}

qk_tap_dance_action_t tap_dance_actions[] = {
[TD_LGUI] = ACTION_TAP_DANCE_LAYER_TOGGLE(KC_LGUI, 1),
};

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT_alice_split_bs( /* Base */
KC_ESC, KC_GRV, 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_TRNS, 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,
MO(1), 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_ENT,
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, TG(1), KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(2),
KC_LCTL, KC_LALT, KC_SPC, KC_LGUI, KC_SPC, KC_RALT, KC_RCTL),
KC_PGUP, 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_PGDN, 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_ENT,
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_END, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(2),
KC_LCTL, KC_LALT, KC_SPC, TD(TD_LGUI), KC_SPC, KC_RALT, KC_RCTL),

[1] = LAYOUT_alice_split_bs( /* FN */
KC_TRNS, KC_TRNS, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_TRNS, KC_TRNS,
Expand Down
1 change: 1 addition & 0 deletions keyboards/nasu/keymaps/mariocs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@

* Via enabled.
* When layer 1 is activated (Toggled os just temporarily), the numlock led will be switched on.
* Double tapping `LGUI` key will toggle layer 1.
1 change: 1 addition & 0 deletions keyboards/nasu/keymaps/mariocs/rules.mk
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
VIA_ENABLE = yes
TAP_DANCE_ENABLE = yes

0 comments on commit fb11a19

Please sign in to comment.