projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4cc0551
)
added general centralization rule for new clients (works around various borken apps)
author
Anselm R.Garbe
<arg@10ksloc.org>
Wed, 16 Aug 2006 13:57:36 +0000
(15:57 +0200)
committer
Anselm R.Garbe
<arg@10ksloc.org>
Wed, 16 Aug 2006 13:57:36 +0000
(15:57 +0200)
client.c
patch
|
blob
|
history
tag.c
patch
|
blob
|
history
diff --git
a/client.c
b/client.c
index 24d38c38f3b7d5aba4dce869972b92420a282bfc..269bf8c649297114c4150b1b99f2d02de4e9ead4 100644
(file)
--- 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);
diff --git
a/tag.c
b/tag.c
index 4b6d513c06c6544c397dd5923cb69bd4deb4dcb3..841d0fc5fac5ed2fc633f9cbb936a5cc3431360d 100644
(file)
--- a/
tag.c
+++ b/
tag.c
@@
-281,7
+281,10
@@
void
togglemode(Arg *arg)
{
arrange = arrange == dofloat ? dotile : dofloat;
- arrange(NULL);
+ if(sel)
+ arrange(NULL);
+ else
+ drawstatus();
}
void