From 1ed03f498fa204178c2696c510ac6a2cd8524e2d Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Sun, 26 Nov 2023 18:36:45 +0000 Subject: Remove userspace keymaps (#22544) --- users/alfrdmalr/alfrdmalr.c | 91 -------------- users/alfrdmalr/alfrdmalr.h | 286 -------------------------------------------- users/alfrdmalr/config.h | 7 -- users/alfrdmalr/readme.md | 46 ------- users/alfrdmalr/rules.mk | 8 -- 5 files changed, 438 deletions(-) delete mode 100644 users/alfrdmalr/alfrdmalr.c delete mode 100644 users/alfrdmalr/alfrdmalr.h delete mode 100644 users/alfrdmalr/config.h delete mode 100644 users/alfrdmalr/readme.md delete mode 100644 users/alfrdmalr/rules.mk (limited to 'users/alfrdmalr') diff --git a/users/alfrdmalr/alfrdmalr.c b/users/alfrdmalr/alfrdmalr.c deleted file mode 100644 index 7bc04fb55c..0000000000 --- a/users/alfrdmalr/alfrdmalr.c +++ /dev/null @@ -1,91 +0,0 @@ -#include "alfrdmalr.h" -#include "muse.h" - -bool muse_mode = false; -uint8_t last_muse_note = 0; -uint16_t muse_counter = 0; -uint8_t muse_offset = 70; -uint16_t muse_tempo = 50; - -void leader_end_user(void) { - // reset keyboard to bootloader - if (leader_sequence_five_keys(KC_R, KC_E, KC_S, KC_E, KC_T)) { - reset_keyboard(); - } -} - -void matrix_scan_user(void) { -#ifdef AUDIO_ENABLE - if (muse_mode) { - if (muse_counter == 0) { - uint8_t muse_note = muse_offset + SCALE[muse_clock_pulse()]; - if (muse_note != last_muse_note) { - stop_note(compute_freq_for_midi_note(last_muse_note)); - play_note(compute_freq_for_midi_note(muse_note), 0xF); - last_muse_note = muse_note; - } - } - muse_counter = (muse_counter + 1) % muse_tempo; - } else { - if (muse_counter) { - stop_all_notes(); - muse_counter = 0; - } - } -#endif -} - -bool syml_pressed = false; -bool symr_pressed = false; -bool settings_active = false; -bool symbols_active = false; -bool process_record_user(uint16_t keycode, keyrecord_t *record) { - switch(keycode) { - case SYML: - if (record->event.pressed) { - syml_pressed = true; - } else { - syml_pressed = false; - } - break; - case SYMR: - if (record->event.pressed) { - symr_pressed = true; - } else { - symr_pressed = false; - } - break; - } - - // trilayer-esque behavior. If both SYMBOL layer keys are held, then the - // settings layer is open. If only one is held, SYMBOL is active. - if (syml_pressed && symr_pressed) { - layer_on(_SETTINGS); - settings_active = true; - } else if (syml_pressed || symr_pressed) { - if (settings_active) { - layer_off(_SETTINGS); - settings_active = false; - } - layer_on(_SYMBOL); - symbols_active = true; - } else { - if (symbols_active) { - layer_off(_SYMBOL); - symbols_active = false; - } - } - - return true; -} - -// allow access to the settings layer to turn music mode back off -bool music_mask_user(uint16_t keycode) { - switch (keycode) { - case SYML: - case SYMR: - return false; - default: - return true; - } -} \ No newline at end of file diff --git a/users/alfrdmalr/alfrdmalr.h b/users/alfrdmalr/alfrdmalr.h deleted file mode 100644 index 0709f80b86..0000000000 --- a/users/alfrdmalr/alfrdmalr.h +++ /dev/null @@ -1,286 +0,0 @@ -/* -Copyright 2020 Alfred Maler @alfrdmalr - -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 -MERCHANTIBILITY 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 . -*/ - -#pragma once -#include QMK_KEYBOARD_H - -enum shared_layers { - _QWERTY, - _SYMBOL, - _NAVIGATION, - _NUMPAD, - _SETTINGS -}; - -// KEYCODES ============================================================================ - -// the SYML and SYMR keycodes are just used to activate the symbols layer. -// they're distinct so that I can hit both of them to activate a trilayer -enum alfrdmalr_keycodes { - SYML = SAFE_RANGE, - SYMR -}; - -#define NUMSPACE LT(_NUMPAD, KC_SPC) -#define NAVLAYER MO(_NAVIGATION) -#define SYMLAYER MO(_SYMBOL) -#define SETLAYER MO(_SETTINGS) -#define CTRLSHFT C(KC_LSFT) -#define WINUNDO C(KC_Z) -#define WINCOPY C(KC_C) -#define WINCUT C(KC_X) -#define WINPASTE C(KC_V) - -// convenience keycodes/aliases for base modifiers -// bottom row -#define K41 CTRLSHFT -#define K42 KC_LGUI -#define K43 KC_LALT -// #define K44 SYMLAYER -#define K44 SYML -#define K45 NUMSPACE -#define K46 NUMSPACE -// #define K47 SYMLAYER -#define K47 SYMR -#define K48 KC_RALT -#define K49 SETLAYER -#define K4A MU_TOGG - -// leftmost column -#define K00 KC_ESC -#define K10 KC_TAB -#define K20 NAVLAYER -#define K30 KC_LSFT -#define K40 KC_LCTL - -// rightmost column -#define K0B KC_BSPC -#define K1B KC_BSPC -#define K1B_ALT KC_DEL // for 5x12 boards, keep backspace as the top-left key and add delete key -#define K2B KC_QUOT -#define K3B KC_RSFT -#define K4B QK_LEAD - -// LAYOUT WRAPPERS ===================================================================== -#if (!defined(LAYOUT) && defined(KEYMAP)) -# define LAYOUT KEYMAP -#endif - -#define LAYOUT_wrapper(...) LAYOUT(__VA_ARGS__) -#define LAYOUT_ortho_4x12_wrapper(...) LAYOUT_ortho_4x12(__VA_ARGS__) -#define LAYOUT_ortho_5x12_wrapper(...) LAYOUT_ortho_5x12(__VA_ARGS__) - -// KEYCODE GROUPS ====================================================================== -// MISC -#define ______TRANS______ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS -#define ____NUMROW_L0____ KC_1, KC_2, KC_3, KC_4, KC_5 -#define ____NUMROW_R0____ KC_6, KC_7, KC_8, KC_9, KC_0 -#define _____BASE_L4_____ K41, K42, K43, K44, K45 -#define _____BASE_R4_____ K46, K47, K48, K49, K4A - -/* QWERTY ============================================================================== - * ,-----------------------------------------------------------------------------------. - * | ESC | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | BKSP | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | TAB | Q | W | E | R | T | Y | U | I | O | P | BKSP | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | NAV | A | S | D | F | G | H | J | K | L | ; | " | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | SHFT | Z | X | C | V | B | N | M | , | . | / | SHFT | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | CTRL | C/S | LGUI | LALT | SYMB | NUM/SPACE | SYMB | RALT | SETT | MUTG | LEAD | - * `-----------------------------------------------------------------------------------' - */ - -// LEFT -// - CORE -#define ____QWERTY_L1____ KC_Q, KC_W, KC_E, KC_R, KC_T -#define ____QWERTY_L2____ KC_A, KC_S, KC_D, KC_F, KC_G -#define ____QWERTY_L3____ KC_Z, KC_X, KC_C, KC_V, KC_B - -// RIGHT -// - CORE -#define ____QWERTY_R1____ KC_Y, KC_U, KC_I, KC_O, KC_P -#define ____QWERTY_R2____ KC_H, KC_J, KC_K, KC_L, KC_SCLN -#define ____QWERTY_R3____ KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH - -/* NUMPAD ============================================================================== - * ,-----------------------------------------------------------------------------------. - * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | TRNS | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | TRNS | F9 | F10 | F11 | F12 | | NLCK | 7 | 8 | 9 | - | TRNS | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | ESC | F5 | F6 | F7 | F8 | SPC | SPC | 4 | 5 | 6 | + | ENTR | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | TRNS | F1 | F2 | F3 | F4 | ALT | | 1 | 2 | 3 | / | TRNS | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | TRNS | TRNS | TRNS | TRNS | TRNS | TRNS | 0 | , | . | * | TRNS | - * `-----------------------------------------------------------------------------------' - */ - -// LEFT -// - CORE -#define ____NUMPAD_L1____ KC_F9, KC_F10, KC_F11, KC_F12, KC_NO -#define ____NUMPAD_L2____ KC_F5, KC_F6, KC_F7, KC_F8, KC_SPC -#define ____NUMPAD_L3____ KC_F1, KC_F2, KC_F3, KC_F4, KC_LALT - -// - MODS -#define ____NUMPAD_L4____ ______TRANS______ -#define K00_NUM KC_TRNS -#define K10_NUM KC_TRNS -#define K20_NUM KC_TRNS -#define K30_NUM KC_TRNS -#define K40_NUM KC_TRNS - -// RIGHT -// - CORE -#define ____NUMPAD_R1____ KC_NUM, KC_7, KC_8, KC_9, KC_MINS -#define ____NUMPAD_R2____ KC_SPC, KC_4, KC_5, KC_6, KC_PLUS -#define ____NUMPAD_R3____ KC_NO, KC_1, KC_2, KC_3, KC_SLSH - -// - MODS -#define ____NUMPAD_R4____ KC_TRNS, KC_0, KC_COMM, KC_DOT, KC_ASTR -#define K0B_NUM KC_TRNS -#define K1B_NUM KC_TRNS -#define K2B_NUM KC_ENT -#define K3B_NUM KC_TRNS -#define K4B_NUM KC_TRNS - -/* SYMBOL ============================================================================== - * ,-----------------------------------------------------------------------------------. - * | TRNS | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | TRNS | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | TRNS | ! | # | { | } | | | ^ | $ | & | | | DEL | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | TRNS | < | > | ( | ) | | | - | + | = | \ | ` | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | TRNS | ~ | @ | [ | ] | | | _ | * | % | / | TRNS | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | TRNS | TRNS | TRNS | TRNS | TRNS | TRNS | TRNS | TRNS | TRNS | TRNS | TRNS | - * `-----------------------------------------------------------------------------------' - */ - -// LEFT -// - CORE -#define ____SYMBOL_L1____ KC_EXCLAIM, KC_HASH, KC_LCBR, KC_RCBR, KC_NO -#define ____SYMBOL_L2____ KC_LABK, KC_RABK, KC_LPRN, KC_RPRN, KC_NO -#define ____SYMBOL_L3____ KC_TILD, KC_AT, KC_LBRC, KC_RBRC, KC_NO - -// - MODS -#define ____SYMBOL_L4____ ______TRANS______ -#define K00_SYM KC_TRNS -#define K10_SYM KC_TRNS -#define K20_SYM KC_TRNS -#define K30_SYM KC_TRNS -#define K40_SYM KC_TRNS - -// RIGHT -// - CORE -#define ____SYMBOL_R1____ KC_NO, KC_CIRC, KC_DOLLAR, KC_AMPR, KC_PIPE -#define ____SYMBOL_R2____ KC_NO, KC_MINS, KC_PLUS, KC_EQL, KC_BSLS -#define ____SYMBOL_R3____ KC_NO, KC_UNDS, KC_ASTR, KC_PERC, KC_SLSH - -// - MODS -#define ____SYMBOL_R4____ ______TRANS______ -#define K0B_SYM KC_TRNS -#define K1B_SYM KC_DEL -#define K2B_SYM KC_GRV -#define K3B_SYM KC_TRNS -#define K4B_SYM KC_TRNS - -/* NAVIGATION ========================================================================== - * ,-----------------------------------------------------------------------------------. - * | TRNS | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | TRNS | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | TRNS | | | SPC | F5 | | INS | HOME | END | TAB | DEL | TRNS | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | TRNS | SHFT | CTRl | ALT | GUI | | LEFT | DOWN | UP | RGHT | | ENTR | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | TRNS | UNDO | CUT | COPY | PSTE | | | PGDO | PGUP | CAPS | | TRNS | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | TRNS | TRNS | TRNS | TRNS | TRNS | ESC | TRNS | TRNS | TRNS | TRNS | TRNS | - * `-----------------------------------------------------------------------------------' - */ - -// LEFT -// - CORE -#define __NAVIGATION_L1__ KC_NO, KC_NO, KC_SPC, KC_F5, KC_NO -#define __NAVIGATION_L2__ KC_LSFT, KC_LCTL, KC_LALT, KC_LGUI, KC_NO -#define __NAVIGATION_L3__ WINUNDO, WINCUT, WINCOPY, WINPASTE, KC_NO - -// - MODS -#define __NAVIGATION_L4__ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_ESC -#define K00_NAV KC_TRNS -#define K10_NAV KC_TRNS -#define K20_NAV KC_TRNS -#define K30_NAV KC_TRNS -#define K40_NAV KC_TRNS - -// RIGHT -// - CORE -#define __NAVIGATION_R1__ KC_INS, KC_HOME, KC_END, KC_TAB, KC_DEL -#define __NAVIGATION_R2__ KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT, KC_NO -#define __NAVIGATION_R3__ KC_NO, KC_PGDN, KC_PGUP, KC_CAPS, KC_NO - -// - MODS -#define __NAVIGATION_R4__ KC_ESC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS -#define K0B_NAV KC_TRNS -#define K1B_NAV KC_TRNS -#define K2B_NAV KC_ENT -#define K3B_NAV KC_TRNS -#define K4B_NAV KC_TRNS - -/* SETTINGS ============================================================================ - * ,-----------------------------------------------------------------------------------. - * | | | | | | | | | | BRID | BRIU | | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | | | | | | | | | | | | | - * |------+------+------+------+------+-------------+------+------+------+------+------| - * | | | | | | | MPRV | MPLY | MUTE | MNXT | | | - * |------+------+------+------+------+------|------+------+------+------+------+------| - * | ASTG | MUTO | AUOF | AUON | | | | VOLD | VOLU | | | ASTG | - * |------+------+------+------+------+------+------+------+------+------+------+------| - * | | | | | TRNS | | TRNS | | | | | - * `-----------------------------------------------------------------------------------' - */ -// LEFT -// - CORE -#define ___SETTINGS_L1___ KC_NO, KC_NO, KC_NO, KC_NO, KC_NO -#define ___SETTINGS_L2___ KC_NO, KC_NO, KC_NO, KC_NO, KC_NO -#define ___SETTINGS_L3___ MU_TOGG, AU_OFF, AU_ON, KC_NO, KC_NO - -// - MODS -#define ___SETTINGS_L4___ KC_NO, KC_NO, KC_NO, KC_TRNS, KC_NO -#define K00_SET KC_NO -#define K10_SET KC_NO -#define K20_SET KC_NO -#define K30_SET AS_TOGG -#define K40_SET KC_NO - -// RIGHT -// - CORE -#define ___SETTINGS_R1___ KC_NO, KC_NO, KC_NO, KC_BRID, KC_BRIU -#define ___SETTINGS_R2___ KC_MPRV, KC_MPLY, KC_MUTE, KC_MNXT, KC_NO -#define ___SETTINGS_R3___ KC_NO, KC_VOLD, KC_VOLU, KC_NO, KC_NO - -// - MODS -#define ___SETTINGS_R4___ KC_NO, KC_TRNS, KC_NO, KC_NO, KC_NO -#define K0B_SET KC_NO -#define K1B_SET KC_NO -#define K2B_SET KC_NO -#define K3B_SET AS_TOGG -#define K4B_SET KC_NO diff --git a/users/alfrdmalr/config.h b/users/alfrdmalr/config.h deleted file mode 100644 index 502d3158bc..0000000000 --- a/users/alfrdmalr/config.h +++ /dev/null @@ -1,7 +0,0 @@ -#pragma once - -#define MUSIC_MASK (keycode != KC_NO) -#define MIDI_BASIC - -#define LEADER_TIMEOUT 400 -#define LEADER_PER_KEY_TIMING diff --git a/users/alfrdmalr/readme.md b/users/alfrdmalr/readme.md deleted file mode 100644 index 9e5f962bbb..0000000000 --- a/users/alfrdmalr/readme.md +++ /dev/null @@ -1,46 +0,0 @@ -# alfrdmalr's userspace -## Overview -The alphanumeric characters and symbols are spread between three main 'typing' layers: REGULAR, NUMPAD, and SYMBOL. - -A fourth layer, NAVIGATION, contains useful modifiers, shortcuts, and navigation functions like the arrow keys and page up/down. This layer also provides access to the `ENTER` and `ESC` keys. - -Finally, a SETTINGS layer can be used to adjust certain keyboard-related options. - -A visual representation of each layer can be found in [alfrdmalr.h](./alfrdmalr.h) - -### Layers - -#### REGULAR -Right now this is just a QWERTY layer, but other layouts (DVORAK, COLEMAK, etc.) could easily be added. The REGULAR layer uses the default modifiers. - -The default modifiers are defined in the style `K00`, where the first digit is the row index and the second digit is the column index. These indices are based on the Preonic's 5x12 grid, and are **not** adjusted for a board of different size; for instance, the upper-leftmost key in the preonic layout is `K00`, whereas the upper-leftmost key on a Planck would be `K10`. - -This convention is designed to work nicely with layout wrappers. - -#### NUMPAD -The NUMPAD layer puts a numpad under the right hand, surrounding the home row position. Several basic arithmetic operators are also provided, as well as comma/decimal symbols, to emulate a traditional numpad. The numlock/capslock keys are accessible from this layer as well, though it should be noted that the actual keycodes being sent by the numpad are NOT the numpad versions of the numbers - this is to prevent the normal numlock behavior from blocking numbers from being sent. - -This layer also holds the first twelve function keys. - -#### SYMBOL -This layer holds all the symbols that are not accessible from the REGULAR layer. There is some redundancy (for instance, `/` exists in both the REGULAR and SYMBOL layer; its position, however, remains consistent) but with the exception of single and double quotes, all symbols are available from this layer. - -#### NAVIGATION -Over time, this layer has become a general utility layer, though its primary function of is still to provide arrow keys under hjkl. The surrounding keys contain similar functionality - for instance, the keys directly below `DOWN` and `UP` are `PAGEDOWN` and `PAGEUP`, respectively. `HOME` and `END` are inverted from this convention, simply because I kept hitting the wrong key when trying to jump to the beginning/end of lines when editing text. - -To the immediate right of the NAVIGATION layer key are the following modifiers: `SHIFT`, `CONTROL`, `ALT`, `GUI`. All modifiers are the "left" variants. The idea is to use the left hand to hold different modifiers as necessary while using the right hand to navigate and format. - -`ESCAPE` is located on the spacebar from this layer, and `DELETE` is placed next to `BACKSPACE`, for convenience when formatting text. There are also four Windows shortcuts for undo, cut, copy, and paste, located in the same position as the relevant keys on the base layer (undo, for example, is in the same place as the `Z` key). Again, this is for convenience when formatting text. - -#### SETTINGS -The SETTINGS layer can be accessed by pressing both SYMBOL layer keys at once. This is functionally the same as a trilayer, though because both keys are activating the same layer it doesn't actually use the trilayer feature. - -This layer contains things like feature toggles, media controls, and other infrequently-used options. - -### Leader Key Sequences -A complete list of leader sequences can be found below. The LEAD key that begins each sequence has been omitted. - - -| Sequence | Function | -| :------: | -------------------------------- | -| R-E-S-E-T | Reset the keyboard into DFU mode | diff --git a/users/alfrdmalr/rules.mk b/users/alfrdmalr/rules.mk deleted file mode 100644 index 1b674c04ec..0000000000 --- a/users/alfrdmalr/rules.mk +++ /dev/null @@ -1,8 +0,0 @@ -SRC += alfrdmalr.c - -ifdef AUDIO_ENABLE - SRC += muse.c -endif - -AUTO_SHIFT_ENABLE = yes -LEADER_ENABLE = yes -- cgit v1.2.3