thide clients to the left, not the right - dwm - [fork] customized build of dwm, the dynamic window manager
HTML git clone git://src.adamsgaard.dk/dwm
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 2b625eb73ed48ce671e497c60b61f4411c50c817
DIR parent 0f1f30daca0eaf0a400fd3f8d274594c07b32a51
HTML Author: Connor Lane Smith <cls@lubutu.com>
Date: Tue, 25 Oct 2011 20:01:18 +0100
hide clients to the left, not the right
Diffstat:
M dwm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/dwm.c b/dwm.c
t@@ -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);
}
}