sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit cbe57ed38c4fddd8b1205225aca0ffb52982a004
parent bd500476ffd5d61a41b207a7f11788923a7b6376
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Fri, 11 Jan 2019 12:00:16 +0100

moveresize path: fix missing step

reported on IRC.

Diffstat:
Mdwm.suckless.org/patches/moveresize/index.md | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git 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: