sites

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

index.md (1335B)


      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.4.diff](dwm-fullgaps-6.4.diff)
     18 * [dwm-fullgaps-6.2.diff](dwm-fullgaps-6.2.diff)
     19 * [dwm-fullgaps-20200508-7b77734.diff](dwm-fullgaps-20200508-7b77734.diff)
     20 
     21 The following patch allows for gaps to be toggled, and also uses a `Gap` struct
     22 to contain the gap information, in anticipation of this being used with
     23 [pertag](../pertag/). (To use this, apply the patch *instead* of the default
     24 fullgaps patch.)
     25 
     26 [Alt]+[Shift]+[=] to toggle. [Alt]+[Shift]+[-] to reset to `config.h` defaults.
     27 
     28 * [dwm-fullgaps-toggle-20200830.diff](dwm-fullgaps-toggle-20200830.diff)
     29 
     30 Author
     31 ------
     32 * Maciej Janicki <mail@macjanicki.eu>
     33 * David Julien <swy7ch@protonmail.com> (20200504-b2e1dfc port)
     34 * Klein Bottle <kleinbottle4@gmail.com> (dwm-fullgaps-toggle...)
     35 * Luka Rapava <luka.rapava2004@gmail.com> (6.4 port)