diff options
author | Joel Challis <git@zvecr.com> | 2023-11-26 18:36:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 05:36:45 +1100 |
commit | 1ed03f498fa204178c2696c510ac6a2cd8524e2d (patch) | |
tree | b97c1f983b7e4b57c007d0feedadd3ad3e39062b /users/sethBarberee | |
parent | 4908d4b1ca260efecf3613e6517aa3a6f2034876 (diff) |
Remove userspace keymaps (#22544)
Diffstat (limited to 'users/sethBarberee')
-rw-r--r-- | users/sethBarberee/config.h | 82 | ||||
-rw-r--r-- | users/sethBarberee/readme.md | 6 | ||||
-rw-r--r-- | users/sethBarberee/rgb_light.c | 52 | ||||
-rw-r--r-- | users/sethBarberee/rgb_light.h | 21 | ||||
-rw-r--r-- | users/sethBarberee/rules.mk | 10 | ||||
-rw-r--r-- | users/sethBarberee/sethBarberee.c | 100 | ||||
-rw-r--r-- | users/sethBarberee/sethBarberee.h | 55 | ||||
-rw-r--r-- | users/sethBarberee/tap_dance.c | 89 | ||||
-rw-r--r-- | users/sethBarberee/tap_dance.h | 43 | ||||
-rw-r--r-- | users/sethBarberee/wrappers.h | 71 |
10 files changed, 0 insertions, 529 deletions
diff --git a/users/sethBarberee/config.h b/users/sethBarberee/config.h deleted file mode 100644 index f323b27368..0000000000 --- a/users/sethBarberee/config.h +++ /dev/null @@ -1,82 +0,0 @@ -/* Copyright 2021 SethBarberee <seth.barberee@gmail.com> - * - * 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/>. - */ -#pragma once - -#ifdef RGBLIGHT_ENABLE -# define RGBLIGHT_SLEEP -# ifndef RGBLIGHT_HUE_STEP -# define RGBLIGHT_HUE_STEP 8 -# endif -# ifndef RGBLIGHT_SAT_STEPT -# define RGBLIGHT_SAT_STEP 8 -# endif -# ifndef RGBLIGHT_VAL_STEP -# define RGBLIGHT_VAL_STEP 8 -# endif - -// Trim animations I don't use/like -# ifndef RGBLIGHT_EFFECT_BREATHING -# define RGBLIGHT_EFFECT_BREATHING -# endif -# ifndef RGBLIGHT_EFFECT_STATIC_GRADIENT -# define RGBLIGHT_EFFECT_STATIC_GRADIENT -# endif -# ifndef RGBLIGHT_EFFECT_TWINKLE -# define RGBLIGHT_EFFECT_TWINKLE -# endif -# ifdef RGBLIGHT_DEFAULT_MODE -# undef RGBLIGHT_DEFAULT_MODE -# define RGBLIGHT_DEFAULT_MODE RGBLIGHT_MODE_TWINKLE -# endif - -# ifndef CAPS_LOCK_MODE -# define CAPS_LOCK_MODE RGBLIGHT_MODE_STATIC_LIGHT -# endif -#endif // RGBLIGHT_ENABLE - -#ifndef AUDIO_ENABLE -# define NO_MUSIC_MODE -#endif // AUDIO_ENABLE - -#define FORCE_NKRO // Force NKRO on by default - -// Totally taken from @drashna's userspace -#ifdef TAPPING_TERM -# undef TAPPING_TERM -#endif // TAPPING_TERM -// -// Keeping these commented for examples when I want to tweak per keyboard -// but setting a default across my boards for now -// -//#if defined(KEYBOARD_ergodox_ez) -//# define TAPPING_TERM 185 -#if defined(KEYBOARD_crkbd) -# define TAPPING_TERM 185 -#else -# define TAPPING_TERM 200 -#endif - -#if !defined(LAYER_STATE_16BIT) && !defined(LAYER_STATE_8BIT) && !defined(LAYER_STATE_32BIT) -# define LAYER_STATE_8BIT -#endif - -/* Disable unused and unneeded features to reduce on firmware size */ -#ifdef LOCKING_SUPPORT_ENABLE -# undef LOCKING_SUPPORT_ENABLE -#endif -#ifdef LOCKING_RESYNC_ENABLE -# undef LOCKING_RESYNC_ENABLE -#endif diff --git a/users/sethBarberee/readme.md b/users/sethBarberee/readme.md deleted file mode 100644 index 75d892cb85..0000000000 --- a/users/sethBarberee/readme.md +++ /dev/null @@ -1,6 +0,0 @@ -# seth's userspace - -## Features -* Escape/Caps Lock tap dance (1 for Escape / 2 for Caps Lock) - * RGB Mode indication for Caps Lock - * Solid Mode for Caps On diff --git a/users/sethBarberee/rgb_light.c b/users/sethBarberee/rgb_light.c deleted file mode 100644 index d1f43080c3..0000000000 --- a/users/sethBarberee/rgb_light.c +++ /dev/null @@ -1,52 +0,0 @@ - /* Copyright 2021 SethBarberee <seth.barberee@gmail.com> - * - * 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 "rgb_light.h" - -#if defined(RGBLIGHT_ENABLE) -layer_state_t layer_state_set_rgb_light(layer_state_t state){ - switch(get_highest_layer(state)) { - case _QWERTY: - rgblight_set_hsv_and_mode(HSV_RED, RGBLIGHT_MODE_TWINKLE + 3); - break; - case _LOWER: - rgblight_set_hsv_and_mode(HSV_GREEN, RGBLIGHT_MODE_BREATHING + 3); - break; - case _RAISE: - rgblight_set_hsv_and_mode(HSV_BLUE, RGBLIGHT_MODE_BREATHING + 3); - break; - case _ADJUST: - rgblight_set_hsv_and_mode(HSV_GOLDENROD, RGBLIGHT_MODE_BREATHING + 3); - break; - default: - rgblight_set_hsv_and_mode(HSV_PINK, RGBLIGHT_MODE_TWINKLE + 3); - break; - - } - return state; -} - -void rgblight_set_hsv_and_mode(uint8_t hue, uint8_t sat, uint8_t val, uint8_t mode) { - rgblight_sethsv_noeeprom(hue, sat, val); - // wait_us(175); // Add a slight delay between color and mode to ensure it's processed correctly - rgblight_mode_noeeprom(mode); -} - -void keyboard_post_init_rgb_light(void) -{ - layer_state_set_rgb_light(layer_state); -} -#endif - diff --git a/users/sethBarberee/rgb_light.h b/users/sethBarberee/rgb_light.h deleted file mode 100644 index 2e0477ce59..0000000000 --- a/users/sethBarberee/rgb_light.h +++ /dev/null @@ -1,21 +0,0 @@ - /* Copyright 2021 SethBarberee <seth.barberee@gmail.com> - * - * 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/>. - */ -#pragma once -#include "sethBarberee.h" - -layer_state_t layer_state_set_rgb_light(layer_state_t state); -void keyboard_post_init_rgb_light(void); -void rgblight_set_hsv_and_mode(uint8_t hue, uint8_t sat, uint8_t val, uint8_t mode); diff --git a/users/sethBarberee/rules.mk b/users/sethBarberee/rules.mk deleted file mode 100644 index f1bc3325fe..0000000000 --- a/users/sethBarberee/rules.mk +++ /dev/null @@ -1,10 +0,0 @@ -SRC += sethBarberee.c - -# Add in custom tap dances when tap dance is enabled -ifeq ($(strip $(TAP_DANCE_ENABLE)), yes) - SRC += tap_dance.c -endif - -ifeq ($(strip $(RGBLIGHT_ENABLE)), yes) - SRC += rgb_light.c -endif diff --git a/users/sethBarberee/sethBarberee.c b/users/sethBarberee/sethBarberee.c deleted file mode 100644 index e6e9dbf4a2..0000000000 --- a/users/sethBarberee/sethBarberee.c +++ /dev/null @@ -1,100 +0,0 @@ - /* Copyright 2021 SethBarberee <seth.barberee@gmail.com> - * - * 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 "sethBarberee.h" -#include "version.h" - -__attribute__ ((weak)) void keyboard_pre_init_keymap(void) {} - -void keyboard_pre_init_user(void){ -#if defined(BOOTLOADER_CATERINA) - // Make sure the red LEDs don't light - setPinOutput(D5); - writePinHigh(D5); - - setPinOutput(B0); - writePinHigh(B0); -#endif - keyboard_pre_init_keymap(); -} - -__attribute__ ((weak)) layer_state_t layer_state_set_keymap (layer_state_t state) { return state; } - -layer_state_t layer_state_set_user(layer_state_t state){ - - if (!is_keyboard_master()) { - return state; - } - - state = update_tri_layer_state(state, _RAISE, _LOWER, _ADJUST); -#if defined(RGBLIGHT_ENABLE) - state = layer_state_set_rgb_light(state); -#endif - return layer_state_set_keymap(state); -} - -__attribute__ ((weak)) void keyboard_post_init_keymap(void) {} - -void keyboard_post_init_user(void) -{ -#if defined(RGBLIGHT_ENABLE) - keyboard_post_init_rgb_light(); -#endif - keyboard_post_init_keymap(); -} - -__attribute__((weak)) void suspend_power_down_keymap(void) {} - -void suspend_power_down_user(void) { -#ifdef OLED_ENABLE - oled_off(); -#endif - suspend_power_down_keymap(); -} - -__attribute__((weak)) void suspend_wakeup_init_keymap(void) {} - -void suspend_wakeup_init_user(void) { suspend_wakeup_init_keymap(); } - -__attribute__ ((weak)) bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { return true;} - -bool process_record_user(uint16_t keycode, keyrecord_t *record) { - if (process_record_keymap(keycode, record)) - { - switch (keycode) { - case KC_VRSN: // Prints firmware version - if (record->event.pressed) { - SEND_STRING(QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION ", Built on: " QMK_BUILDDATE); - } - break; - case KC_QWER: // Set default layer to QWERTY - if (record->event.pressed) { - set_single_persistent_default_layer(_QWERTY); - } - break; - case KC_COLE: // Set default layer to COLEMAK - if (record->event.pressed) { - set_single_persistent_default_layer(_COLEMAK); - } - break; - case KC_DVOR: // Set default layer to DVORAK - if (record->event.pressed) { - set_single_persistent_default_layer(_DVORAK); - } - break; - } - } - return true; -} diff --git a/users/sethBarberee/sethBarberee.h b/users/sethBarberee/sethBarberee.h deleted file mode 100644 index ba19a524a4..0000000000 --- a/users/sethBarberee/sethBarberee.h +++ /dev/null @@ -1,55 +0,0 @@ - /* Copyright 2021 SethBarberee <seth.barberee@gmail.com> - * - * 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/>. - */ -#pragma once - -#include QMK_KEYBOARD_H - -#include "wrappers.h" - -enum layers { - _QWERTY, - _COLEMAK, - _DVORAK, - _LOWER, - _RAISE, - _ADJUST -}; - -enum userspace_keycodes { - KC_VRSN = SAFE_RANGE, - KC_QWER, - KC_COLE, - KC_DVOR, - NEW_SAFE_RANGE -}; - -#define KC_LOWR MO(_LOWER) -#define KC_RASE MO(_RAISE) - -#ifdef TAP_DANCE_ENABLE -# include "tap_dance.h" -#endif - -#ifdef RGBLIGHT_ENABLE -# include "rgb_light.h" -#endif - -void keyboard_pre_init_keymap(void); -void keyboard_post_init_keymap(void); -void suspend_power_down_keymap(void); -void suspend_wakeup_init_keymap(void); -layer_state_t layer_state_set_keymap (layer_state_t state); -bool process_record_keymap(uint16_t keycode, keyrecord_t *record); diff --git a/users/sethBarberee/tap_dance.c b/users/sethBarberee/tap_dance.c deleted file mode 100644 index 924b3141fe..0000000000 --- a/users/sethBarberee/tap_dance.c +++ /dev/null @@ -1,89 +0,0 @@ - /* Copyright 2021 SethBarberee <seth.barberee@gmail.com> - * - * 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 "tap_dance.h" - -// Shamelessly stolen from QMK Docs -int cur_dance (tap_dance_state_t *state) { - if (state->count == 1) { - if (state->interrupted || !state->pressed) { - return SINGLE_TAP; - } else { - return SINGLE_HOLD; - } - } - else if (state->count == 2) { - if (state->interrupted) return DOUBLE_SINGLE_TAP; - else if (state->pressed) return DOUBLE_HOLD; - else return DOUBLE_TAP; - } - if (state->count == 3) { - if (state->interrupted || !state->pressed) return TRIPLE_TAP; - else return TRIPLE_HOLD; - } - else return 8; -} - - -// Initialize it now -tap caps_status = { - .toggled = false, - .state = 0 -}; - - -void dance_ecap_finished (tap_dance_state_t *state, void *user_data){ - caps_status.state = cur_dance(state); - switch(caps_status.state){ - case SINGLE_TAP: - tap_code(KC_ESC); - break; - case SINGLE_HOLD: - register_code(KC_LCTL); - break; - case DOUBLE_TAP: - tap_code(KC_CAPS); - if(!caps_status.toggled){ - // Toggling caps so indicate - caps_status.toggled = true; -#ifdef RGBLIGHT_ENABLE - // Save mode we can from - caps_status.normal_mode = rgblight_get_mode(); - rgblight_mode_noeeprom(CAPS_LOCK_MODE); -#endif - } else { - // Turning off so return to normal mode - caps_status.toggled = false; -#ifdef RGBLIGHT_ENABLE - rgblight_mode_noeeprom(caps_status.normal_mode); -#endif - } - break; - } -} - -void dance_ecap_reset (tap_dance_state_t *state, void *user_data){ - if(caps_status.state == SINGLE_HOLD){ - unregister_code(KC_LCTL); - } - caps_status.state = 0; -} - -//Tap Dance Definitions -tap_dance_action_t tap_dance_actions[] = { - //Tap once for Esc, twice for Caps Lock - [TD_ECAP] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, dance_ecap_finished, dance_ecap_reset), -// Other declarations would go here, separated by commas, if you have them -}; diff --git a/users/sethBarberee/tap_dance.h b/users/sethBarberee/tap_dance.h deleted file mode 100644 index 709185b39a..0000000000 --- a/users/sethBarberee/tap_dance.h +++ /dev/null @@ -1,43 +0,0 @@ - /* Copyright 2021 SethBarberee <seth.barberee@gmail.com> - * - * 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/>. - */ -#pragma once -#include "sethBarberee.h" - -//Define a type for as many tap dance states as you need -enum { - SINGLE_TAP = 1, - SINGLE_HOLD = 2, - DOUBLE_TAP = 3, - DOUBLE_HOLD = 4, - DOUBLE_SINGLE_TAP = 5, //send two single taps - TRIPLE_TAP = 6, - TRIPLE_HOLD = 7 -}; - - -enum { - TD_ECAP = 0, -}; - -#define KC_ECAP TD(TD_ECAP) - -typedef struct { - bool toggled; // store whether we have toggled caps lock -#ifdef RGBLIGHT_ENABLE - int normal_mode; -#endif // RGBLIGHT_ENABLE - int state; -} tap; diff --git a/users/sethBarberee/wrappers.h b/users/sethBarberee/wrappers.h deleted file mode 100644 index 4767afa82f..0000000000 --- a/users/sethBarberee/wrappers.h +++ /dev/null @@ -1,71 +0,0 @@ - /* Copyright 2021 SethBarberee <seth.barberee@gmail.com> - * - * 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/>. - */ -#pragma once - -#include "sethBarberee.h" - -/* - Since our quirky block definitions are basically a list of comma separated - arguments, we need a wrapper in order for these definitions to be - expanded before being used as arguments to the LAYOUT_xxx macro. -*/ - -/* - Blocks for each of the four major keyboard layouts - Organized so we can quickly adapt and modify all of them - at once, rather than for each keyboard, one at a time. - And this allows for much cleaner blocks in the keymaps. - For instance Tap/Hold for Control on all of the layouts - - NOTE: These are all the same length. If you do a search/replace - then you need to add/remove underscores to keep the - lengths consistent. -*/ - -// clang-format off -#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 - -#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, KC_QUOT -#define _________________QWERTY_R3_________________ KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH - -#define _________________COLEMAK_L1________________ KC_Q, KC_W, KC_F, KC_P, KC_G -#define _________________COLEMAK_L2________________ KC_A, KC_R, KC_S, KC_T, KC_D -#define _________________COLEMAK_L3________________ KC_Z, KC_X, KC_C, KC_V, KC_B - -#define _________________COLEMAK_R1________________ KC_J, KC_L, KC_U, KC_Y, KC_SCLN -#define _________________COLEMAK_R2________________ KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT -#define _________________COLEMAK_R3________________ KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH - -#define _________________DVORAK_L1_________________ KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y -#define _________________DVORAK_L2_________________ KC_A, KC_O, KC_E, KC_U, KC_I -#define _________________DVORAK_L3_________________ KC_SCLN, KC_Q, KC_J, KC_K, KC_X - -#define _________________DVORAK_R1_________________ KC_F, KC_G, KC_C, KC_R, KC_L -#define _________________DVORAK_R2_________________ KC_D, KC_H, KC_T, KC_N, KC_S, KC_SLSH -#define _________________DVORAK_R3_________________ KC_B, KC_M, KC_W, KC_V, KC_Z - -#define ________________NUMBER_LEFT________________ KC_1, KC_2, KC_3, KC_4, KC_5 -#define ________________NUMBER_RIGHT_______________ KC_6, KC_7, KC_8, KC_9, KC_0 -#define _________________FUNC_LEFT_________________ KC_F1, KC_F2, KC_F3, KC_F4, KC_F5 -#define _________________FUNC_RIGHT________________ KC_F6, KC_F7, KC_F8, KC_F9, KC_F10 - -#define ___________________BLANK___________________ _______, _______, _______, _______, _______ - -// clang-format on - |