[wiki] [sites] added stackmfact patch || Unia

From: <git_AT_suckless.org>
Date: Tue, 26 Mar 2013 00:58:22 +0100

commit cf977c59e351d1685c3a431186c3e7af4e90833d
Author: Unia <jthidskes_AT_live.nl>
Date: Tue Mar 26 00:58:35 2013 +0100

    added stackmfact patch

diff --git a/dwm.suckless.org/patches/dwm-6.0-smfact.diff b/dwm.suckless.org/patches/dwm-6.0-smfact.diff
new file mode 100644
index 0000000..82e7f9d
--- /dev/null
+++ b/dwm.suckless.org/patches/dwm-6.0-smfact.diff
_AT_@ -0,0 +1,101 @@
+--- config.def.h 2011-12-19 16:02:46.000000000 +0100
++++ config.h 2013-03-26 00:40:52.933242100 +0100
+_AT_@ -24,6 +24,7 @@ static const Rule rules[] = {
+
+ /* layout(s) */
+ static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
++static const float smfact = 0.00; /* factor of tiled clients [0.05..0.95] */
+ static const int nmaster = 1; /* number of clients in master area */
+ static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
+
+_AT_@ -60,6 +61,8 @@ static Key keys[] = {
+ { MODKEY, XK_d, incnmaster, {.i = -1 } },
+ { MODKEY, XK_h, setmfact, {.f = -0.05} },
+ { MODKEY, XK_l, setmfact, {.f = +0.05} },
++ { MODKEY|ShiftMask, XK_h, setsmfact, {.f = -0.05} },
++ { MODKEY|ShiftMask, XK_l, setsmfact, {.f = +0.05} },
+ { MODKEY, XK_Return, zoom, {0} },
+ { MODKEY, XK_Tab, view, {0} },
+ { MODKEY|ShiftMask, XK_c, killclient, {0} },
+--- dwm.c 2013-03-25 21:21:09.476413028 +0100
++++ dwm.c 2013-03-26 00:39:01.406577437 +0100
+_AT_@ -69,6 +69,7 @@ typedef union {
+ int i;
+ unsigned int ui;
+ float f;
++ float sf;
+ const void *v;
+ } Arg;
+
+_AT_@ -127,6 +128,7 @@ typedef struct {
+ struct Monitor {
+ char ltsymbol[16];
+ float mfact;
++ float smfact;
+ int nmaster;
+ int num;
+ int by; /* bar geometry */
+_AT_@ -220,6 +222,7 @@ static void setfocus(Client *c);
+ static void setfullscreen(Client *c, Bool fullscreen);
+ static void setlayout(const Arg *arg);
+ static void setmfact(const Arg *arg);
++static void setsmfact(const Arg *arg);
+ static void setup(void);
+ static void showhide(Client *c);
+ static void sigchld(int unused);
+_AT_@ -651,6 +654,7 @@ createmon(void) {
+ die("fatal: could not malloc() %u bytes
", sizeof(Monitor));
+ m->tagset[0] = m->tagset[1] = 1;
+ m->mfact = mfact;
++ m->smfact = smfact;
+ m->nmaster = nmaster;
+ m->showbar = showbar;
+ m->topbar = topbar;
+_AT_@ -1581,6 +1585,19 @@ setmfact(const Arg *arg) {
+ }
+
+ void
++setsmfact(const Arg *arg) {
++ float sf;
++
++ if(!arg || !selmon->lt[selmon->sellt]->arrange)
++ return;
++ sf = arg->sf < 1.0 ? arg->sf + selmon->smfact : arg->sf - 1.0;
++ if(sf < 0 || sf > 0.95)
++ return;
++ selmon->smfact = sf;
++ arrange(selmon);
++}
++
++void
+ setup(void) {
+ XSetWindowAttributes wa;
+
+_AT_@ -1703,7 +1720,7 @@ textnw(const char *text, unsigned int le
+
+ void
+ tile(Monitor *m) {
+- unsigned int i, n, h, mw, my, ty;
++ unsigned int i, n, h, smh, mw, my, ty;
+ Client *c;
+
+ for(n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
+_AT_@ -1721,9 +1738,16 @@ tile(Monitor *m) {
+ my += HEIGHT(c);
+ }
+ else {
+- h = (m->wh - ty) / (n - i);
++ smh = m->wh * m->smfact;
++ if(!(nexttiled(c->next)))
++ h = (m->wh - ty) / (n - i);
++ else
++ h = (m->wh - smh - 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);
++ if(!(nexttiled(c->next)))
++ ty += HEIGHT(c) - c->bw + smh;
++ else
++ ty += HEIGHT(c) - c->bw;
+ }
+ }
+
diff --git a/dwm.suckless.org/patches/stackmfact.md b/dwm.suckless.org/patches/stackmfact.md
new file mode 100644
index 0000000..f902890
--- /dev/null
+++ b/dwm.suckless.org/patches/stackmfact.md
_AT_@ -0,0 +1,43 @@
+\stackmfact
+===========
+
+Description
+-----------
+`stackmfact` enables you to vertically resize clients in the stack, like the regular mfact enables you to horizontally resize the master client(s).
+
+
+ smfact 0.00 (original behaviour):
+ +-----------------+-------+
+ | | |
+ | | S1 |
+ | | |
+ | M +=======|
+ | | |
+ | | S2 |
+ | | |
+ +-----------------+-------+
+
+
+ smfact > 0.00 (new behaviour):
+ +-----------------+-------+
+ | | S1 |
+ | +=======+
+ | | |
+ | M | |
+ | | |
+ | | S2 |
+ | | |
+ +-----------------+-------+
+
+Issues
+------
+* with more than X clients, increasing smfact too much will crash DWM.
+* negative smfact can't properly function in the way smfact is implemented.
+
+Download
+--------
+* [dwm-6.0-smfact.diff](dwm-6.0-smfact.diff)
+
+Author
+------
+* Jente Hidskes - `<jthidskes at outlook dot com>`
Received on Tue Mar 26 2013 - 00:58:22 CET

This archive was generated by hypermail 2.3.0 : Tue Mar 26 2013 - 01:00:13 CET