index.md (1254B)
1 push up/down 2 ============ 3 4 Description 5 ----------- 6 `pushup` and `pushdown` provide a way to move clients inside the clients list. 7 8 #include "push.c" 9 10 static Key keys[] = { 11 ... 12 { MODKEY|ControlMask, XK_j, pushdown, {0} }, 13 { MODKEY|ControlMask, XK_k, pushup, {0} }, 14 15 `push_no_master` is the same as the regular `push` patch, but it does not push 16 up nor push down into the master area. We have zoom() for that. 17 18 Download 19 -------- 20 * [dwm-push-20160731-56a31dc.diff](dwm-push-20160731-56a31dc.diff) 21 * [dwm-push-6.0.diff](dwm-push-6.0.diff) (1332b) - 2012/4/6 22 * [dwm-push-6.1.diff](dwm-push-6.1.diff) (1402b) - 2014/2/9 23 * [dwm-push-20201112-61bb8b2.diff](dwm-push-20201112-61bb8b2.diff) (6.2) 24 * [dwm-push\_no\_master-6.0.diff](dwm-push_no_master-6.0.diff) 25 * [dwm-push\_no\_master-6.1.diff](dwm-push_no_master-6.1.diff) - 2015/11/21 26 * [dwm-push\_no\_master-6.2.diff](dwm-push_no_master-6.2.diff) - 2020/03/08 27 28 Note 29 ---- 30 This patch seems to be equivalent to the [movestack](../movestack/) patch. 31 32 Author 33 ------ 34 * Unknown? 35 * Updated regular version for 6.2 (61bb8b2) Alex Cole <ajzcole@airmail.cc> 36 * Updated by Jan Christoph Ebersbach <jceb@e-jc.de> 37 * push\_no\_master by Jente Hidskes <jthidskes@outlook.com> 38