index.md - sites - public wiki contents of suckless.org | |
git clone git://git.suckless.org/sites | |
Log | |
Files | |
Refs | |
--- | |
index.md (1344B) | |
--- | |
1 movestack | |
2 ========= | |
3 | |
4 Description | |
5 ----------- | |
6 This plugin allows you to move clients around in the stack and swap them… | |
7 the master. It emulates the behavior off mod+shift+j and mod+shift+k in … | |
8 movestack(+1) will swap the client with the current focus with the next … | |
9 movestack(-1) will swap the client with the current focus with the previ… | |
10 client. | |
11 | |
12 Usage | |
13 ----- | |
14 1. Download the patch and apply according to the [general instructions](… | |
15 2. Include the `movestack.c` source file and add keys that call movestac… | |
16 Example from `config.default.h`: | |
17 | |
18 #include "movestack.c" | |
19 static Key keys[] = { | |
20 /* modifier key function … | |
21 ... | |
22 { MODKEY|ShiftMask, XK_j, movestack, … | |
23 { MODKEY|ShiftMask, XK_k, movestack, … | |
24 ... | |
25 | |
26 Download | |
27 -------- | |
28 * [dwm-movestack-20211115-a786211.diff](dwm-movestack-20211115-a786211.d… | |
29 * [dwm-movestack-6.1.diff](dwm-movestack-6.1.diff) | |
30 * [dwm-movestack-5.8.2.diff](dwm-movestack-5.8.2.diff) | |
31 | |
32 Author | |
33 ------ | |
34 * Niki Yoshiuchi - `<`[email protected]`>` | |
35 | |
36 Contributors | |
37 ------------ | |
38 * Moritz Wilhelmy (fix to work with dwm 5.8) - <moritz plus suckless at … | |
39 | |
40 Note | |
41 ---- | |
42 This patch seems to be equivalent to the [push](../push/) patch. |