Python:如何使用 Xlib 在工作区之间切换?

发布于 2024-08-24 04:26:53 字数 965 浏览 5 评论 0原文

如何使用带有 Xlib 模块的 Python 在窗口管理器的工作区之间切换?

这是我最有希望的尝试:

#!/usr/bin/python

from Xlib import X, display, error, Xatom, Xutil
import Xlib.protocol.event

screen = Xlib.display.Display().screen()
root   = screen.root


def sendEvent(win, ctype, data, mask=None):
        """ Send a ClientMessage event to the root """
        data = (data+[0]*(5-len(data)))[:5]
        ev = Xlib.protocol.event.ClientMessage(window=win, client_type=ctype, data=(32,(data)))

        if not mask:
            mask = (X.SubstructureRedirectMask|X.SubstructureNotifyMask)
        root.send_event(ev, event_mask=mask)


# switch to desktop 2
sendEvent(root, Xlib.display.Display().intern_atom("_NET_CURRENT_DESKTOP"), [2])

上面的代码是从 PyPanel 源代码的各个地方无耻地窃取的;不幸的是,它没有做任何事情,甚至没有生成警告/异常。我在这里错过了什么吗?

我正在使用 Python 和 PyGTK。 Xlib 似乎是切换桌面的正确选择。我不打算使用 wnck (有缺陷的 Python 模块)或类似的,但无论如何我都会很感激任何指针。

我想补充一点,这是我第一次尝试使用 Xlib(或 PyGTK)编写 Python 应用程序。

How do I switch between my window manager's workspaces using Python with Xlib module?

This is my most promising attempt:

#!/usr/bin/python

from Xlib import X, display, error, Xatom, Xutil
import Xlib.protocol.event

screen = Xlib.display.Display().screen()
root   = screen.root


def sendEvent(win, ctype, data, mask=None):
        """ Send a ClientMessage event to the root """
        data = (data+[0]*(5-len(data)))[:5]
        ev = Xlib.protocol.event.ClientMessage(window=win, client_type=ctype, data=(32,(data)))

        if not mask:
            mask = (X.SubstructureRedirectMask|X.SubstructureNotifyMask)
        root.send_event(ev, event_mask=mask)


# switch to desktop 2
sendEvent(root, Xlib.display.Display().intern_atom("_NET_CURRENT_DESKTOP"), [2])

The above code is shamelessly stolen from various places in the PyPanel source; unfortunately, it doesn't do anything, not even generate a warning / exception. Am I missing something here?

I'm using Python and PyGTK. Xlib seems to be the right choice for switching desktops. I don't intend to use wnck (buggy Python module) or similar, but I'd appreciate any pointers anyway.

I might add that this is my first attempt at writing a Python application using Xlib (or PyGTK).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

顾冷 2024-08-31 04:26:53

显然,您需要处理同一个 Display 对象,然后在最后刷新它。类似于:

display = Xlib.display.Display()
screen = display.screen()
root = screen.root

# ...

sendEvent(root, display.intern_atom("_NET_CURRENT_DESKTOP"), [1, X.CurrentTime])
display.flush()

信用:来自非常相似的线程的想法(这几乎有效)。

PS顺便说一句,桌面号是从0开始的。

Apparently you need to work on the same Display object and then flush it at the end. Something like:

display = Xlib.display.Display()
screen = display.screen()
root = screen.root

# ...

sendEvent(root, display.intern_atom("_NET_CURRENT_DESKTOP"), [1, X.CurrentTime])
display.flush()

Credit: Idea from a very similar thread (which almost works).

P.S. By the way, the desktop number starts from 0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文