commit cbe57ed38c4fddd8b1205225aca0ffb52982a004
Author: Hiltjo Posthuma <[email protected]>
Date: Fri Jan 11 12:00:16 2019 +0100
moveresize path: fix missing step
reported on IRC.
diff --git a/dwm.suckless.org/patches/moveresize/index.md
b/dwm.suckless.org/patches/moveresize/index.md
index db3189ee..d61f1626 100644
--- a/dwm.suckless.org/patches/moveresize/index.md
+++ b/dwm.suckless.org/patches/moveresize/index.md
@@ -29,7 +29,12 @@ Usage
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
}
-2. Insert the bindings into the keys list. Here is an example which uses the
+2. Add a moveresize() function definition in dwm.c below the line:
+ static void movemouse(const Arg *arg);
+
+ static void moveresize(const Arg *arg);
+
+3. Insert the bindings into the keys list. Here is an example which uses the
arrow keys to move (mod+arrow) or resize (mod+shift+arrow) the selected
client: