X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=client.c;h=269bf8c649297114c4150b1b99f2d02de4e9ead4;hb=a20b10d01fab9e844ba7cd2cf694b45f61b89f7c;hp=24d38c38f3b7d5aba4dce869972b92420a282bfc;hpb=4cc0551948074c82c5b66231f407fd9c142b12cc;p=dwm.git diff --git a/client.c b/client.c index 24d38c3..269bf8c 100644 --- a/client.c +++ b/client.c @@ -187,7 +187,7 @@ killclient(Arg *arg) void manage(Window w, XWindowAttributes *wa) { - Client *c; + Client *c, *tc; Window trans; XSetWindowAttributes twa; @@ -258,6 +258,15 @@ manage(Window w, XWindowAttributes *wa) c->maxw == c->minw && c->maxh == c->minh); settitle(c); + if(trans && (tc = getclient(trans))) { + c->x = (tc->x + tc->w / 2) - (c->w / 2); + c->y = (tc->y + tc->h / 2) - (c->h / 2); + } + else { + c->x = (sw / 2) - (c->w / 2); + c->y = ((sh - bh) / 2) - (c->h / 2) + bh; + } + if(isvisible(c)) sel = c; arrange(NULL);