You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dwm-flexipatch/patch/insets.c

20 lines
354 B
C

void
setinset(Monitor *m, Inset inset)
{
Bar *bar;
m->inset = inset;
updatebarpos(m);
for (bar = m->bar; bar; bar = bar->next)
XMoveResizeWindow(dpy, bar->win, bar->bx, bar->by, bar->bw, bar->bh);
arrange(m);
}
void
updateinset(const Arg *arg)
{
Inset *inset = (Inset *)arg->v;
for (Monitor *m = mons; m; m = m->next)
setinset(m, *inset);
}