condense appid/title logic

This commit is contained in:
Devin J. Pohly 2020-07-21 18:47:30 -04:00
parent a21c9378ee
commit a10357fae0
1 changed files with 8 additions and 11 deletions

19
dwl.c
View File

@ -281,17 +281,14 @@ applyrules(Client *c)
/* rule matching */
c->isfloating = 0;
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;
for (r = rules; r < END(rules); r++) {
if ((!r->title || strstr(title, r->title))