qmk_firmware/users/brandonschlack
Ryan 74223c34a9
Remove legacy keycodes, part 6 (#18740)
* `KC_RSHIFT` -> `KC_RSFT`

* `KC_RCTRL` -> `KC_RCTL`

* `KC_LSHIFT` -> `KC_LSFT`

* `KC_LCTRL` -> `KC_LCTL`
2022-10-16 14:14:40 +01:00
..
brandonschlack.c [Keymap] add brandonschlack userspace and keymaps (#10411) 2020-11-04 21:55:03 -08:00
brandonschlack.h add missing _MACRO to users/brandonschlack/brandonschlack.h 2021-01-30 13:11:33 -08:00
config.h [Keymap] add brandonschlack userspace and keymaps (#10411) 2020-11-04 21:55:03 -08:00
process_records.c Remove legacy keycodes, part 6 (#18740) 2022-10-16 14:14:40 +01:00
process_records.h Remove legacy keycodes, part 3 (#18669) 2022-10-11 14:21:47 +01:00
readme.md [Keymap] add brandonschlack userspace and keymaps (#10411) 2020-11-04 21:55:03 -08:00
rgb_bs.c Change DRIVER_LED_COUNT to {LED,RGB}_MATRIX_LED_COUNT (#18399) 2022-09-23 22:46:23 +10:00
rgb_bs.h [Keymap] add brandonschlack userspace and keymaps (#10411) 2020-11-04 21:55:03 -08:00
rgb_theme_user.inc [Keymap] add brandonschlack userspace and keymaps (#10411) 2020-11-04 21:55:03 -08:00
rgb_theme.h [Keymap] add brandonschlack userspace and keymaps (#10411) 2020-11-04 21:55:03 -08:00
rules.mk [Keymap] add brandonschlack userspace and keymaps (#10411) 2020-11-04 21:55:03 -08:00
tap_dances.c [Keymap] add brandonschlack userspace and keymaps (#10411) 2020-11-04 21:55:03 -08:00
tap_dances.h [Keymap] add brandonschlack userspace and keymaps (#10411) 2020-11-04 21:55:03 -08:00

Overview

My QMK home. I feel as though I stand on the shoulders of giants, for a lot of my code here is borrowed and adapted from so many contributors here, and that I hope my code here can help or inspire others.

Layers, Handlers, and Macros

Layers

I have some predefined layer names for keyboards:

  • _BASE: Default Layer, QWERTY layout.
  • _FN1: Function Layer for 60% and above, and additional macros and shortcuts on 50% and below.
  • _LOWER and _RAISE: Function layers for 40%

and macropads:

  • _REEDER: Shortcuts for Reeder.app, my RSS feed reader
  • _MEDIA: Media controls
  • _NAVI: Navigation macros, for changing tabs and scrolling
  • _KARABINER: Generic macro keys, meant to be customized per app with Karabiner

Protected Layers

I have some named "protected" layers, meant to be at the end of the layer list for changing keyboard settings and features.

  • KEYMAP_LAYERS: Add additional layers in keymap.
  • _AUDIO: Audio feature controls.
  • _LIGHT: RGB Light/Matrix feature controls.
  • _ADJUST: General keyboard settings and toggles. Can also contain RGB and Audio controls on larger boards that don't need and extra layer for those controls.

EEPROM User Config

I have a custom userspace config implemented to save settings on the board to persist across shutdowns. I currently store:

  • rgb_layer_change - a toggle for using RGB themes for layer indication
  • rgb_theme - a pointer to the currently set RGB Theme

Process Handlers

Keycode Aliases

I am a macOS user and so a lot of my aliases are

Macros

Tap Dances

Tap Dance Trigger Layer

RGB

RGB Theme