set old WM_NAME content before exiting

This commit is contained in:
Aaron Marcher 2016-09-13 19:34:25 +02:00 committed by Aaron Marcher (drkhsh)
parent ba2947ae45
commit 98e7324010
1 changed files with 6 additions and 1 deletions

View File

@ -592,7 +592,7 @@ main(void)
{
size_t i;
char status_string[4096];
char *res, *element;
char *res, *element, *status_old;
struct arg argument;
struct sigaction act;
@ -603,6 +603,8 @@ main(void)
dpy = XOpenDisplay(NULL);
XFetchName(dpy, DefaultRootWindow(dpy), &status_old);
while (!done) {
status_string[0] = '\0';
for (i = 0; i < sizeof(args) / sizeof(args[0]); ++i) {
@ -630,6 +632,9 @@ main(void)
delay = 0;
}
XStoreName(dpy, DefaultRootWindow(dpy), status_old);
XSync(dpy, False);
XCloseDisplay(dpy);
return 0;