summaryrefslogtreecommitdiff
path: root/keyboards/akb
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2023-12-18 14:06:47 +1100
committerGitHub <noreply@github.com>2023-12-18 14:06:47 +1100
commitf25226453fb253b5d1c2f1684365d6248d8b5750 (patch)
tree8fbc0eb6b4a56adcd6dca750ce2ccca9dc85bc1a /keyboards/akb
parent9539f135d8161557f0ffdfecb6e8c8c8b09786a2 (diff)
Remove obvious user keymaps, `keyboards/a*` edition. (#22692)
Diffstat (limited to 'keyboards/akb')
-rw-r--r--keyboards/akb/raine/keymaps/mehadviceguy/keymap.c75
-rw-r--r--keyboards/akb/raine/keymaps/mehadviceguy/readme.md68
2 files changed, 0 insertions, 143 deletions
diff --git a/keyboards/akb/raine/keymaps/mehadviceguy/keymap.c b/keyboards/akb/raine/keymaps/mehadviceguy/keymap.c
deleted file mode 100644
index 522651f1c6..0000000000
--- a/keyboards/akb/raine/keymaps/mehadviceguy/keymap.c
+++ /dev/null
@@ -1,75 +0,0 @@
-/* Copyright 2019 Elliot Powell
- *
- * 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 QMK_KEYBOARD_H
-
-/*
-BLANK
- ,----------------------------------------------------------------. ,--------------.
- | | | | | | | | | | | | | | | | | |
- |----------------------------------------------------------------| |--------------|
- | | | | | | | | | | | | | | | | |
- |------------------------------------------------------------ | |--------------|
- | | | | | | | | | | | | | | | | |
- |----------------------------------------------------------------' |--------------|
- | | | | | | | | | | | | ,----. | | | |
- |-----------------------------------------------------------' | | `--------------|
- | | | | | | ,--------------. | | |
- `------` '------------------------------` '-----' | | | | `---------'
- `--------------'
-*/
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [0] = LAYOUT( /* Base
- ,----------------------------------------------------------------. ,--------------.
- |Esc | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | Bac| | / | * | + |
- |----------------------------------------------------------------| |--------------|
- | Tab | Q | W | E | R | T | Y | U | I | O | P | Enter| | 7 | 8 | 9 |
- |------------------------------------------------------------ | |--------------|
- |CapsLock | A | S | D | F | G | H | J | K | L | : | | | 4 | 5 | 6 |
- |----------------------------------------------------------------' |--------------|
- |Shift | \ | Z | X | C | V | B | N | M | , | . | ,----. | 1 | 2 | 3 |
- |-----------------------------------------------------------' | Up | `--------------|
- | Ctrl | | SPACE | |AltGr| ,--------------. | 0 | . |
- `------` '------------------------------` '-----' |L/fn|Down|Rght| `---------'
- `--------------'
- */
-KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_BSPC, KC_PSLS, KC_PAST, KC_PPLS,
-KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, _______, KC_P7, KC_P8, KC_P9,
-KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, KC_P4, KC_P5, KC_P6,
-KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMMA, KC_DOT, KC_UP, KC_P1, KC_P2, KC_P3,
-KC_LCTL, _______, _______, _______, KC_SPC, _______, _______, KC_RALT, LT(1, KC_LEFT), KC_DOWN, KC_RGHT, KC_P0, KC_PDOT),
-
- [1] = LAYOUT( /* Second
- ,----------------------------------------------------------------. ,--------------.
- | GRV| F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9| F10| F11| F12 | |Nlck|Pscr| = |
- |----------------------------------------------------------------| |--------------|
- | | | | | | | | | | | ? | DEL | |Home| Up |PgUp|
- |------------------------------------------------------------ | |--------------|
- | | | | | | | | | | | ' |DEL | |Left|ScrL|Rght|
- |----------------------------------------------------------------' |--------------|
- | | | | | | | | | | [ | ] | ,----. |End |Down|PgDn|
- |-----------------------------------------------------------' | | `--------------|
- | GUI | | | | | ,--------------. | |Rest|
- `------` '------------------------------` '-----' | | | | `---------'
- `--------------'
- */
-KC_GRV, 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_NUM, KC_PSCR, KC_EQUAL,
-_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_SLSH, _______, KC_HOME, KC_UP, KC_PGUP,
-_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_QUOT, KC_DEL, KC_LEFT, KC_SCRL, KC_RGHT,
-_______, _______, _______, _______, _______, _______, _______, _______, _______, KC_LBRC, KC_RBRC, _______, KC_END, KC_DOWN, KC_PGDN,
-KC_LGUI, _______, _______, _______, KC_LALT, _______, _______, _______, _______, _______, _______, _______, QK_BOOT),
-};
-
diff --git a/keyboards/akb/raine/keymaps/mehadviceguy/readme.md b/keyboards/akb/raine/keymaps/mehadviceguy/readme.md
deleted file mode 100644
index e9e411bc5b..0000000000
--- a/keyboards/akb/raine/keymaps/mehadviceguy/readme.md
+++ /dev/null
@@ -1,68 +0,0 @@
-# Eyecandy
-![Eyecandy](https://i.imgur.com/gYWNDlF.png)
-
-# MehAdviceGuy Raine layout
-
-Welcome to one of the most useless layouts you will find this side of town!
-The layout is born out of the need for AltGr to get to æø and å when you don't have a full bottom row.
-
-## Base Layer (0)
-The base layer borrows alot from the Default Raine layer in regards to the alphas, and the numpad. But deviates ever so slightly by putting the layer key on the Left arrow key, relacing it from its original location with AltGr. And putting , and . on what was normally ? and right shift.
-```
- ,----------------------------------------------------------------. ,--------------.
- |Esc | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | Bac| | / | * | + |
- |----------------------------------------------------------------| |--------------|
- | Tab | Q | W | E | R | T | Y | U | I | O | P | Enter| | 7 | 8 | 9 |
- |------------------------------------------------------------ | |--------------|
- |CapsLock | A | S | D | F | G | H | J | K | L | : | | | 4 | 5 | 6 |
- |----------------------------------------------------------------' |--------------|
- |Shift | \ | Z | X | C | V | B | N | M | , | . | ,----. | 1 | 2 | 3 |
- |-----------------------------------------------------------' | Up | `--------------|
- | Ctrl | | SPACE | |AltGr| ,--------------. | 0 | . |
- `------` '------------------------------` '-----' |L/fn|Down|Rght| `---------'
- `--------------'
-```
-
-## Modifier Layer (1)
-The Modifier layer also borrows a few things from the Default Raine layout, but changes a fair bit of things in it. These changes include:
-* Moving Delete to Enter and completing the F-row
-* Moving [ and ] to , and .
-* Adding GUI to Left Ctrl
-* Replacing insert with =
-* Adding / to the P position
-* Moving ' one to the left
-
-```
- ,----------------------------------------------------------------. ,--------------.
- | GRV| F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9| F10| F11| F12 | |Nlck|Pscr| = |
- |----------------------------------------------------------------| |--------------|
- | | | | | | | | | | | ? | DEL | |Home| Up |PgUp|
- |------------------------------------------------------------ | |--------------|
- | | | | | | | | | | | ' |DEL | |Left|ScrL|Rght|
- |----------------------------------------------------------------' |--------------|
- | | | | | | | | | | [ | ] | ,----. |End |Down|PgDn|
- |-----------------------------------------------------------' | | `--------------|
- | GUI | | | | | ,--------------. | |Rest|
- `------` '------------------------------` '-----' | | | | `---------'
- `--------------'
-```
-
-### Blank ASKII version if anyone needs!
-```
- ,----------------------------------------------------------------. ,--------------.
- | | | | | | | | | | | | | | | | | |
- |----------------------------------------------------------------| |--------------|
- | | | | | | | | | | | | | | | | |
- |------------------------------------------------------------ | |--------------|
- | | | | | | | | | | | | | | | | |
- |----------------------------------------------------------------' |--------------|
- | | | | | | | | | | | | ,----. | | | |
- |-----------------------------------------------------------' | | `--------------|
- | | | | | | ,--------------. | | |
- `------` '------------------------------` '-----' | | | | `---------'
- `--------------'
-```
-
-### KLE
-![KLE Layout](https://i.imgur.com/JDc1oM4.png)
-![KLE Link](http://www.keyboard-layout-editor.com/##@@=Esc%0A%60&=!%0A1&=%2F@%0A2&=%23%0A3&=$%0A4&=%25%0A5&=%5E%0A6&=%2F&%0A7&=*%0A8&=(%0A9&=)%0A0&=%2F_%0A-&=+%0A%2F=&_x:0.25%3B&=%2F%2F&=*&=+%3B&@_w:1.5%3B&=Tab&=Q&=W&=E&=R&=T&=Y&=U&=I&=O&=P&_x:0.25&w:1.25&h:2&w2:1.5&h2:1&x2:-0.25%3B&=Enter&_x:0.25%3B&=7&=8&=9%3B&@_w:1.75%3B&=Caps%20Lock&=A&=S&=D&=F&=G&=H&=J&=K&=L&=%2F:%0A%2F%3B&_x:1.5%3B&=4&=5&=6%3B&@_w:1.25%3B&=Shift&=%7C%0A%5C&=Z&=X&=C&=V&=B&=N&=M&=%3C%0A,&_w:1.5%3B&=%3E%0A.&_x:1.5%3B&=1&=2&=3%3B&@_y:-0.75&x:12%3B&=%E2%86%91%3B&@_y:-0.25&w:1.25%3B&=Ctrl&_x:1&a:7&w:6.25%3B&=&_x:1&a:4&w:1.25%3B&=AltGr&_x:3.5%3B&=0&=.%3B&@_y:-0.75&x:11%3B&=%E2%86%90%0AFN&=%E2%86%93&=%E2%86%92%3B&@_y:0.25%3B&=%60&=F1&=F2&=F3&=F4&=F5&=F6&=F7&=F8&=F9&=F10&=F11&=F12&_x:0.25%3B&=NLock&=Print&=%2F=%3B&@_a:7&w:1.5%3B&=&=&=&=&=&=&=&=&=&=&_a:4%3B&=%2F%2F&_x:0.25&w:1.25&h:2&w2:1.5&h2:1&x2:-0.25%3B&=Del&_x:0.25%3B&=Home&=Up&=PgUp%3B&@_a:7&w:1.75%3B&=&=&=&=&=&=&=&=&=&=&_a:4%3B&='&_x:1.5%3B&=Left&=ScrLc&=Right%3B&@_a:7&w:1.25%3B&=&=&=&=&=&=&=&=&=&_a:4%3B&=%5B&_w:1.5%3B&=%5D&_x:1.5%3B&=End&=Down&=PgDn%3B&@_y:-0.75&x:12&a:7%3B&=%3B&@_y:-0.25&a:4&w:1.25%3B&=Win&_x:1&w:6.25%3B&=RAlt&_x:1&a:7&w:1.25%3B&=&_x:3.5%3B&=&_a:4%3B&=Rst%3B&@_y:-0.75&x:11&a:7%3B&=&=&=) \ No newline at end of file