/* Settings */ static void setgaps(int oh, int ov, int ih, int iv) { if (oh < 0) oh = 0; if (ov < 0) ov = 0; if (ih < 0) ih = 0; if (iv < 0) iv = 0; selmon->gappoh = oh; selmon->gappov = ov; selmon->gappih = ih; selmon->gappiv = iv; selmon->pertag->gaps[selmon->pertag->curtag] = ((oh & 0xFF) << 0) | ((ov & 0xFF) << 8) | ((ih & 0xFF) << 16) | ((iv & 0xFF) << 24); arrange(selmon); } static void togglegaps(const Arg *arg) { selmon->pertag->enablegaps[selmon->pertag->curtag] = !selmon->pertag->enablegaps[selmon->pertag->curtag]; updatebarpos(selmon); for (Bar *bar = selmon->bar; bar; bar = bar->next) XMoveResizeWindow(dpy, bar->win, bar->bx, bar->by, bar->bw, bar->bh); drawbarwin(systray->bar); arrange(selmon); } static void defaultgaps(const Arg *arg) { setgaps(gappoh, gappov, gappih, gappiv); } static void incrgaps(const Arg *arg) { setgaps( selmon->gappoh + arg->i, selmon->gappov + arg->i, selmon->gappih + arg->i, selmon->gappiv + arg->i ); } static void incrigaps(const Arg *arg) { setgaps( selmon->gappoh, selmon->gappov, selmon->gappih + arg->i, selmon->gappiv + arg->i ); } static void incrogaps(const Arg *arg) { setgaps( selmon->gappoh + arg->i, selmon->gappov + arg->i, selmon->gappih, selmon->gappiv ); } static void incrohgaps(const Arg *arg) { setgaps( selmon->gappoh + arg->i, selmon->gappov, selmon->gappih, selmon->gappiv ); } static void incrovgaps(const Arg *arg) { setgaps( selmon->gappoh, selmon->gappov + arg->i, selmon->gappih, selmon->gappiv ); } static void incrihgaps(const Arg *arg) { setgaps( selmon->gappoh, selmon->gappov, selmon->gappih + arg->i, selmon->gappiv ); } static void incrivgaps(const Arg *arg) { setgaps( selmon->gappoh, selmon->gappov, selmon->gappih, selmon->gappiv + arg->i ); } static void getgaps(Monitor *m, int *oh, int *ov, int *ih, int *iv, unsigned int *nc) { unsigned int n, oe, ie; oe = ie = m->pertag->enablegaps[m->pertag->curtag]; Client *c; for (n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++); if (n == 1) { oe *= smartgaps_fact; // outer gaps disabled or multiplied when only one client } *oh = m->gappoh*oe; // outer horizontal gap *ov = m->gappov*oe; // outer vertical gap *ih = m->gappih*ie; // inner horizontal gap *iv = m->gappiv*ie; // inner vertical gap *nc = n; // number of clients }