使用 Python 的 Xlib 查找某个 X 窗口

使用 Python 的 Xlib 查找某个 X 窗口

我试图在我的 X 服务器上找到一个未映射的窗口,以便将其映射回来并向其发送一些欧洲WMH暗示。因为窗口未映射,所以我无法使用 EWMH 直接询问窗口管理器。所以我试图通过 Xlib 来获取它,但我遇到了问题。整个 API 对我来说非常混乱。

我正在使用Python的Xlib 包装器。现在让我们看一下下面的 Python 脚本:

import subprocess
from time import sleep
from ewmh import EWMH

subprocess.Popen(['urxvt']) # Run some program, here it is URXVT terminal.
sleep(1) # Wait until the term is ready, 1 second is really enought time.

ewmh = EWMH() # Python has a lib for EWMH, I use it for simplicity here.

# Get all windows?
windows = ewmh.display.screen().root.query_tree().children

# Print WM_CLASS properties of all windows.
for w in windows: print(w.get_wm_class())

脚本的输出是什么?一个打开的 URXVT 终端是这样的:

None
None
None
None
('xscreensaver', 'XScreenSaver')
('firefox', 'Firefox')
('Toplevel', 'Firefox')
None
('Popup', 'Firefox')
None
('Popup', 'Firefox')
('VIM', 'Vim_xterm')

当我运行此命令并单击打开的终端时:

$ xprop | grep WM_CLASS
WM_CLASS(STRING) = "urxvt", "URxvt"

同样是与WM_NAME财产。

最后一个问题:为什么脚本的输出中没有“URxvt”字符串?

答案1

没有字符串的原因“urxvt”,“URxvt”XWindows 是有层次结构的。由于某种原因,在我的桌面上,urxvt 窗口不在第一级。

所以必须像这样遍历整棵树:

from Xlib.display import Display

def printWindowHierrarchy(window, indent):
    children = window.query_tree().children
    for w in children:
        print(indent, w.get_wm_class())
        printWindowHierrarchy(w, indent+'-')

display = Display()
root = display.screen().root
printWindowHierrarchy(root, '-')

脚本输出的一行(可能很长)是:

--- ('urxvt', 'URxvt')

相关内容