summaryrefslogtreecommitdiff
path: root/layouts/default/ortho_5x4
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/default/ortho_5x4')
-rw-r--r--layouts/default/ortho_5x4/default_ortho_5x4/keymap.c64
-rw-r--r--layouts/default/ortho_5x4/info.json35
-rw-r--r--layouts/default/ortho_5x4/layout.json5
-rw-r--r--layouts/default/ortho_5x4/readme.md3
4 files changed, 0 insertions, 107 deletions
diff --git a/layouts/default/ortho_5x4/default_ortho_5x4/keymap.c b/layouts/default/ortho_5x4/default_ortho_5x4/keymap.c
deleted file mode 100644
index 5354a899bb..0000000000
--- a/layouts/default/ortho_5x4/default_ortho_5x4/keymap.c
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright 2023 QMK
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#include QMK_KEYBOARD_H
-
-enum custom_keycodes {
- KC_P00 = SAFE_RANGE
-};
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- /*
- * ┌───┬───┬───┬───┐
- * │TG1│ / │ * │ - │
- * ├───┼───┼───┼───┤
- * │ 7 │ 8 │ 9 │ + │
- * ├───┼───┼───┼───┤
- * │ 4 │ 5 │ 6 │ % │
- * ├───┼───┼───┼───┤
- * │ 1 │ 2 │ 3 │ = │
- * ├───┼───┼───┼───┤
- * │ 0 │00 │ . │Ent│
- * └───┴───┴───┴───┘
- */
- [0] = LAYOUT_ortho_5x4(
- TG(1), KC_PSLS, KC_PAST, KC_PMNS,
- KC_P7, KC_P8, KC_P9, KC_PPLS,
- KC_P4, KC_P5, KC_P6, KC_PERC,
- KC_P1, KC_P2, KC_P3, KC_EQL,
- KC_P0, KC_P00, KC_PDOT, KC_PENT
- ),
-
- /*
- * ┌───┬───┬───┬───┐
- * │TG1│ / │ * │ - │
- * ┌───┬───┬───┐───┤
- * │Hom│ ↑ │PgU│ + │
- * ├───┼───┼───┤───┤
- * │ ← │ │ → │ % │
- * ├───┼───┼───┤───┤
- * │End│ ↓ │PgD│ = │
- * ├───┼───┼───┤───┤
- * │Ins│ │Del│Ent│
- * └───┴───┴───┘───┘
- */
- [1] = LAYOUT_ortho_5x4(
- _______, _______, _______, _______,
- KC_HOME, KC_UP, KC_PGUP, _______,
- KC_LEFT, XXXXXXX, KC_RGHT, _______,
- KC_END, KC_DOWN, KC_PGDN, _______,
- KC_INS, XXXXXXX, KC_DEL, _______
- )
-};
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- if (record->event.pressed) {
- switch(keycode) {
- case KC_P00:
- tap_code(KC_P0);
- tap_code(KC_P0);
- return false;
- }
- }
- return true;
-}
diff --git a/layouts/default/ortho_5x4/info.json b/layouts/default/ortho_5x4/info.json
deleted file mode 100644
index b76fa288ae..0000000000
--- a/layouts/default/ortho_5x4/info.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "keyboard_name": "5x4 ortholinear layout",
- "url": "",
- "maintainer": "qmk",
- "layouts": {
- "LAYOUT_ortho_5x4": {
- "layout": [
- {"x":0, "y":0},
- {"x":1, "y":0},
- {"x":2, "y":0},
- {"x":3, "y":0},
-
- {"x":0, "y":1},
- {"x":1, "y":1},
- {"x":2, "y":1},
- {"x":3, "y":1},
-
- {"x":0, "y":2},
- {"x":1, "y":2},
- {"x":2, "y":2},
- {"x":3, "y":2},
-
- {"x":0, "y":3},
- {"x":1, "y":3},
- {"x":2, "y":3},
- {"x":3, "y":3},
-
- {"x":0, "y":4},
- {"x":1, "y":4},
- {"x":2, "y":4},
- {"x":3, "y":4}
- ]
- }
- }
-}
diff --git a/layouts/default/ortho_5x4/layout.json b/layouts/default/ortho_5x4/layout.json
deleted file mode 100644
index 67a96a7beb..0000000000
--- a/layouts/default/ortho_5x4/layout.json
+++ /dev/null
@@ -1,5 +0,0 @@
-[{a:7},"","","",""],
-["","","",""],
-["","","",""],
-["","","",""],
-["","","",""]
diff --git a/layouts/default/ortho_5x4/readme.md b/layouts/default/ortho_5x4/readme.md
deleted file mode 100644
index c953628ef6..0000000000
--- a/layouts/default/ortho_5x4/readme.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# ortho_5x4
-
- LAYOUT_ortho_5x4