sites

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

commit 22e270bf8e1ff0529323b5ed974b03f74589fcdb
parent caa1a50bc4a75ffb2ab376434fb02259abcf8458
Author: Brandon Mulcahy <brandon@jangler.info>
Date:   Tue,  7 Jul 2015 20:13:13 -0400

Add dwm-6.0-tilegap patch

Diffstat:
Adwm.suckless.org/patches/dwm-6.0-tilegap.diff | 57+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Adwm.suckless.org/patches/tilegap.md | 16++++++++++++++++
2 files changed, 73 insertions(+), 0 deletions(-)

diff --git a/dwm.suckless.org/patches/dwm-6.0-tilegap.diff b/dwm.suckless.org/patches/dwm-6.0-tilegap.diff @@ -0,0 +1,57 @@ +diff --git a/config.def.h b/config.def.h +index 77ff358..14d2826 100644 +--- a/config.def.h ++++ b/config.def.h +@@ -9,6 +9,7 @@ static const char selbordercolor[] = "#005577"; + static const char selbgcolor[] = "#005577"; + static const char selfgcolor[] = "#eeeeee"; + static const unsigned int borderpx = 1; /* border pixel of windows */ ++static const unsigned int gappx = 18; /* gap pixel between windows */ + static const unsigned int snap = 32; /* snap pixel */ + static const Bool showbar = True; /* False means no bar */ + static const Bool topbar = True; /* False means bottom bar */ +diff --git a/dwm.c b/dwm.c +index 1d78655..41c72ff 100644 +--- a/dwm.c ++++ b/dwm.c +@@ -1703,27 +1703,30 @@ textnw(const char *text, unsigned int len) { + + void + tile(Monitor *m) { +- unsigned int i, n, h, mw, my, ty; ++ unsigned int i, n, h, mw, my, ty, ns; + Client *c; + + for(n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++); + if(n == 0) + return; + +- if(n > m->nmaster) ++ if (n > m->nmaster) { + mw = m->nmaster ? m->ww * m->mfact : 0; +- else ++ ns = m->nmaster > 0 ? 2 : 1; ++ } else { + mw = m->ww; +- for(i = my = ty = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++) ++ ns = 1; ++ } ++ for(i = 0, my = ty = gappx, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++) + if(i < m->nmaster) { +- h = (m->wh - my) / (MIN(n, m->nmaster) - i); +- resize(c, m->wx, m->wy + my, mw - (2*c->bw), h - (2*c->bw), False); +- my += HEIGHT(c); ++ h = (m->wh - my) / (MIN(n, m->nmaster) - i) - gappx; ++ resize(c, m->wx + gappx, m->wy + my, mw - (2*c->bw) - gappx*(5-ns)/2, h - (2*c->bw), False); ++ my += HEIGHT(c) + gappx; + } + else { +- h = (m->wh - ty) / (n - i); +- resize(c, m->wx + mw, m->wy + ty, m->ww - mw - (2*c->bw), h - (2*c->bw), False); +- ty += HEIGHT(c); ++ h = (m->wh - ty) / (n - i) - gappx; ++ resize(c, m->wx + mw + gappx/ns, m->wy + ty, m->ww - mw - (2*c->bw) - gappx*(5-ns)/2, h - (2*c->bw), False); ++ ty += HEIGHT(c) + gappx; + } + } + diff --git a/dwm.suckless.org/patches/tilegap.md b/dwm.suckless.org/patches/tilegap.md @@ -0,0 +1,16 @@ +tilegap +======= + +Description +----------- +Window gaps for the tile layout done right (in my humble opinion). The +same size gap between master and stack, window and window, and window +and screen edge. Size configurable in config.h. + +Download +-------- +- [dwm-6.0-tilegap.diff](dwm-6.0-tilegap.diff) (948b) (20150707) + +Author +------ +- Brandon Mulcahy - <brandon@jangler.info>