index.md (1233B)
1 fullgaps 2 ======== 3 4 Description 5 ----------- 6 This patch adds gaps between client windows. It is similar to [gaps](../gaps/), 7 but contains additional functionality: 8 * it also adds outer gaps (between the clients and the screen frame), as well 9 as a gap between the master and stack area, 10 * it adds keybindings to change the gap size at runtime: [Alt]+[-]/[Alt]+[=] to 11 decrease/increase the gap size and [Alt]+[Shift]+[=] to set it to zero. 12 13 The configuration variable `gappx` contains the default gap size. 14 15 Download 16 -------- 17 * [dwm-fullgaps-6.2.diff](dwm-fullgaps-6.2.diff) 18 * [dwm-fullgaps-20200508-7b77734.diff](dwm-fullgaps-20200508-7b77734.diff) 19 20 The following patch allows for gaps to be toggled, and also uses a `Gap` struct 21 to contain the gap information, in anticipation of this being used with 22 [pertag](../pertag/). (To use this, apply the patch *instead* of the default 23 fullgaps patch.) 24 25 [Alt]+[Shift]+[=] to toggle. [Alt]+[Shift]+[-] to reset to `config.h` defaults. 26 27 * [dwm-fullgaps-toggle-20200830.diff](dwm-fullgaps-toggle-20200830.diff) 28 29 Author 30 ------ 31 * Maciej Janicki <mail@macjanicki.eu> 32 * David Julien <swy7ch@protonmail.com> (20200504-b2e1dfc port) 33 * Klein Bottle <kleinbottle4@gmail.com> (dwm-fullgaps-toggle...)