From: Connor Lane Smith Date: Tue, 25 Oct 2011 19:01:18 +0000 (+0100) Subject: hide clients to the left, not the right X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=2b625eb73ed48ce671e497c60b61f4411c50c817 hide clients to the left, not the right --- diff --git a/dwm.c b/dwm.c index 39b0a51..d108e12 100644 --- a/dwm.c +++ b/dwm.c @@ -1597,7 +1597,7 @@ showhide(Client *c) { } else { /* hide clients bottom up */ showhide(c->snext); - XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y); + XMoveWindow(dpy, c->win, c->w * -2, c->y); } }