From 80b92da798ac35773073747960c02ad8d38ac1c6 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Sun, 30 Jul 2023 11:14:48 -0400 Subject: [PATCH] add combos from programming raccoon that avoid and work around a kmk bug in the combo handling engine that can caus the board to get stuck in states that are non-usable --- ardux/kb.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ardux/kb.py b/ardux/kb.py index 2525a0e..beab990 100644 --- a/ardux/kb.py +++ b/ardux/kb.py @@ -193,4 +193,7 @@ class _ArduxKeyboard(KMKKeyboard): self.combo_module.combos.append(Chord((self.base_o_custom, KC.Y, self.base_e_symbols), KC.NO)) self.combo_module.combos.append(Chord((self.base_a_parens, KC.R, self.base_s_numbers), KC.NO)) self.combo_module.combos.append(Chord((self.base_a_parens, KC.T), KC.NO)) + self.combo_module.combos.append(Chord((self.base_o_custom, KC.T), KC.NO)) + self.combo_module.combos.append(Chord((self.base_o_custom, self.base_s_numbers), KC.NO)) + self.combo_module.combos.append(Chord((self.base_s_numbers, KC.Y), KC.NO))