获取 GUI 上应用程序的顺序

获取 GUI 上应用程序的顺序

是否有命令可以显示应用程序在 GUI 上显示的顺序?

在此处输入图片描述

答案1

看你的截图,我猜你正在寻找一种用 python 实现它的方法。

获取窗口的 z 顺序

如果你在 X,您可以使用(在任何与 - 绑定的语言中)Wnck。不过,Wnck 不适用于 Wayland。下面的代码片段展示了如何在 Python 中完成它。输出列表的顺序按照窗口 z 顺序的顺序。
请注意,Wnck.get_windows_stacked() 不应修改。当然,您可以使用从中检索的数据来获取窗口的顺序及其属性。在代码片段中,我仅用于获取窗口的 xid 和名称,但一切皆有可能

例子

#!/usr/bin/env python3
import gi
gi.require_version("Wnck", "3.0")
from gi.repository import Wnck

def get_stack():
    z_order_list = []
    scr = Wnck.Screen.get_default()
    # if Wnck is not called from withing a Gtk loop, we need:
    scr.force_update()
    for w in scr.get_windows_stacked():
        # most likely, we only work with normal windows (no panels or desktop)
        if w.get_window_type() == Wnck.WindowType.NORMAL:
            # only adding xid and name here, but anything is possible
            z_order_list.append([w.get_xid(), w.get_name()])
    z_order_list.reverse()
    return z_order_list

wlist = get_stack()
for w in wlist:
    print(w[0], w[1])

示例输出:

92306612 *IDLE Shell 3.8.10*
92274937 zorder.py - /home/jacob/Bureaublad/zorder.py (3.8.10)
96468995 Get the order of applictaions on GUI - Ask Ubuntu - Mozilla Firefox
98568913 Geen titel 1 - LibreOffice Writer
98566678 Rooster Jacob 2021-2022.ods - LibreOffice Calc
94371847 Tilix: jacob@jacob-ZN220IC-K:~

其中第一个是最近的窗口,因为我反转了列表。

请注意 Gdk有类似的方法

相关内容