Compare commits

..

4 commits

Author SHA1 Message Date
afiqzudinhadi
43d82e14ff Change pos 0 from hold-tap to tap-dance: tap=grave, double-tap=ESC 2026-07-09 06:47:57 +00:00
afiqzudinhadi
437275d284 Update README + keymap-drawer docs for NAVI/HUB layer rework 2026-07-09 01:03:05 +00:00
afiqzudinhadi
9de7108d31 Rework layers: add NAVI + HUB, move ESC/TAB/BSPC/RET to dedicated keys 2026-07-09 00:47:02 +00:00
9500a74dac OLED: switch to mctechnology17, add Luna + spaceman, remove unused modules
- Switch zmk-nice-oled from KeebMaker fork to mctechnology17 original
- Enable WPM Luna dog widget on central (left) half
- Disable bongo cat to avoid luna/bongo linker collision (shared globals)
- Right peripheral: spaceman animation, disable default cat
- Remove unused west.yml deps: zmk-dongle-display, zmk-dongle-display-view,
  zmk-oled-adapter, KeebMaker remote
- Each half shows its own battery % via default battery widget
2026-07-08 15:41:23 +08:00
9 changed files with 431 additions and 684 deletions

View file

@ -77,7 +77,7 @@ git clone git@github.com:afiqzudinhadi/zmk-config.git
### Edit Config Files ### Edit Config Files
For full customization (combos, steno layer, behaviors): For full customization (layers, behaviors):
``` ```
config/ config/
@ -211,7 +211,7 @@ RGB settings are in `config/corne.conf`:
| Setting | Value | Description | | Setting | Value | Description |
|---------|-------|-------------| |---------|-------|-------------|
| `CONFIG_ZMK_RGB_UNDERGLOW` | `y` | Enable RGB | | `CONFIG_ZMK_RGB_UNDERGLOW` | `y` | Enable RGB |
| `CONFIG_ZMK_RGB_UNDERGLOW_ON_START` | `y` | On at boot | | `CONFIG_ZMK_RGB_UNDERGLOW_ON_START` | `n` | Off at boot (toggle on via HUB layer) |
| `CONFIG_WS2812_STRIP` | `y` | WS2812 LED driver | | `CONFIG_WS2812_STRIP` | `y` | WS2812 LED driver |
| `CONFIG_ZMK_RGB_UNDERGLOW_EFF_START` | `4` | Default effect (see effects table) | | `CONFIG_ZMK_RGB_UNDERGLOW_EFF_START` | `4` | Default effect (see effects table) |
| `CONFIG_ZMK_RGB_UNDERGLOW_BRT_STEP` | `1` | Brightness step (%) | | `CONFIG_ZMK_RGB_UNDERGLOW_BRT_STEP` | `1` | Brightness step (%) |
@ -277,9 +277,12 @@ Docs: [zmk.dev/docs/keymaps/behaviors/underglow](https://zmk.dev/docs/keymaps/be
### Runtime Controls (HUB Layer) ### Runtime Controls (HUB Layer)
Access: hold NAVI key (pos 12) → press HUB (pos 0), or from FPS layer (pos 11).
| Key | Action | | Key | Action |
|-----|--------| |-----|--------|
| `[RGB]` | Tap-dance: 1×=toggle, 2×=effect fwd, 3×=effect rev | | `TOG` | RGB on/off toggle |
| `EFF` / `EFR` | Next/previous effect |
| `[CLR]` | Tap-dance color presets: purple → white → red → blue → green | | `[CLR]` | Tap-dance color presets: purple → white → red → blue → green |
| `HUE+` / `HUE-` | Adjust hue | | `HUE+` / `HUE-` | Adjust hue |
| `SAT+` / `SAT-` | Adjust saturation | | `SAT+` / `SAT-` | Adjust saturation |

View file

@ -4,10 +4,11 @@ include:
### CORNE START ### ### CORNE START ###
- board: nice_nano_v2 - board: nice_nano_v2
shield: corne_left nice_oled shield: corne_left nice_oled
cmake-args: -DCONFIG_NICE_OLED_WIDGET_WPM_BONGO_CAT=n
artifact-name: nice_corne_left_oled_rgb artifact-name: nice_corne_left_oled_rgb
- board: nice_nano_v2 - board: nice_nano_v2
shield: corne_right nice_oled shield: corne_right nice_oled
cmake-args: -DCONFIG_NICE_OLED_WIDGET_ANIMATION_PERIPHERAL_CAT=n -DCONFIG_NICE_OLED_WIDGET_ANIMATION_PERIPHERAL_KM=y cmake-args: -DCONFIG_NICE_OLED_WIDGET_WPM_BONGO_CAT=n -DCONFIG_NICE_OLED_WIDGET_ANIMATION_PERIPHERAL_CAT=n -DCONFIG_NICE_OLED_WIDGET_ANIMATION_PERIPHERAL_SPACEMAN=y
artifact-name: nice_corne_right_oled_rgb artifact-name: nice_corne_right_oled_rgb
### CORNE END ### ### CORNE END ###

View file

@ -143,6 +143,17 @@ parse_config:
'&out OUT_USB': Out USB '&out OUT_USB': Out USB
'&out OUT_BLE': Out BLE '&out OUT_BLE': Out BLE
'&out OUT_TOG': Out Tog
'&td_esc_grave': {t: '`', s: Esc, type: tap_dance}
'&kp C_MUTE': Mute
'&kp C_PP':
'&kp C_PREV':
'&kp C_NEXT':
'&kp C_BRI_UP': Scrn+
'&kp C_BRI_DN': Scrn-
'&kp C_VOL_UP': Vol+
'&kp C_VOL_DN': Vol-
'&bt BT_SEL 0': BT 1 '&bt BT_SEL 0': BT 1
'&bt BT_SEL 1': BT 2 '&bt BT_SEL 1': BT 2
@ -317,10 +328,6 @@ parse_config:
combo_rpar: {draw_separate: true} combo_rpar: {draw_separate: true}
combo_lbkt: {draw_separate: true} combo_lbkt: {draw_separate: true}
combo_rbkt: {draw_separate: true} combo_rbkt: {draw_separate: true}
combo_tab: {draw_separate: true}
combo_del: {draw_separate: true}
combo_esc: {draw_separate: true}
combo_ret: {draw_separate: true}
combo_lock: {draw_separate: true} combo_lock: {draw_separate: true}
combo_bslh: {draw_separate: true} combo_bslh: {draw_separate: true}
combo_slsh: {draw_separate: true} combo_slsh: {draw_separate: true}

View file

@ -72,7 +72,7 @@ CONFIG_ZMK_EXT_POWER=y
### RGB UNDERGLOW ### RGB UNDERGLOW
CONFIG_ZMK_RGB_UNDERGLOW=y CONFIG_ZMK_RGB_UNDERGLOW=y
CONFIG_ZMK_RGB_UNDERGLOW_ON_START=y CONFIG_ZMK_RGB_UNDERGLOW_ON_START=n
CONFIG_WS2812_STRIP=y CONFIG_WS2812_STRIP=y
# 0=Solid 1=Breathe 2=Spectrum 3=Swirl # 0=Solid 1=Breathe 2=Spectrum 3=Swirl
CONFIG_ZMK_RGB_UNDERGLOW_EFF_START=4 CONFIG_ZMK_RGB_UNDERGLOW_EFF_START=4
@ -98,13 +98,8 @@ CONFIG_ZMK_DISPLAY_STATUS_SCREEN_CUSTOM=y
# CONFIG_ZMK_DISPLAY_STATUS_SCREEN_BUILT_IN=y # CONFIG_ZMK_DISPLAY_STATUS_SCREEN_BUILT_IN=y
### WIDGET SETTINGS ### WIDGET SETTINGS
# No Widget configurations added since nice!view has its own custom widgets CONFIG_NICE_OLED_WIDGET_WPM=y
# activar solo estos dos widgets CONFIG_NICE_OLED_WIDGET_WPM_LUNA=y
# CONFIG_ZMK_WIDGET_WPM_STATUS=n
# CONFIG_ZMK_WIDGET_BATTERY_STATUS_SHOW_PERCENTAGE=y
# CONFIG_ZMK_WIDGET_LAYER_STATUS=y
# CONFIG_ZMK_WIDGET_BATTERY_STATUS=y
# CONFIG_ZMK_WIDGET_OUTPUT_STATUS=y
### HID para nice!view ePaperDisplay ### HID para nice!view ePaperDisplay
# Enable eager debouncing # Enable eager debouncing
@ -117,11 +112,6 @@ CONFIG_ZMK_KSCAN_DEBOUNCE_RELEASE_MS=5
# ref: https://zmk.dev/docs/config/system#hid # ref: https://zmk.dev/docs/config/system#hid
CONFIG_ZMK_HID_CONSUMER_REPORT_USAGES_BASIC=y CONFIG_ZMK_HID_CONSUMER_REPORT_USAGES_BASIC=y
### STENO ENGINE
CONFIG_STENO_ENGINE=y
CONFIG_STENO_DICT_PLOVER=y
CONFIG_STENO_SPLIT_DICT=y
### DEBUG OPTIONS ### DEBUG OPTIONS
# CONFIG_ZMK_USB_LOGGING=y # CONFIG_ZMK_USB_LOGGING=y
# CONFIG_LOG_PROCESS_THREAD_STARTUP_DELAY_MS=8000 # CONFIG_LOG_PROCESS_THREAD_STARTUP_DELAY_MS=8000

View file

@ -14,8 +14,6 @@
#include <dt-bindings/zmk/rgb.h> #include <dt-bindings/zmk/rgb.h>
#include <dt-bindings/zmk/reset.h> #include <dt-bindings/zmk/reset.h>
#include <dt-bindings/zmk/rgb_colors.h> #include <dt-bindings/zmk/rgb_colors.h>
#include <dt-bindings/zmk/steno_keys.h>
#include <behaviors/steno_engine.dtsi>
&led_strip { &led_strip {
chain-length = <27>; chain-length = <27>;
@ -29,6 +27,12 @@
tapping-term-ms = <200>; tapping-term-ms = <200>;
bindings = <&kp>, <&kp>; bindings = <&kp>, <&kp>;
}; };
td_esc_grave: td_esc_grave {
compatible = "zmk,behavior-tap-dance";
#binding-cells = <0>;
tapping-term-ms = <200>;
bindings = <&kp GRAVE>, <&kp ESC>;
};
td_rgb: td_rgb { td_rgb: td_rgb {
compatible = "zmk,behavior-tap-dance"; compatible = "zmk,behavior-tap-dance";
#binding-cells = <0>; #binding-cells = <0>;
@ -60,14 +64,6 @@
combo_8 { key-positions = <8 20>; bindings = <&kp N8>; layers = <0 1>; }; combo_8 { key-positions = <8 20>; bindings = <&kp N8>; layers = <0 1>; };
combo_9 { key-positions = <9 21>; bindings = <&kp N9>; layers = <0 1>; }; combo_9 { key-positions = <9 21>; bindings = <&kp N9>; layers = <0 1>; };
combo_0 { key-positions = <10 22>; bindings = <&kp N0>; layers = <0 1>; }; combo_0 { key-positions = <10 22>; bindings = <&kp N0>; layers = <0 1>; };
// I+O (QWRT) / U+B (CARP) = BSPC
combo_bspc { key-positions = <8 9>; bindings = <&kp BSPC>; layers = <0 1>; };
// K+L (QWRT) / E+O (CARP) = ENTER
combo_enter { key-positions = <20 21>; bindings = <&kp RET>; layers = <0 1>; };
// W+E (QWRT) / G+M (CARP) = ESC
combo_esc { key-positions = <2 3>; bindings = <&kp ESC>; layers = <0 1>; };
// S+D (QWRT) / S+T (CARP) = TAB
combo_tab { key-positions = <14 15>; bindings = <&kp TAB>; layers = <0 1>; };
}; };
/* /*
@ -159,17 +155,31 @@
>; >;
}; };
hub_rgb { navi_rgb {
layer-id = <4>; layer-id = <4>;
bindings = < bindings = <
&ug RED &ug PURPLE &ug PURPLE &ug PURPLE &ug PURPLE &ug PURPLE &ug PURPLE &ug YELLOW &ug YELLOW &ug YELLOW &ug YELLOW &ug YELLOW
&ug BLUE &ug YELLOW &ug YELLOW &ug YELLOW &ug BLUE &ug BLUE &ug BLUE &ug BLUE &ug BLUE &ug BLUE &ug BLUE &ug BLUE
&ug ORANGE &ug ORANGE &ug ORANGE &ug ORANGE &ug TEAL &ug TEAL &ug ___ &ug YELLOW &ug YELLOW &ug YELLOW &ug YELLOW &ug YELLOW
&ug BLUE &ug YELLOW &ug YELLOW &ug YELLOW &ug BLUE &ug BLUE &ug BLUE &ug BLUE &ug BLUE &ug BLUE &ug BLUE &ug BLUE
&ug WHITE &ug ORANGE &ug ORANGE &ug ORANGE &ug TEAL &ug TEAL &ug WHITE &ug ___ &ug ___ &ug ___ &ug ___ &ug ___
&ug GREEN &ug GREEN &ug GREEN &ug GREEN &ug GOLD &ug WHITE &ug ___ &ug ___ &ug ___ &ug ___ &ug ___ &ug WHITE
&ug PURPLE &ug WHITE &ug WHITE &ug WHITE &ug WHITE &ug WHITE
&ug WHITE &ug WHITE &ug PURPLE &ug WHITE &ug WHITE &ug WHITE
>;
};
hub_rgb {
layer-id = <5>;
bindings = <
&ug GREEN &ug GREEN &ug GREEN &ug GREEN &ug ___ &ug ORANGE
&ug PURPLE &ug PURPLE &ug PURPLE &ug PURPLE &ug PURPLE &ug RED
&ug ___ &ug ___ &ug ___ &ug ___ &ug TEAL &ug TEAL
&ug PURPLE &ug PURPLE &ug PURPLE &ug ORANGE &ug ___ &ug WHITE
&ug ___ &ug ___ &ug ___ &ug ___ &ug TEAL &ug TEAL
&ug PURPLE &ug PURPLE &ug PURPLE &ug ___ &ug ___ &ug ___
&ug ORANGE &ug ORANGE &ug ORANGE
&ug BLUE &ug BLUE &ug BLUE
>; >;
fade-delay = <15>; fade-delay = <15>;
}; };
@ -181,54 +191,60 @@
carpalx_layer { carpalx_layer {
display-name = "CARP"; display-name = "CARP";
bindings = < bindings = <
&kp GRAVE &kp Q &kp G &kp M &kp L &kp W &kp Y &kp F &kp U &kp B &kp SEMI &to 4 &td_esc_grave &kp Q &kp G &kp M &kp L &kp W &kp Y &kp F &kp U &kp B &kp SEMI &kp TAB
&mo 4 &kp D &kp S &kp T &kp N &kp R &kp I &kp A &kp E &kp O &kp H &kp SQT &mo 4 &kp D &kp S &kp T &kp N &kp R &kp I &kp A &kp E &kp O &kp H &kp SQT
&kp LSHFT &kp Z &kp X &kp C &kp V &kp J &kp K &kp P &kp COMMA &kp DOT &kp FSLH &kp RSHFT &kp LSHFT &kp Z &kp X &kp C &kp V &kp J &kp K &kp P &kp COMMA &kp DOT &kp FSLH &kp RSHFT
&td_rgb &kp LCTRL &kp LGUI &kp SPACE &kp RALT &ht_mute_pp C_PLAY_PAUSE C_MUTE &kp LCTRL &kp RET &kp LGUI &kp SPACE &kp BSPC &kp RALT
>; >;
}; };
qwerty_layer { qwerty_layer {
display-name = "QWRT"; display-name = "QWRT";
bindings = < bindings = <
&kp GRAVE &kp Q &kp W &kp E &kp R &kp T &kp Y &kp U &kp I &kp O &kp P &to 4 &td_esc_grave &kp Q &kp W &kp E &kp R &kp T &kp Y &kp U &kp I &kp O &kp P &kp TAB
&mo 4 &kp A &kp S &kp D &kp F &kp G &kp H &kp J &kp K &kp L &kp SEMI &kp SQT &mo 4 &kp A &kp S &kp D &kp F &kp G &kp H &kp J &kp K &kp L &kp SEMI &kp SQT
&kp LSHFT &kp Z &kp X &kp C &kp V &kp B &kp N &kp M &kp COMMA &kp DOT &kp FSLH &kp RSHFT &kp LSHFT &kp Z &kp X &kp C &kp V &kp B &kp N &kp M &kp COMMA &kp DOT &kp FSLH &kp RSHFT
&td_rgb &kp LCTRL &kp LGUI &kp SPACE &kp RALT &ht_mute_pp C_PLAY_PAUSE C_MUTE &kp LCTRL &kp RET &kp LGUI &kp SPACE &kp BSPC &kp RALT
>; >;
}; };
steno_layer { steno_layer {
display-name = "STEN"; display-name = "STEN";
// _ # # # # # | # # # # # ->HUB
// [HUB] S T P H * | * F P L T D
// _ S K W R * | * R B G S Z
// [RGB] A O | E U MUTE/PP
bindings = < bindings = <
&none &steno STENO_NUM &steno STENO_NUM &steno STENO_NUM &steno STENO_NUM &steno STENO_NUM &steno STENO_NUM &steno STENO_NUM &steno STENO_NUM &steno STENO_NUM &steno STENO_NUM &to 4 &none &none &none &none &none &none &none &none &none &none &none &none
&mo 4 &steno STENO_SL &steno STENO_TL &steno STENO_PL &steno STENO_HL &steno STENO_STAR &steno STENO_STAR &steno STENO_FR &steno STENO_PR &steno STENO_LR &steno STENO_TR &steno STENO_DR &mo 4 &none &none &none &none &none &none &none &none &none &none &none
&none &steno STENO_SL &steno STENO_KL &steno STENO_WL &steno STENO_RL &steno STENO_STAR &steno STENO_STAR &steno STENO_RR &steno STENO_BR &steno STENO_GR &steno STENO_SR &steno STENO_ZR &none &none &none &none &none &none &none &none &none &none &none &none
&td_rgb &steno STENO_A &steno STENO_O &steno STENO_E &steno STENO_U &ht_mute_pp C_PLAY_PAUSE C_MUTE &none &none &none &none &none &none
>; >;
}; };
fps_layer { fps_layer {
display-name = "FPS"; display-name = "FPS";
bindings = < bindings = <
&mt ESC N1 &kp N2 &kp Q &kp W &mt N3 E &mt N4 R &kp N5 &kp N6 &kp N7 &kp N8 &kp N9 &to 4 &mt ESC N1 &kp N2 &kp Q &kp W &mt N3 E &mt N4 R &kp N5 &kp N6 &kp N7 &kp N8 &kp N9 &to 5
&kp TAB &kp LSHFT &kp A &kp S &kp D &kp F &none &none &none &none &none &none &kp TAB &kp LSHFT &kp A &kp S &kp D &kp F &none &none &none &none &none &none
&mt LALT M &kp Z &kp X &kp C &kp V &kp G &none &none &none &none &none &none &mt LALT M &kp Z &kp X &kp C &kp V &kp G &none &none &none &none &none &none
&kp T &kp LCTRL &kp SPACE &none &none &none &kp T &kp LCTRL &kp SPACE &none &none &none
>; >;
}; };
navi_layer {
display-name = "NAVI";
bindings = <
&to 5 &kp N1 &kp N2 &kp N3 &kp N4 &kp N5 &kp PLUS &kp LBKT &kp UP &kp RBKT &kp ASTRK &kp EQUAL
&none &kp N6 &kp N7 &kp N8 &kp N9 &kp N0 &kp MINUS &kp LEFT &kp DOWN &kp RIGHT &kp FSLH &kp BSLH
&kp LSHFT &none &none &none &none &none &none &none &none &none &none &kp RSHFT
&kp LCTRL &kp RET &kp LGUI &kp SPACE &kp BSPC &kp RALT
>;
};
hub_layer { hub_layer {
display-name = "HUB"; display-name = "HUB";
bindings = < bindings = <
&bt BT_CLR &bt BT_SEL 0 &bt BT_SEL 1 &bt BT_SEL 2 &bt BT_SEL 3 &bt BT_SEL 4 &kp PLUS &kp LBKT &kp UP &kp RBKT &kp ASTRK &kp EQUAL &to 0 &to 1 &to 2 &to 3 &none &kp C_PP &bt BT_SEL 0 &bt BT_SEL 1 &bt BT_SEL 2 &bt BT_SEL 3 &bt BT_SEL 4 &bt BT_CLR
&out OUT_TOG &rgb_ug RGB_HUI &rgb_ug RGB_SAI &rgb_ug RGB_BRI &kp C_BRI_UP &kp C_VOL_UP &kp MINUS &kp LEFT &kp DOWN &kp RIGHT &kp FSLH &kp BSLH &none &none &none &none &kp C_BRI_UP &kp C_VOL_UP &rgb_ug RGB_HUI &rgb_ug RGB_SAI &rgb_ug RGB_BRD &td_colors &none &out OUT_TOG
&kp LSHFT &rgb_ug RGB_HUD &rgb_ug RGB_SAD &rgb_ug RGB_BRD &kp C_BRI_DN &kp C_VOL_DN &to 0 &to 1 &to 2 &to 3 &td_colors &kp RSHFT &none &none &none &none &kp C_BRI_DN &kp C_VOL_DN &rgb_ug RGB_HUD &rgb_ug RGB_SAD &rgb_ug RGB_BRI &none &none &none
&td_rgb &kp LCTRL &kp LGUI &kp SPACE &kp RALT &ht_mute_pp C_PLAY_PAUSE C_MUTE &kp C_PREV &kp C_NEXT &kp C_MUTE &rgb_ug RGB_TOG &rgb_ug RGB_EFR &rgb_ug RGB_EFF
>; >;
}; };

View file

@ -5,15 +5,9 @@ manifest:
# ZMK fork with per-key RGB layer support (darknao's patches on v0.3.0) # ZMK fork with per-key RGB layer support (darknao's patches on v0.3.0)
- name: afiqzudinhadi-zmk - name: afiqzudinhadi-zmk
url-base: https://github.com/afiqzudinhadi url-base: https://github.com/afiqzudinhadi
# dongle_display # nice_oled widgets (battery, luna, animations)
- name: englmaxi
url-base: https://github.com/englmaxi
# nice_oled - nice_epaper - dongle_display!view - oled Adapter
- name: mctechnology17 - name: mctechnology17
url-base: https://github.com/mctechnology17 url-base: https://github.com/mctechnology17
# fork of zmk-nice-oled with custom KM medal animation
- name: KeebMaker
url-base: https://github.com/KeebMaker
projects: projects:
# Personal fork of ZMK v0.3.0 + modular RGB effect API. # Personal fork of ZMK v0.3.0 + modular RGB effect API.
- name: zmk - name: zmk
@ -24,25 +18,9 @@ manifest:
- name: zmk-rgb-effects - name: zmk-rgb-effects
remote: afiqzudinhadi-zmk remote: afiqzudinhadi-zmk
revision: v1.1.1 revision: v1.1.1
# dongle_display # nice_oled widgets (battery, luna, animations)
- name: zmk-dongle-display
remote: englmaxi
revision: v0.3
# nice_oled - nice_epaper (fork with custom KM medal animation)
- name: zmk-nice-oled - name: zmk-nice-oled
remote: KeebMaker
revision: km-medal-animation
# dongle_display!view
- name: zmk-dongle-display-view
remote: mctechnology17 remote: mctechnology17
revision: main revision: main
# oled Adapter
- name: zmk-oled-adapter
remote: mctechnology17
revision: main
# Steno engine
- name: zmk-steno-engine
remote: afiqzudinhadi-zmk
revision: split-combined
self: self:
path: config path: config

View file

@ -12,35 +12,30 @@
## Layer 0: CARP (Carpalx QGMLWY) ## Layer 0: CARP (Carpalx QGMLWY)
``` ```
` Q G M L W | Y F U B ; ->HUB `/ESC Q G M L W | Y F U B ; TAB
[HUB] D S T N R | I A E O H ' [NAVI] D S T N R | I A E O H '
LSHFT Z X C V J | K P , . / RSHFT LSHFT Z X C V J | K P , . / RSHFT
[RGB] CTRL GUI | SPC ALT MUTE/PP CTRL RET GUI | SPC BSPC ALT
``` ```
**Combos (layers 0+1):** **Combos (layers 0+1):**
- Top+home row same col = `1`-`0`, shift+combo = `!` `@` `#` `$` `%` `^` `&` `*` `(` `)` - Top+home row same col = `1`-`0`, shift+combo = `!` `@` `#` `$` `%` `^` `&` `*` `(` `)`
- G+M (W+E on QWRT) = ESC
- S+T (S+D on QWRT) = TAB
- U+B (I+O on QWRT) = BSPC
- E+O (K+L on QWRT) = ENTER
| Key | Behavior | | Key | Behavior |
|-----|----------| |-----|----------|
| `[HUB]` | Hold opens HUB layer, release goes back | | `` ` ``/ESC | Tap = grave, hold = ESC |
| `[RGB]` | Tap-dance: 1x=toggle, 2x=effect fwd, 3x=effect rev | | `[NAVI]` | Hold opens NAVI layer, release goes back |
| `MUTE/PP` | Tap mute, hold play/pause |
## Layer 1: QWRT (QWERTY) ## Layer 1: QWRT (QWERTY)
``` ```
` Q W E R T | Y U I O P ->HUB `/ESC Q W E R T | Y U I O P TAB
[HUB] A S D F G | H J K L ; ' [NAVI] A S D F G | H J K L ; '
LSHFT Z X C V B | N M , . / RSHFT LSHFT Z X C V B | N M , . / RSHFT
[RGB] CTRL GUI | SPC ALT MUTE/PP CTRL RET GUI | SPC BSPC ALT
``` ```
Combos: same as CARP (top+home = 1-0, W+E = ESC, S+D = TAB, I+O = BSPC, K+L = ENTER) Combos: same as CARP (top+home = 1-0)
## Layer 2: STEN (Placeholder) ## Layer 2: STEN (Placeholder)
@ -61,14 +56,28 @@ M/ALT Z X C V G | _ _ _ _ _ _
| `E` | Tap = E, hold = 3 | | `E` | Tap = E, hold = 3 |
| `R` | Tap = R, hold = 4 | | `R` | Tap = R, hold = 4 |
| `M` | Tap = M, hold = ALT | | `M` | Tap = M, hold = ALT |
| `->HUB` | Press to go to HUB layer |
## Layer 4: HUB (Utility — BT, RGB, Media, Nav) ## Layer 4: NAVI (Numbers, Nav, Symbols)
``` ```
BT_CLR BT0 BT1 BT2 BT3 BT4 | + [ UP ] * = ->HUB 1 2 3 4 5 | + [ UP ] * =
OUT_TOG HUE+ SAT+ BRT+ SCRN+ VOL+ | - LEFT DOWN RIGHT / \ _ 6 7 8 9 0 | - LEFT DOWN RIGHT / \
LSHFT HUE- SAT- BRT- SCRN- VOL- | ->CARP ->QWRT ->STEN ->FPS [CLR] RSHFT LSHFT _ _ _ _ _ | _ _ _ _ _ RSHFT
[RGB] CTRL GUI | SPC ALT MUTE/PP CTRL RET GUI | SPC BSPC ALT
```
| Key | Action |
|-----|--------|
| `->HUB` | Press to go to HUB layer |
## Layer 5: HUB (Media, BT, RGB, Layer Switch)
```
->CARP ->QWRT ->STEN ->FPS _ PP | BT0 BT1 BT2 BT3 BT4 BT_CLR
_ _ _ _ SCRN+ VOL+ | HUE+ SAT+ BRT- [CLR] _ OUT_TOG
_ _ _ _ SCRN- VOL- | HUE- SAT- BRT+ _ _ _
PREV NEXT MUTE | TOG EFR EFF
``` ```
| Key | Action | | Key | Action |
@ -77,6 +86,9 @@ LSHFT HUE- SAT- BRT- SCRN- VOL- | ->CARP ->QWRT ->STEN ->FPS [CLR] R
| `HUE/SAT/BRT` | RGB underglow hue, saturation, brightness | | `HUE/SAT/BRT` | RGB underglow hue, saturation, brightness |
| `SCRN` | Display brightness (C_BRI_UP/DN) | | `SCRN` | Display brightness (C_BRI_UP/DN) |
| `VOL` | Volume up/down | | `VOL` | Volume up/down |
| `[RGB]` | Tap-dance: 1x=toggle, 2x=effect fwd, 3x=effect rev | | `PREV/NEXT` | Track previous/next |
| `PP` | Play/pause |
| `MUTE` | Mute toggle |
| `TOG` | RGB on/off |
| `EFF/EFR` | RGB effect next/previous |
| `[CLR]` | Tap-dance color presets: 1x=purple, 2x=white, 3x=red, 4x=blue, 5x=green | | `[CLR]` | Tap-dance color presets: 1x=purple, 2x=white, 3x=red, 4x=blue, 5x=green |
| `MUTE/PP` | Tap mute, hold play/pause |

File diff suppressed because it is too large Load diff

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 61 KiB

Before After
Before After

View file

@ -1,7 +1,7 @@
layout: {zmk_keyboard: corne} layout: {zmk_keyboard: corne}
layers: layers:
CARP: CARP:
- '`' - {t: '`', s: Esc, type: tap_dance}
- Q - Q
- G - G
- M - M
@ -12,8 +12,8 @@ layers:
- U - U
- B - B
- ; - ;
- {t: HUB, h: toggle} -
- HUB - NAVI
- D - D
- S - S
- T - T
@ -37,14 +37,14 @@ layers:
- . - .
- / - /
- $$mdi:apple-keyboard-shift$$ - $$mdi:apple-keyboard-shift$$
- '&td_rgb'
- $$mdi:apple-keyboard-control$$ - $$mdi:apple-keyboard-control$$
-
- $$mdi:apple-keyboard-command$$ - $$mdi:apple-keyboard-command$$
- -
- $$mdi:backspace-outline$$
- $$mdi:apple-keyboard-option$$ - $$mdi:apple-keyboard-option$$
- {t: MUTE, h: PLAY PAUSE}
QWRT: QWRT:
- '`' - {t: '`', s: Esc, type: tap_dance}
- Q - Q
- W - W
- E - E
@ -55,8 +55,8 @@ layers:
- I - I
- O - O
- P - P
- {t: HUB, h: toggle} -
- HUB - NAVI
- A - A
- S - S
- D - D
@ -80,55 +80,14 @@ layers:
- . - .
- / - /
- $$mdi:apple-keyboard-shift$$ - $$mdi:apple-keyboard-shift$$
- '&td_rgb'
- $$mdi:apple-keyboard-control$$ - $$mdi:apple-keyboard-control$$
-
- $$mdi:apple-keyboard-command$$ - $$mdi:apple-keyboard-command$$
- -
- $$mdi:backspace-outline$$
- $$mdi:apple-keyboard-option$$ - $$mdi:apple-keyboard-option$$
- {t: MUTE, h: PLAY PAUSE} STEN: ['', '', '', '', '', '', '', '', '', '', '', '', NAVI, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
STEN: '', '', '', '']
- ''
- '&steno STENO_NUM'
- '&steno STENO_NUM'
- '&steno STENO_NUM'
- '&steno STENO_NUM'
- '&steno STENO_NUM'
- '&steno STENO_NUM'
- '&steno STENO_NUM'
- '&steno STENO_NUM'
- '&steno STENO_NUM'
- '&steno STENO_NUM'
- {t: HUB, h: toggle}
- HUB
- '&steno STENO_SL'
- '&steno STENO_TL'
- '&steno STENO_PL'
- '&steno STENO_HL'
- '&steno STENO_STAR'
- '&steno STENO_STAR'
- '&steno STENO_FR'
- '&steno STENO_PR'
- '&steno STENO_LR'
- '&steno STENO_TR'
- '&steno STENO_DR'
- ''
- '&steno STENO_SL'
- '&steno STENO_KL'
- '&steno STENO_WL'
- '&steno STENO_RL'
- '&steno STENO_STAR'
- '&steno STENO_STAR'
- '&steno STENO_RR'
- '&steno STENO_BR'
- '&steno STENO_GR'
- '&steno STENO_SR'
- '&steno STENO_ZR'
- '&td_rgb'
- '&steno STENO_A'
- '&steno STENO_O'
- '&steno STENO_E'
- '&steno STENO_U'
- {t: MUTE, h: PLAY PAUSE}
FPS: FPS:
- {t: '1', h: Esc} - {t: '1', h: Esc}
- '2' - '2'
@ -172,25 +131,25 @@ layers:
- '' - ''
- '' - ''
- '' - ''
HUB: NAVI:
- BT CLR - {t: HUB, h: toggle}
- BT 1 - '1'
- BT 2 - '2'
- BT 3 - '3'
- BT 4 - '4'
- BT 5 - '5'
- + - +
- '[' - '['
- -
- ']' - ']'
- '*' - '*'
- '=' - '='
- {t: OUT TOG, type: held} - {type: held}
- {t: '$$mdi:led-on$$', s: '$$mdi:palette$$', type: sym_by_sym} - '6'
- {t: '$$mdi:led-outline$$', s: '$$mdi:eyedropper$$', type: sym_by_sym} - '7'
- {t: '$$mdi:led-outline$$', s: '$$tabler:brightness-down$$', type: sym_by_sym} - '8'
- BRI UP - '9'
- Vol Up - '0'
- '-' - '-'
- -
- -
@ -198,23 +157,66 @@ layers:
- / - /
- \ - \
- $$mdi:apple-keyboard-shift$$ - $$mdi:apple-keyboard-shift$$
- {t: '$$mdi:led-outline$$', s: '$$mdi:palette$$', type: sym_by_sym} - ''
- {t: '$$mdi:led-on$$', s: '$$mdi:eyedropper$$', type: sym_by_sym} - ''
- {t: '$$mdi:led-on$$', s: '$$tabler:brightness-up$$', type: sym_by_sym} - ''
- BRI DN - ''
- Vol Down - ''
- ''
- ''
- ''
- ''
- ''
- $$mdi:apple-keyboard-shift$$
- $$mdi:apple-keyboard-control$$
-
- $$mdi:apple-keyboard-command$$
-
- $$mdi:backspace-outline$$
- $$mdi:apple-keyboard-option$$
HUB:
- {t: CARP, h: toggle} - {t: CARP, h: toggle}
- {t: QWRT, h: toggle} - {t: QWRT, h: toggle}
- {t: STEN, h: toggle} - {t: STEN, h: toggle}
- {t: FPS, h: toggle} - {t: FPS, h: toggle}
- ''
-
- BT 1
- BT 2
- BT 3
- BT 4
- BT 5
- BT CLR
- ''
- ''
- ''
- ''
- Scrn+
- Vol+
- {t: '$$mdi:led-on$$', s: '$$mdi:palette$$', type: sym_by_sym}
- {t: '$$mdi:led-outline$$', s: '$$mdi:eyedropper$$', type: sym_by_sym}
- {t: '$$mdi:led-on$$', s: '$$tabler:brightness-up$$', type: sym_by_sym}
- '&td_colors' - '&td_colors'
- $$mdi:apple-keyboard-shift$$ - ''
- '&td_rgb' - Out Tog
- $$mdi:apple-keyboard-control$$ - ''
- $$mdi:apple-keyboard-command$$ - ''
- - ''
- $$mdi:apple-keyboard-option$$ - ''
- {t: MUTE, h: PLAY PAUSE} - Scrn-
- Vol-
- {t: '$$mdi:led-outline$$', s: '$$mdi:palette$$', type: sym_by_sym}
- {t: '$$mdi:led-on$$', s: '$$mdi:eyedropper$$', type: sym_by_sym}
- {t: '$$mdi:led-outline$$', s: '$$tabler:brightness-down$$', type: sym_by_sym}
- ''
- ''
- ''
-
-
- Mute
- {t: '$$mdi:led-on$$', h: '$$mdi:toggle-switch$$', s: '$$mdi:led-outline$$', type: toggle}
- {t: '$$mdi:led-on$$', h: '$$mdi:page-next-outline$$', type: tap_dance}
- {t: '$$mdi:led-on$$', h: '$$mdi:page-previous-outline$$', type: tap_dance}
combos: combos:
- p: [1, 13] - p: [1, 13]
k: '1' k: '1'
@ -246,17 +248,3 @@ combos:
- p: [10, 22] - p: [10, 22]
k: '0' k: '0'
l: [CARP, QWRT] l: [CARP, QWRT]
- p: [8, 9]
k: $$mdi:backspace-outline$$
l: [CARP, QWRT]
- p: [20, 21]
k:
l: [CARP, QWRT]
- p: [2, 3]
k: Esc
l: [CARP, QWRT]
draw_separate: true
- p: [14, 15]
k:
l: [CARP, QWRT]
draw_separate: true