mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-05 00:00:18 +00:00
18 lines
352 B
C
18 lines
352 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);
|
||
|
}
|