From 18d9fbcdf9452cda1908792ee08b70aac91a3f8f Mon Sep 17 00:00:00 2001 From: granitrocky Date: Fri, 16 Dec 2022 11:22:13 -0600 Subject: [PATCH] Add Up/Down and swap with NAV MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This comes from the PR @fsargent opened https://github.com/arduxio/zmk-ardux/pull/6 Swapped with the NAV layer swap for better ergonomics as shown below: ARDUX LEFT: Down Arrow ⚪⚫⚪⚫ ⚪⚪⚫⚪ Up Arrow ⚪⚪⚫⚪ ⚪⚫⚪⚫ RIGHT ARDUX: Down Arrow ⚫⚪⚫⚪ ⚪⚫⚪⚪ Up Arrow ⚪⚫⚪⚪ ⚫⚪⚫⚪ --- config/ardux.dtsi | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/ardux.dtsi b/config/ardux.dtsi index 2f2ae5a..be480e0 100644 --- a/config/ardux.dtsi +++ b/config/ardux.dtsi @@ -261,7 +261,9 @@ * 3 key combos *****************************************/ combo_esc { timeout-ms = ; key-positions = ; bindings = <&kp ESC>; }; - combo_layer_navigation { timeout-ms = ; key-positions = ; bindings = <&tog LAYER_ID_NAVIGATION>; }; + combo_layer_navigation { timeout-ms = ; key-positions = ; bindings = <&tog LAYER_ID_NAVIGATION>; }; + combo_up { timeout-ms = ; key-positions = ; bindings = <&kp UP>; }; + combo_down { timeout-ms = ; key-positions = ; bindings = <&kp DOWN>; }; combo_m { layers = ; timeout-ms = ; key-positions = ; bindings = <&kp M>; }; combo_d { layers = ; timeout-ms = ; key-positions = ; bindings = <&kp D>; };