Commit ac9878adff81
Changed files (2)
keyboards
eyelash_corne
config
keyboards/eyelash_corne/config/combos.dtsi
@@ -11,23 +11,24 @@
#undef COMBO_TERM
#define COMBO_TERM 40
-// All Layers
+// All Layers - ESC on home row (same combo works for all layouts)
+// QWERTY: L + SEMI, Bépo: R + N, ErgoL: I + U
ZMK_COMBO(esc, &kp ESC, RM3 RM4)
-// (Bépo,Qwerty) -> Ergo-L - Mid thumbs, active on Bépo and Qwerty
-ZMK_COMBO(to_ergol, &to ERG, LH1 RH1, BEP QWE)
-
-// (Ergo-L/Qwerty) -> Bépo - Inner thumbs, active on Ergo-L and Qwerty
+// (Ergo-L/Qwerty) -> Bépo - Left Backspace/Nav + Right Shift (similar to Moonlander)
ZMK_COMBO(to_bepo, &to BEP, LH0 RH0, ERG QWE)
-
-// (Bépo/Ergo-L) -> Qwerty - Outer thumbs, active on Bépo and Ergo-L
-ZMK_COMBO(to_qwerty, &to QWE, LH2 RH2, BEP ERG)
-// Switch mouse layer
-ZMK_COMBO(toggle_mouse, &tog MOU, LT1 LT4, BEP ERG QWE MOU)
+// (Bépo/Qwerty) -> Ergo-L - Q + P opposite corners (similar to Moonlander)
+ZMK_COMBO(to_ergol, &to ERG, LT4 RT4, BEP QWE)
-// Leader key - Right thumb cluster (similar to Moonlander Del+RAlt)
-ZMK_COMBO(leader, &leader, RH0 RH2, BEP ERG QWE)
+// (Bépo/Ergo-L) -> Qwerty - Space/Num + Enter/Sym thumbs (similar to Moonlander)
+ZMK_COMBO(to_qwerty, &to QWE, LH1 RH1, BEP ERG)
+
+// Toggle mouse layer - Q + R (similar to Moonlander)
+ZMK_COMBO(toggle_mouse, &tog MOU, LT4 LT1, BEP ERG QWE MOU)
+
+// Leader key - Delete + Right Alt (matching Moonlander Del+RAlt)
+ZMK_COMBO(leader, &leader, LH2 RH2, BEP ERG QWE)
// underscore
ZMK_COMBO(capsword, &caps_word, LB4 RB4, BEP ERG QWE)
keyboards/eyelash_corne/Dockerfile
@@ -21,7 +21,7 @@ FROM builder AS builder_left
RUN west build -s zmk/app \
-b eyelash_corne_left -d /tmp/left -- \
-DZMK_CONFIG=/workspace/zmk-config/config \
- -DSHIELD="nice_view_adapter nice_epaper" \
+ -DSHIELD="nice_view_gem" \
-DZMK_EXTRA_MODULES=/workspace/zmk-new_corne
FROM builder AS builder_right
@@ -30,7 +30,7 @@ FROM builder AS builder_right
RUN west build -s zmk/app \
-b eyelash_corne_right -d /tmp/right -- \
-DZMK_CONFIG=/workspace/zmk-config/config \
- -DSHIELD="nice_view_adapter nice_epaper" \
+ -DSHIELD="nice_view_gem" \
-DZMK_EXTRA_MODULES=/workspace/zmk-new_corne
FROM scratch AS output_collector