0

我正在尝试构建一个脚本,当另一个窗口变为活动状态时记录窗口标题。这是我到目前为止所拥有的:

import glib
import dbus
from dbus.mainloop.glib import DBusGMainLoop

def notifications(bus, message):
    if message.get_member() == "event":
        args = message.get_args_list()
        if args[0] == "activate":
            print "Hello world"
            activewindow = Popen("xdotool getactivewindow getwindowname", stdout=PIPE, stderr=PIPE); 
            print activewindow.communicate()



DBusGMainLoop(set_as_default=True)

bus = dbus.SessionBus()
bus.add_match_string_non_blocking("interface='org.kde.KNotify',eavesdrop='true'")
bus.add_message_filter(notifications)

mainloop = glib.MainLoop()
mainloop.run()

但是,我的 Popen 调用显然有问题,glib 似乎吞下了这个错误。至少,这是 IRC 频道上的某个人告诉我的。当我删除Popenandactivewindow.communicate()调用时,一切正常,我收到一条消息“Hello world!” 每当我切换到新窗口时都会打印在外壳中。

使用Popenandcommunicate()调用,脚本会打印一个“Hello world”并在此之后挂起。

有人知道吗:

  • 我怎样才能得到正确的错误信息?
  • 我在Popen通话中做错了什么?

提前致谢!

4

1 回答 1

0

我不能只是评论...您还没有导入流程模块或其成员(Popen,PIPE)。

于 2014-04-07T19:08:29.120 回答