Anyone got an idea how to get from an Xserver the list of all open windows?
相关问题
- X11 forwarding affects Java Swing GUI dropdowns -
- X11 non-clipped child windows
- Using Python GTK GUI front end with C++ backend
- Saving xlib XImage to PNG
- R script using X11 window only opens for a second
相关文章
- Tracking XWindow Protocol
- How do I map an X11 keysym to a Unicode character?
- Sending Keystrokes to a X Window
- Host screen turns off when I start X server in doc
- Desktop integrated application (desktop widget lik
- With X11, how can I get the user's time “away
- Programmatically launching standalone Adobe flashp
- Embedding QWidget into X11 Window
From the CLI you can use
If you need to do this within your own code then you need to use the
XQueryTree
function from theXlib
library.You can also take a look at the
_NET_CLIENT_LIST
value of the root window. This is set by most modern window managers:That value can easily be obtained programmatically, see your Xlib documentation!