From eac433c41ca47047901f7f1e6f5be0ff08bbfd33 Mon Sep 17 00:00:00 2001 From: Duane Johnson Date: Sun, 16 Jan 2022 21:32:10 -0700 Subject: [PATCH] Window identifier can be wm_class with optional wm_name --- scripts/keyd-application-mapper | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/keyd-application-mapper b/scripts/keyd-application-mapper index 51cf8ea..639f358 100755 --- a/scripts/keyd-application-mapper +++ b/scripts/keyd-application-mapper @@ -45,10 +45,10 @@ def parse_config(path): line = line.strip() if line.startswith('[') and line.endswith(']'): - window_class = line[1:-1] + window_identifier = line[1:-1] bindings = [] - map[window_class] = bindings + map[window_identifier] = bindings elif line == '': continue elif line.startswith('#'):