summaryrefslogtreecommitdiff
path: root/keyboards/lily58/keymaps/gaston
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/lily58/keymaps/gaston')
-rw-r--r--keyboards/lily58/keymaps/gaston/config.h27
-rw-r--r--keyboards/lily58/keymaps/gaston/keymap.c70
-rw-r--r--keyboards/lily58/keymaps/gaston/readme.md68
-rw-r--r--keyboards/lily58/keymaps/gaston/rules.mk9
4 files changed, 0 insertions, 174 deletions
diff --git a/keyboards/lily58/keymaps/gaston/config.h b/keyboards/lily58/keymaps/gaston/config.h
deleted file mode 100644
index f4f3140d51..0000000000
--- a/keyboards/lily58/keymaps/gaston/config.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/* Copyright 2012 Jun Wako <wakojun@gmail.com>
- * Copyright 2015 Jack Humbert
- * Copyright 2021 Gaston Jorquera
- *
- * 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/>.
- */
-
-/* This is the c configuration file for the keymap. */
-
-#pragma once
-
-#define MASTER_LEFT
-
-#define QUICK_TAP_TERM 0
-#define TAPPING_TERM 150 /* ms */
-#define HOLD_ON_OTHER_KEY_PRESS_PER_KEY
diff --git a/keyboards/lily58/keymaps/gaston/keymap.c b/keyboards/lily58/keymaps/gaston/keymap.c
deleted file mode 100644
index c98ec4254b..0000000000
--- a/keyboards/lily58/keymaps/gaston/keymap.c
+++ /dev/null
@@ -1,70 +0,0 @@
-/* Copyright 2021 Gaston Jorquera
- *
- * 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/>.
- */
-
-/* This is the keymap configuration. */
-
-#include QMK_KEYBOARD_H
-
-enum layer_number {
- _QWERTY = 0,
- _LOWER,
- _MOUSE,
-};
-
-#define EN_LOWER LT(_LOWER, KC_SPC)
-#define EN_MOUSE MO(_MOUSE)
-#define MT_CESC LCTL_T(KC_ESC)
-
-/* See the readme.md file for an ASCII representation of this keymap. */
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-
-[_QWERTY] = LAYOUT(
- KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
- KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_MINS,
- MT_CESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
- KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, EN_MOUSE,KC_EQL, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
- KC_RALT, KC_LALT, KC_LGUI, EN_LOWER,EN_LOWER, KC_LBRC, KC_RBRC, KC_BSLS
-),
-
-[_LOWER] = LAYOUT(
- 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_TRNS, XXXXXXX, KC_MUTE, KC_VOLD, KC_VOLU, XXXXXXX, KC_HOME, KC_PGDN, KC_PGUP, KC_END, XXXXXXX, KC_F12,
- KC_TRNS, XXXXXXX, KC_MPRV, KC_MPLY, KC_MNXT, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, XXXXXXX, XXXXXXX,
- KC_TRNS, XXXXXXX, XXXXXXX, KC_BRID, KC_BRIU, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_INS, KC_DEL, XXXXXXX, XXXXXXX, XXXXXXX,
- KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, XXXXXXX, XXXXXXX, XXXXXXX
-),
-
-[_MOUSE] = LAYOUT(
- XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
- XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_BTN1, KC_BTN2, XXXXXXX, XXXXXXX, KC_ACL0, XXXXXXX,
- XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MS_L, KC_MS_D, KC_MS_U, KC_MS_R, KC_ACL1, XXXXXXX,
- XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_TRNS, XXXXXXX, KC_WH_L, KC_WH_D, KC_WH_U, KC_WH_R, KC_ACL2, XXXXXXX,
- XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX
-)
-
-};
-
-bool get_hold_on_other_key_press(uint16_t keycode, keyrecord_t *record) {
- switch (keycode) {
- case MT_CESC:
- // Immediately select the hold action when another key is pressed.
- return true;
- default:
- // Do not select the hold action when another key is pressed.
- return false;
- }
-}
diff --git a/keyboards/lily58/keymaps/gaston/readme.md b/keyboards/lily58/keymaps/gaston/readme.md
deleted file mode 100644
index cf8b13786e..0000000000
--- a/keyboards/lily58/keymaps/gaston/readme.md
+++ /dev/null
@@ -1,68 +0,0 @@
-# Gaston's Lily58 Keymap
-
-A simple three layers keymap to improve typing performance by reducing
-cognitive load.
-
-The main characteristics of this keymap are:
-
-* The QWERTY layer tries to be as normal as possible, without having to use
- modifiers.
- * The main thumb buttons are spaces when tapped and enable the LOWER layer
- when held.
- * Vim style arrow keys.
- * Left Control is ESC when tapped.
- * Left and right ALT in case you need different behaviors. (For example, the
- default Option and readline's Alt behavior in macOS.)
-* The LOWER layer has mostly meta keys.
-* The MOUSE layer controls the mouse.
-
-## QWERTY Layer
-
-```plain
-,-----------------------------------------. ,-----------------------------------------.
-| ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | BSPC |
-|------+------+------+------+------+------| |------+------+------+------+------+------|
-| TAB | Q | W | E | R | T | | Y | U | I | O | P | - |
-|------+------+------+------+------+------| |------+------+------+------+------+------|
-|C_ESC | A | S | D | F | G |-------. ,-------| H | J | K | L | ; | ' |
-|------+------+------+------+------+------| MOUSE | | = |------+------+------+------+------+------|
-| LSFT | Z | X | C | V | B |-------| |-------| N | M | , | . | / | ENT |
-`-----------------------------------------/ LT / \ LT \----------------------------------------'
- | RALT | LALT | LGUI | / LOWER / \ LOWER \ | [ | ] | \ |
- | | | |/ SPC / \ SPC \ | | | |
- `----------------------------' '-----------------------------'
-```
-
-## LOWER Layer
-
-```plain
-,-----------------------------------------. ,-----------------------------------------.
-| TRNS | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 |
-|------+------+------+------+------+------| |------+------+------+------+------+------|
-| TRNS | | MUTE | VOLD | VOLU | | | HOME | PGDN | PGUP | END | | F12 |
-|------+------+------+------+------+------| |------+------+------+------+------+------|
-| TRNS | | MPRV | MPLY | MNXT | |-------. ,-------| LEFT | DOWN | UP | RGHT | | |
-|------+------+------+------+------+------| | | |------+------+------+------+------+------|
-| TRNS | | | BRID | BRIU | |-------| |-------| | INS | DEL | | | |
-`-----------------------------------------/ / \ \----------------------------------------'
- | TRNS | TRNS | TRNS | / TRNS / \ TRNS \ | | | |
- | | | |/ / \ \ | | | |
- `----------------------------' '-----------------------------'
-```
-
-## MOUSE Layer
-
-```plain
-,-----------------------------------------. ,-----------------------------------------.
-| | | | | | | | | | | | | |
-|------+------+------+------+------+------| |------+------+------+------+------+------|
-| | | | | | | | BTN1 | BTN2 | | | ACL0 | |
-|------+------+------+------+------+------| |------+------+------+------+------+------|
-| | | | | | |-------. ,-------| MS_L | MS_D | MS_U | MS_R | ACL1 | |
-|------+------+------+------+------+------| TRNS | | |------+------+------+------+------+------|
-| | | | | | |-------| |-------| WH_L | WH_D | WH_U | WH_R | ACL2 | |
-`-----------------------------------------/ / \ \----------------------------------------'
- | | | | / / \ \ | | | |
- | | | |/ / \ \ | | | |
- `----------------------------' '-----------------------------'
-```
diff --git a/keyboards/lily58/keymaps/gaston/rules.mk b/keyboards/lily58/keymaps/gaston/rules.mk
deleted file mode 100644
index 4d566ddb79..0000000000
--- a/keyboards/lily58/keymaps/gaston/rules.mk
+++ /dev/null
@@ -1,9 +0,0 @@
-MOUSEKEY_ENABLE = yes
-EXTRAKEY_ENABLE = yes
-RGBLIGHT_ENABLE = no
-OLED_ENABLE = no
-
-SRC += ./lib/rgb_state_reader.c \
- ./lib/layer_state_reader.c \
- ./lib/logo_reader.c \
- ./lib/keylogger.c \