检查 Rhythmbox 是否正在通过 Python 运行
我正在尝试通过 dbus 从 Rhythmbox 提取信息,但我只想在 Rhythmbox 正在运行时这样做。有没有办法通过 Python 检查 Rhythmbox 是否正在运行,如果它没有运行,则无需启动它?
每当我像这样调用 dbus 代码时:
bus = dbus.Bus()
obj = bus.get_object("org.gnome.Rhythmbox", "/org/gnome/Rhythmbox/Shell")
iface = dbus.Interface(obj, "org.gnome.Rhythmbox.Shell)
并且 Rhythmbox 没有运行,它就会启动它。
我可以通过 dbus 检查 Rhythmbox 是否正在运行而不实际启动它吗?或者除了解析当前正在运行的进程列表之外还有其他方法吗?
I am trying to extract information from Rhythmbox via dbus
, but I only want to do so, if Rhythmbox is running. Is there a way to check if Rhythmbox is running via Python without starting it if it is not running?
Whenever I invoke the dbus
code like this:
bus = dbus.Bus()
obj = bus.get_object("org.gnome.Rhythmbox", "/org/gnome/Rhythmbox/Shell")
iface = dbus.Interface(obj, "org.gnome.Rhythmbox.Shell)
and Rhythmbox is not running, it then starts it.
Can I check via dbus
if Rhythmbox is running without actually starting it? Or is there any other way, other than parsing the list of currently running processes, to do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这与 Rosh Oxymoron 的答案类似,但可以说更简洁(尽管未经测试):
如果您想在 Rhythmbox 启动或停止时收到通知,您可以使用:
请参阅 dbus.bus.BusConnection 文档 了解更多详细信息。
This is similar to Rosh Oxymoron's answer, but arguably neater (albeit untested):
If you want to be notified when Rhythmbox starts or stops, you can use:
See the documentation for dbus.bus.BusConnection for more details.