-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
windows missing in ilia -p windows #43
Comments
Hi @MHellmund , thanks for providing the background info and hints for implementation. That made it pretty easy to follow your thinking and make the change. I found that after allowing windows of type "unknown" to pass the filter that i3bar was also present. It doesn't make sense for i3bar to be in the window list. For now, I'm explicitly excluding it via it's |
Thank you! Perhaps the best solution for ilia would be some config mechanism, where users can include/exclude windows as they like |
Some applications, e.g.
xterm
, do not appear in theilia -p windows
list.Reason: They do not set the _NET_WM_WINDOW_TYPE property. According to https://specifications.freedesktop.org/wm-spec/1.3/ar01s05.html, windows without this property should be taken by the WM as if _NET_WM_WINDOW_TYPE_NORMAL is set.
Please change the test in
src/windows/WindowPage.vala:traverse_nodes()
so that windows withwindow_type=="none"
are included, too.Thank you!
The text was updated successfully, but these errors were encountered: