From 2b625eb73ed48ce671e497c60b61f4411c50c817 Mon Sep 17 00:00:00 2001 From: Connor Lane Smith Date: Tue, 25 Oct 2011 20:01:18 +0100 Subject: [PATCH] hide clients to the left, not the right --- dwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 1.7.10.4