mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-12-20 12:40:22 -05:00
Add RGB controls to Adjust layer
Re-introduce RGB controls from legacy keymap: - RGB_M_P (static mode) on grave position - RGB_MOD/RMOD (mode +/-) on Z - RGB_HUI/HUD (hue +/-) on X - RGB_VAI/VAD (brightness +/-) on comma - RGB_SAI/SAD (saturation +/-) on dot - RGB_TOG (toggle) on enter - KC_EQL (equals) on minus position 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
c55e63160f
commit
4047dacfbd
1 changed files with 6 additions and 6 deletions
|
|
@ -86,22 +86,22 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||
|
||||
/* Adjust (Lower + Raise = Uppercase French accents + brackets)
|
||||
* ,-----------------------------------------------------------------------------------.
|
||||
* | | F11 | F12 | F13 | F14 | F15 | F16 | F17 | F18 | F19 | F20 | |
|
||||
* |Static| F11 | F12 | F13 | F14 | F15 | F16 | F17 | F18 | F19 | F20 | = |
|
||||
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
||||
* | |  | Ê | É | | | { | } | Ï | Î | Ô | Œ | |
|
||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||
* | Boot | À | Ë | È | ( | [ | ] | Ù | Û | Ü | | |
|
||||
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
||||
* | | | | Ç |UC_MAC|UC_WIN| NKRO |UC_LNX| | | \ | |
|
||||
* | | Mod+ | Hue+ | Ç |UC_MAC|UC_WIN| NKRO |UC_LNX| Bri+ | Sat+ | \ |RGBtog|
|
||||
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
||||
* | | | | | | | | | | | | |
|
||||
* | | Mod- | Hue- | | | | | | Bri- | Sat- | | |
|
||||
* `-----------------------------------------------------------------------------------'
|
||||
*/
|
||||
[_ADJUST] = LAYOUT_ortho_5x12(
|
||||
_______, KC_F11, KC_F12, KC_F13, KC_F14, KC_F15, KC_F16, KC_F17, KC_F18, KC_F19, KC_F20, _______,
|
||||
RGB_M_P, KC_F11, KC_F12, KC_F13, KC_F14, KC_F15, KC_F16, KC_F17, KC_F18, KC_F19, KC_F20, KC_EQL,
|
||||
_______, FR_AM2, FR_EM3, FR_EM1, KC_PIPE, KC_LCBR, KC_RCBR, FR_IM2, FR_IM1, FR_OM1, FR_OM2, _______,
|
||||
QK_BOOT, FR_AM1, FR_EM4, FR_EM2, KC_LPRN, KC_LBRC, KC_RBRC, FR_UM2, FR_UM1, FR_UM3, _______, _______,
|
||||
_______, _______, _______, FR_CM1, UC_MAC, UC_WINC, NK_TOGG, UC_LINX, _______, _______, KC_BSLS, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
_______, RGB_MOD, RGB_HUI, FR_CM1, UC_MAC, UC_WINC, NK_TOGG, UC_LINX, RGB_VAI, RGB_SAI, KC_BSLS, RGB_TOG,
|
||||
_______, RGB_RMOD,RGB_HUD, _______, _______, _______, _______, _______, RGB_VAD, RGB_SAD, _______, _______
|
||||
)
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue