You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
354 B
20 lines
354 B
3 years ago
|
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);
|
||
|
}
|
||
|
|