- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
背景:我正在开发一款名为 ActivityWatch 的软件。记录您在计算机上所做的事情。基本上是尝试解决以下问题:RescueTime、selfspy、arbtt 等。
我们所做的核心工作之一是记录有关事件窗口(类和标题)的信息。过去,这是在 Linux 上使用 xprop 完成的,现在 python-xlib 没有问题。
但现在我们有一个问题:Wayland 正在兴起,据我所知,Wayland 没有事件窗口的概念。所以我担心的是,我们将不得不为 Wayland 可用的每个桌面环境实现支持(假设它们将提供获取有关事件窗口的信息的能力)。
希望他们最终会融合并有一些共同的界面来完成这项工作,但我并没有屏住呼吸......
我一直是anticipating this issue .但是今天我们得到了我们的first user request for Wayland support由实际的 Wayland 用户。随着大型发行版采用 Wayland 作为默认显示服务器协议(protocol)(Fedora 25 已经在使用它,Ubuntu 将在即将推出的 17.10 中切换),随着时间的推移,情况将变得更加严峻。
ActivityWatch 的相关问题:
还有其他应用程序,如 ActivityWatch,需要相同的功能(RescueTime、arbtt、selfspy 等),它们现在似乎不支持 Wayland,我找不到有关它们计划这样做的任何详细信息.
我现在有兴趣从实现对 Gnome 的支持开始,并在路径变得更加清晰时与其他人跟进。
这里有人问过关于韦斯顿的类似问题:get the list of active windows in wayland weston
编辑:我在 Freenode 上的#wayland 中询问,得到以下回复:
15:20:44 ErikBjare Hello everybody. I'm working on a piece of self-tracking software called ActivityWatch (https://github.com/ActivityWatch/activitywatch). I know this isn't exactly the right place to ask, but I was wondering if anyone knew anything about getting the active window in any Wayland-using DE.
15:20:57 ErikBjare Created a question on SO: https://stackoverflow.com/questions/45465016/how-do-i-get-the-active-window-on-gnome-wayland
15:21:25 ErikBjare Here's the issue in my repo for it: https://github.com/ActivityWatch/activitywatch/issues/92
15:22:54 ErikBjare There are a bunch of other applications that depend on it (RescueTime, selfspy, arbtt, ulogme, etc.) so they'd need it as well
15:24:23 blocage ErikBjare, in the core protocol you cannot know which windnow has the keyboard or cursor focus
15:24:39 blocage ErikBjare, in the wayland core protocol *
15:25:10 blocage ErikBjare, you can just know if your window has the focus or not, it a design choise
15:25:23 blocage avoid client spying each other
15:25:25 ErikBjare blocage: I'm aware, that's my reason for concern. I'm not saying it should be included or anything, but as it looks now every DE would need to implement it themselves if these kind of applications are to be supported
15:25:46 ErikBjare So wondering if anyone knew the teams working with Wayland on Gnome for example
15:26:11 ErikBjare But thanks for confirming
15:26:29 blocage ErikBjare, DE should create a custom extension, or use D-bus or other IPC
15:27:31 blocage ErikBjare, I guess some compositor are around here, but I do not know myself if there is such extension already
15:27:44 blocage compositor developers *
15:28:36 ErikBjare I don't think there is (I've done quite a bit of searching), so I guess I need to catch the attention of some DE developers
15:29:16 ErikBjare Thanks a lot though
15:29:42 ErikBjare blocage: Would you mind if I shared logs of our conversation in the issue?
15:30:05 blocage just use it :) it's public
15:30:19 ErikBjare ty :)
编辑 2: 归档 enhancement issue in the Gnome bugtracker .
tl;dr:如何在使用 Wayland 时获得 Gnome 上的事件窗口?
最佳答案
前面的两个答案已经过时了,这是在(Gnome)Wayland中查询窗口的appnames和titles的当前状态。
Gnome 特定的 API 可能会在 Gnome 版本之间中断,但它可以工作。它严重依赖 Gnome 内部 API 才能工作,因此它不可能成为标准 API。有a PR on aw-watcher-window to add this ,但如果可能的话,它需要一些清理和 afk 支持。
wlr-foreign-toplevel-management协议(protocol)(在撰写本文时)由 Sway、Mir、Phosh 和 Wayfire 合成器实现。与被 Wayland 合成器广泛实现的 idle.xml 协议(protocol)一起,在 aw-watcher-window-wayland 中有一个完整的实现,带有 ActivityWatch 的 afk-detection。 .我一直在与 sway/rootston 开发人员讨论 Wayland 应用程序名称和 X11 wm_class 是否可以互换,并且 Sway 和 Phosh 现在可以互换使用它们,因此 API 中的 Wayland 和 XWayland 窗口之间应该不再有任何可区分的差异。
我没有研究 KWin 是否有类似于 Gnome Shell 的 API 来获取应用名称和标题,但它至少没有实现 wlr-foreign-toplevel-management。
关于python - 如何获得 Gnome Wayland 上的事件窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45465016/
我正在处理一组标记为 160 个组的 173k 点。我想通过合并最接近的(到 9 或 10 个组)来减少组/集群的数量。我搜索过 sklearn 或类似的库,但没有成功。 我猜它只是通过 knn 聚类
我有一个扁平数字列表,这些数字逻辑上以 3 为一组,其中每个三元组是 (number, __ignored, flag[0 or 1]),例如: [7,56,1, 8,0,0, 2,0,0, 6,1,
我正在使用 pipenv 来管理我的包。我想编写一个 python 脚本来调用另一个使用不同虚拟环境(VE)的 python 脚本。 如何运行使用 VE1 的 python 脚本 1 并调用另一个 p
假设我有一个文件 script.py 位于 path = "foo/bar/script.py"。我正在寻找一种在 Python 中通过函数 execute_script() 从我的主要 Python
这听起来像是谜语或笑话,但实际上我还没有找到这个问题的答案。 问题到底是什么? 我想运行 2 个脚本。在第一个脚本中,我调用另一个脚本,但我希望它们继续并行,而不是在两个单独的线程中。主要是我不希望第
我有一个带有 python 2.5.5 的软件。我想发送一个命令,该命令将在 python 2.7.5 中启动一个脚本,然后继续执行该脚本。 我试过用 #!python2.7.5 和http://re
我在 python 命令行(使用 python 2.7)中,并尝试运行 Python 脚本。我的操作系统是 Windows 7。我已将我的目录设置为包含我所有脚本的文件夹,使用: os.chdir("
剧透:部分解决(见最后)。 以下是使用 Python 嵌入的代码示例: #include int main(int argc, char** argv) { Py_SetPythonHome
假设我有以下列表,对应于及时的股票价格: prices = [1, 3, 7, 10, 9, 8, 5, 3, 6, 8, 12, 9, 6, 10, 13, 8, 4, 11] 我想确定以下总体上最
所以我试图在选择某个单选按钮时更改此框架的背景。 我的框架位于一个类中,并且单选按钮的功能位于该类之外。 (这样我就可以在所有其他框架上调用它们。) 问题是每当我选择单选按钮时都会出现以下错误: co
我正在尝试将字符串与 python 中的正则表达式进行比较,如下所示, #!/usr/bin/env python3 import re str1 = "Expecting property name
考虑以下原型(prototype) Boost.Python 模块,该模块从单独的 C++ 头文件中引入类“D”。 /* file: a/b.cpp */ BOOST_PYTHON_MODULE(c)
如何编写一个程序来“识别函数调用的行号?” python 检查模块提供了定位行号的选项,但是, def di(): return inspect.currentframe().f_back.f_l
我已经使用 macports 安装了 Python 2.7,并且由于我的 $PATH 变量,这就是我输入 $ python 时得到的变量。然而,virtualenv 默认使用 Python 2.6,除
我只想问如何加快 python 上的 re.search 速度。 我有一个很长的字符串行,长度为 176861(即带有一些符号的字母数字字符),我使用此函数测试了该行以进行研究: def getExe
list1= [u'%app%%General%%Council%', u'%people%', u'%people%%Regional%%Council%%Mandate%', u'%ppp%%Ge
这个问题在这里已经有了答案: Is it Pythonic to use list comprehensions for just side effects? (7 个答案) 关闭 4 个月前。 告
我想用 Python 将两个列表组合成一个列表,方法如下: a = [1,1,1,2,2,2,3,3,3,3] b= ["Sun", "is", "bright", "June","and" ,"Ju
我正在运行带有最新 Boost 发行版 (1.55.0) 的 Mac OS X 10.8.4 (Darwin 12.4.0)。我正在按照说明 here构建包含在我的发行版中的教程 Boost-Pyth
学习 Python,我正在尝试制作一个没有任何第 3 方库的网络抓取工具,这样过程对我来说并没有简化,而且我知道我在做什么。我浏览了一些在线资源,但所有这些都让我对某些事情感到困惑。 html 看起来
我是一名优秀的程序员,十分优秀!