From d421e8d7220fe88ebf23c5020ee902b488d69778 Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Sat, 12 Aug 2023 16:08:58 +0200 Subject: try again with achordion --- ferris/keymap.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'ferris/keymap.c') diff --git a/ferris/keymap.c b/ferris/keymap.c index 7cb2f0a..d0327ed 100644 --- a/ferris/keymap.c +++ b/ferris/keymap.c @@ -89,3 +89,23 @@ bool get_permissive_hold(uint16_t keycode, keyrecord_t *record) { return false; } } + +// +// improve home row modifiers via achordion +// + +#include "achordion.h" + +bool process_record_user(uint16_t keycode, keyrecord_t* record) +{ + if (!process_achordion(keycode, record)) { + return false; + } + + return true; +} + +void matrix_scan_user(void) +{ + achordion_task(); +} -- cgit v1.2.3