sowm

An itsy bitsy floating window manager (220~ sloc!).
git clone git://mfeller.io/sowm.git
Log | Files | Refs | README | LICENSE

commit 551374039a72fd11a3aa53702dfeddcf5c39397a
parent f7f925cb3639dbbe21a8f655d42c48e86997cc6e
Author: Dylan Araps <dylan.araps@gmail.com>
Date:   Sun, 13 Oct 2019 10:47:06 +0300

docs: update

Diffstat:
Msowm.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/sowm.c b/sowm.c @@ -98,6 +98,8 @@ void notify_enter(XEvent *e) { } void notify_motion(XEvent *e) { + client *c; + if (start.subwindow != None) { int xdiff = e->xbutton.x_root - start.x_root; int ydiff = e->xbutton.y_root - start.y_root; @@ -108,6 +110,8 @@ void notify_motion(XEvent *e) { attr.width + (start.button==3 ? xdiff : 0), attr.height + (start.button==3 ? ydiff : 0)); } + + for WIN if (c->win == start.subwindow) c->f = 0; } void key_grab() {