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.
46 lines
1.2 KiB
46 lines
1.2 KiB
3 years ago
|
void
|
||
|
setborderpx(const Arg *arg)
|
||
|
{
|
||
|
Client *c;
|
||
|
int prev_borderpx = selmon->borderpx;
|
||
|
|
||
|
if (arg->i == 0)
|
||
|
selmon->borderpx = borderpx;
|
||
|
else if (selmon->borderpx + arg->i < 0)
|
||
|
selmon->borderpx = 0;
|
||
|
else
|
||
|
selmon->borderpx += arg->i;
|
||
|
|
||
|
#if BAR_BORDER_PATCH
|
||
|
for (bar = selmon->bar; bar; bar = bar->next) {
|
||
|
bar->bh = bar->bh - 2 * bar->borderpx + 2 * selmon->borderpx;
|
||
|
bar->borderpx = selmon->borderpx;
|
||
|
}
|
||
|
updatebarpos(selmon);
|
||
|
for (bar = selmon->bar; bar; bar = bar->next)
|
||
|
XMoveResizeWindow(dpy, bar->win, bar->bx, bar->by, bar->bw, bar->bh);
|
||
|
#endif // BAR_BORDER_PATCH
|
||
|
|
||
|
for (c = selmon->clients; c; c = c->next)
|
||
|
{
|
||
|
if (c->bw + arg->i < 0)
|
||
|
c->bw = 0;
|
||
|
else
|
||
|
c->bw = selmon->borderpx;
|
||
|
|
||
|
if (c->isfloating || !selmon->lt[selmon->sellt]->arrange)
|
||
|
{
|
||
|
if (arg->i != 0 && prev_borderpx + arg->i >= 0)
|
||
|
resize(c, c->x, c->y, c->w-(arg->i*2), c->h-(arg->i*2), 0);
|
||
|
else if (arg->i != 0)
|
||
|
resizeclient(c, c->x, c->y, c->w, c->h);
|
||
|
else if (prev_borderpx > borderpx)
|
||
|
resize(c, c->x, c->y, c->w + 2*(prev_borderpx - borderpx), c->h + 2*(prev_borderpx - borderpx), 0);
|
||
|
else if (prev_borderpx < borderpx)
|
||
|
resize(c, c->x, c->y, c->w - 2*(borderpx - prev_borderpx), c->h - 2*(borderpx - prev_borderpx), 0);
|
||
|
}
|
||
|
}
|
||
|
arrange(selmon);
|
||
|
}
|
||
|
|