im trying to write a C code to get the title of the Active Window in my Linux System, but the Function XFetchName always returnes zero, i also tried XGetWMName, same result... but using xprop, i can see that there is a string in the "WM_NAME" property
can anyone tell me whats wrong with my code?
#include <X11/Xlib.h>
#include <stdio.h>
#include <stdarg.h>
int main( int argc, char* argv[] )
{
Display *display;
Window focus;
char *window_name;
int revert;
display = XOpenDisplay(NULL);
XGetInputFocus(display, &focus, &revert);
int ret = XFetchName(display, focus, &window_name);
printf("ret = %d\n", ret);
if (window_name) printf("Title = %s\n", window_name);
return 0;
}
thanks.
_in_main? – larsmans Jan 11 '12 at 19:55xtermset). In addition, I added a call toXStoreName()to set it to something else first and that worked as expected as well with your code retrieving the new name just fine. This is of course after renaming_main()tomain()- How are you running your program? – Brian Roach Jan 11 '12 at 20:07