X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=dwm.c;h=0f833b361515a5f51657546bf32bc8c030f98db4;hb=6877205e9d8eed2b839be98c40679fa45a93e0ca;hp=533632a837196d47f2484f56eeb241c9a9ddcc3b;hpb=9fa5ca353801e3537cea354103c3d5a6a53ef76a;p=dwm.git diff --git a/dwm.c b/dwm.c index 533632a..0f833b3 100644 --- a/dwm.c +++ b/dwm.c @@ -259,7 +259,7 @@ applyrules(Client *c) { XGetClassHint(dpy, c->win, &ch); for(i = 0; i < LENGTH(rules); i++) { r = &rules[i]; - if(strstr(c->name, r->title) + if(r->title && strstr(c->name, r->title) || (ch.res_class && r->class && strstr(ch.res_class, r->class)) || (ch.res_name && r->instance && strstr(ch.res_name, r->instance))) { @@ -423,8 +423,11 @@ void configurenotify(XEvent *e) { XConfigureEvent *ev = &e->xconfigure; - if(ev->window == root && (ev->width != sw || ev->height != sh)) + if(ev->window == root && (ev->width != sw || ev->height != sh)) { + sw = ev->width; + sh = ev->height; setgeom(NULL); + } } void