mirror of
https://github.com/eRgo35/dwm.git
synced 2025-12-16 21:56:10 +01:00
initial commit
This commit is contained in:
24
patch/cfacts.c
Normal file
24
patch/cfacts.c
Normal file
@@ -0,0 +1,24 @@
|
||||
void
|
||||
setcfact(const Arg *arg)
|
||||
{
|
||||
float f;
|
||||
Client *c;
|
||||
|
||||
c = selmon->sel;
|
||||
|
||||
if (!arg || !c || !selmon->lt[selmon->sellt]->arrange)
|
||||
return;
|
||||
if (!arg->f)
|
||||
f = 1.0;
|
||||
else if (arg->f > 4.0) // set fact absolutely
|
||||
f = arg->f - 4.0;
|
||||
else
|
||||
f = arg->f + c->cfact;
|
||||
if (f < 0.25)
|
||||
f = 0.25;
|
||||
else if (f > 4.0)
|
||||
f = 4.0;
|
||||
c->cfact = f;
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user