Patch: Replace keyd patch with diff.

This commit is contained in:
Dmitry Voronin 2024-11-16 06:52:58 +03:00
parent 77f294fc37
commit 158d31ed2b
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -1,19 +1,8 @@
From 8ab68aba77e29f2a75f35d1409da0503d79a74e3 Mon Sep 17 00:00:00 2001
From: blankie <blankie@nixnetmail.com>
Date: Sat, 29 Jul 2023 09:48:54 +1000
Subject: [PATCH 1/2] keyd-application-mapper: Apply bindings when title/app id
changes on wlroots
Fixes #525
---
scripts/keyd-application-mapper | 47 ++++++++++++++++++++++++++-------
1 file changed, 38 insertions(+), 9 deletions(-)
diff --git a/scripts/keyd-application-mapper b/scripts/keyd-application-mapper diff --git a/scripts/keyd-application-mapper b/scripts/keyd-application-mapper
index 55dd63b..9fefcfc 100755 index 55dd63b..ed74f4e 100755
--- a/scripts/keyd-application-mapper --- a/scripts/keyd-application-mapper
+++ b/scripts/keyd-application-mapper +++ b/scripts/keyd-application-mapper
@@ -176,18 +176,47 @@ class Wlroots(): @@ -176,18 +176,49 @@ class Wlroots():
def run(self): def run(self):
windows = {} windows = {}
@ -32,7 +21,7 @@ index 55dd63b..9fefcfc 100755
- if event == 4 and payload[0] > 0 and payload[4] == 2: - if event == 4 and payload[0] > 0 and payload[4] == 2:
- self.on_window_change(windows[obj].get('appid', ''), windows[obj].get('title', '')) - self.on_window_change(windows[obj].get('appid', ''), windows[obj].get('title', ''))
+ # zwlr_foreign_toplevel_manager_v1::toplevel event + # zwlr_foreign_toplevel_manager_v1::toplevel event
+ windows[struct.unpack('I', payload)[0]] = {'title': '', 'appid': '', 'state': 0} + windows[struct.unpack('I', payload)[0]] = {'title': '', 'appid': ''}
+ continue + continue
+ +
+ if obj not in windows: + if obj not in windows:
@ -46,18 +35,20 @@ index 55dd63b..9fefcfc 100755
+ windows[obj]['appid'] = self.wl.read_string(payload) + windows[obj]['appid'] = self.wl.read_string(payload)
+ elif event == 4: + elif event == 4:
+ # zwlr_foreign_toplevel_handle_v1::state event + # zwlr_foreign_toplevel_handle_v1::state event
+ windows[obj]['state'] = 0
+ if active_window == windows[obj]: + if active_window == windows[obj]:
+ active_window = None + active_window = None
+ window_is_active = False
+ +
+ array_size = struct.unpack('I', payload[0:4])[0] + array_size = struct.unpack('I', payload[0:4])[0]
+ for i in range(0, array_size, 4): + for i in range(0, array_size, 4):
+ start_offset = i + 4 + start_offset = i + 4
+ end_offset = start_offset + 4 + end_offset = start_offset + 4
+ windows[obj]['state'] |= struct.unpack('I', payload[start_offset:end_offset])[0] + state = struct.unpack('I', payload[start_offset:end_offset])[0]
+
+ # zwlr_foreign_toplevel_handle_v1::state enum -> activated + # zwlr_foreign_toplevel_handle_v1::state enum -> activated
+ if windows[obj]['state'] & 2: + if state == 2:
+ window_is_active = True
+
+ if window_is_active:
+ active_window = windows[obj] + active_window = windows[obj]
+ elif event == 5 and active_window == windows[obj]: + elif event == 5 and active_window == windows[obj]:
+ # zwlr_foreign_toplevel_handle_v1::done event + # zwlr_foreign_toplevel_handle_v1::done event
@ -70,51 +61,3 @@ index 55dd63b..9fefcfc 100755
class XMonitor(): class XMonitor():
def __init__(self, on_window_change): def __init__(self, on_window_change):
From e31186ee8526e0f2601e2ee9a4071a340506cb99 Mon Sep 17 00:00:00 2001
From: blankie <blankie@nixnetmail.com>
Date: Sat, 29 Jul 2023 10:04:49 +1000
Subject: [PATCH 2/2] keyd-application-mapper: Properly check window state
---
scripts/keyd-application-mapper | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/scripts/keyd-application-mapper b/scripts/keyd-application-mapper
index 9fefcfc..ed74f4e 100755
--- a/scripts/keyd-application-mapper
+++ b/scripts/keyd-application-mapper
@@ -182,7 +182,7 @@ class Wlroots():
(obj, event, payload) = self.wl.recv_msg()
if obj == 4 and event == 0:
# zwlr_foreign_toplevel_manager_v1::toplevel event
- windows[struct.unpack('I', payload)[0]] = {'title': '', 'appid': '', 'state': 0}
+ windows[struct.unpack('I', payload)[0]] = {'title': '', 'appid': ''}
continue
if obj not in windows:
@@ -196,18 +196,20 @@ class Wlroots():
windows[obj]['appid'] = self.wl.read_string(payload)
elif event == 4:
# zwlr_foreign_toplevel_handle_v1::state event
- windows[obj]['state'] = 0
if active_window == windows[obj]:
active_window = None
+ window_is_active = False
array_size = struct.unpack('I', payload[0:4])[0]
for i in range(0, array_size, 4):
start_offset = i + 4
end_offset = start_offset + 4
- windows[obj]['state'] |= struct.unpack('I', payload[start_offset:end_offset])[0]
+ state = struct.unpack('I', payload[start_offset:end_offset])[0]
+ # zwlr_foreign_toplevel_handle_v1::state enum -> activated
+ if state == 2:
+ window_is_active = True
- # zwlr_foreign_toplevel_handle_v1::state enum -> activated
- if windows[obj]['state'] & 2:
+ if window_is_active:
active_window = windows[obj]
elif event == 5 and active_window == windows[obj]:
# zwlr_foreign_toplevel_handle_v1::done event