I've set #define OUTPUT_TITLE True in my config.h, recompiled, but still no title is output.
I added a debugging fprintf(stderr, "%s\n", wtitle.strings); statement inside this test:
|
if (M_CURRENT) { |
|
cookie = xcb_ewmh_get_wm_name_unchecked(ewmh, M_CURRENT->win); |
|
xcb_ewmh_get_wm_name_reply(ewmh, cookie, &wtitle, (void *)0); |
|
} |
and found out that the output is (null). It seems something is wrong with handling that string.
I've set
#define OUTPUT_TITLE Truein myconfig.h, recompiled, but still no title is output.I added a debugging
fprintf(stderr, "%s\n", wtitle.strings);statement inside this test:FrankenWM/frankenwm.c
Lines 1385 to 1388 in 0eb3d54
and found out that the output is
(null). It seems something is wrong with handling that string.