xmonad 并稍后阅读
我正在使用 xmonad 和 firefox 的稍后阅读扩展。现在,如果我想在稍后阅读列表中标记一个条目,该列表就会消失(而不是简单地将焦点放在标记文本字段上),并且会出现一个非常小的空窗口。 (使用 gnome 一切正常)。
我的第一个想法是使用 xprop |grep CLASS 找出 ReadItLater 的类名,并在我的 xmonad.hs 中添加类似的内容:
, resource =? "readitlater" --> doIgnore
但是,这不起作用,因为如果列表打开,则鼠标和键盘控件绑定到名单。
有什么想法可以让标签编辑工作稍后在 xmonad 下阅读吗?
I am using xmonad and the read it later extension for firefox. Now, if I want to tag an entry in the read it later list, the list disappears (instead of giving simply focus to to tag textfield) and a very small empty window occurs. (Using gnome everything works).
My first thought was to find out for example the className of ReadItLater using xprop |grep CLASS, and add something like this in my xmonad.hs:
, resource =? "readitlater" --> doIgnore
However, this doesn't work since if the list is open mouse and keyboard control are bound to the list.
Any ideas how to make tag editing work in read it later under xmonad?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个可能有助于获取道具的技巧:
然后转到 Firefox 并调用扩展。 10 秒后
xprop
将被激活。A trick which may help to get the props:
Then go to firefox and invoke the extension. In 10 seconds
xprop
will be activated.