Q6TUD4XK4U35XVS2VZEGO4OCNXYM5IL4QUW7YDMYRMQQDRJBGSNAC
if (c->isxdg) {
if (!(appid = c->xdg_surface->toplevel->app_id))
appid = broken;
if (!(title = c->xdg_surface->toplevel->title))
title = broken;
} else {
if (!(appid = c->xwayland_surface->class))
appid = broken;
if (!(title = c->xwayland_surface->title))
title = broken;
}
appid = c->isxdg ? c->xdg_surface->toplevel->app_id :
c->xwayland_surface->class;
title = c->isxdg ? c->xdg_surface->toplevel->title :
c->xwayland_surface->title;
if (!appid)
appid = broken;
if (!title)
title = broken;