From 7960479d139fc54c1cebada906aaee1b4ca8309e Mon Sep 17 00:00:00 2001 From: Scott Miller Date: Thu, 21 Oct 2021 09:56:53 -0500 Subject: [PATCH] address https://github.com/rshk/python-libxdo/issues/29 --- xdo/xdo.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xdo/xdo.py b/xdo/xdo.py index 2a9c3c5..6067848 100644 --- a/xdo/xdo.py +++ b/xdo/xdo.py @@ -236,6 +236,9 @@ class xdo_search_t(Structure): # const char *winname; pattern to test against a window name ('winname', c_char_p), + # const char *winrole; pattern to test against a window role + ('winrole', c_char_p), + # int pid; window pid (From window atom _NET_WM_PID) ('pid', c_int),