Commit ac9878adff81

Vincent Demeester <vincent@sbr.pm>
2026-01-16 21:45:35
feat(keyboards): sync eyelash_corne combos with moonlander and fix display
- Update layout switching combos to match Moonlander: - To Bépo: Backspace+Shift (LH0+RH0) - To Ergo-L: Q+P opposite corners (LT4+RT4) - To Qwerty: Space+Enter thumbs (LH1+RH1) - Mouse toggle: Q+R (LT4+LT1) - Leader key: Delete+RAlt (LH2+RH2) - Fix display shield from nice_epaper to nice_view_gem - Shows gem animation instead of nyancat - Respects CONFIG_NICE_VIEW_GEM_ANIMATION_MS=4800 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 92e9131
Changed files (2)
keyboards
eyelash_corne
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