From 768de578ba7bc51d3f6b777d1f485a0b8387b40e Mon Sep 17 00:00:00 2001 From: Raheman Vaiya Date: Tue, 9 Aug 2022 20:58:52 -0400 Subject: [PATCH] keyd-application-mapper: Apply bindings to all configs (#265) --- scripts/keyd-application-mapper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/keyd-application-mapper b/scripts/keyd-application-mapper index 9dd2a04..49020b1 100755 --- a/scripts/keyd-application-mapper +++ b/scripts/keyd-application-mapper @@ -377,7 +377,7 @@ def on_window_change(cls, title): print(f'Active window: {cls}|{title}') bindings = lookup_bindings(cls, title) - subprocess.run(['keyd', '-e', 'reset', *bindings]) + subprocess.run(['keyd', '--all', '-e', 'reset', *bindings]) mon = get_monitor(on_window_change)