mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-09 01:10:26 +00:00
38 lines
814 B
C
38 lines
814 B
C
void
|
|
setcfact(const Arg *arg)
|
|
{
|
|
float f;
|
|
Client *c;
|
|
|
|
c = selmon->sel;
|
|
|
|
if (!arg || !c || !selmon->lt[selmon->sellt]->arrange)
|
|
return;
|
|
f = arg->f + c->cfact;
|
|
if (arg->f == 0.0)
|
|
f = 1.0;
|
|
else if (f < 0.25 || f > 4.0)
|
|
return;
|
|
c->cfact = f;
|
|
arrange(selmon);
|
|
}
|
|
|
|
#if BSTACK_LAYOUT || BSTACKHORIZ_LAYOUT || CENTEREDMASTER_LAYOUT || CENTEREDFLOATINGMASTER_LAYOUT || COLUMNS_LAYOUT || DECK_LAYOUT || TILE_LAYOUT || MONOCLE_LAYOUT
|
|
void
|
|
getfacts(Monitor *m, float *mf, float *sf)
|
|
{
|
|
unsigned int n;
|
|
float mfacts = 0, sfacts = 0;
|
|
Client *c;
|
|
|
|
for (n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++) {
|
|
if (!m->nmaster || n < m->nmaster)
|
|
mfacts += c->cfact;
|
|
else
|
|
sfacts += c->cfact;
|
|
}
|
|
*mf = mfacts; // total factor of master area
|
|
*sf = sfacts; // total factor of slave area
|
|
}
|
|
#endif
|