From 00e9f6296569fcd009e7ff28c145038a104090a5 Mon Sep 17 00:00:00 2001 From: Adam Kruszewski Date: Tue, 28 Feb 2023 22:23:36 +0100 Subject: [PATCH] Make alt-tab more snappy --- keymap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keymap.c b/keymap.c index fa5df84..de22302 100644 --- a/keymap.c +++ b/keymap.c @@ -153,7 +153,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { void matrix_scan_user(void) { // The very important timer. if (is_alt_tab_active) { - if (timer_elapsed(alt_tab_timer) > 1000) { + if (timer_elapsed(alt_tab_timer) > 800) { unregister_code(KC_LALT); is_alt_tab_active = false; }