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/distributetags.c

18 lines
292 B
C

void
distributetags(const Arg *arg)
{
unsigned int ui = 1;
int i = 0;
for (Client *c = selmon->clients; c; c = c->next) {
if (HIDDEN(c))
continue;
if (!(c->tags & TAGMASK))
continue;
c->tags = (ui << i) & TAGMASK;
i = (i + 1) % NUMTAGS;
}
focus(NULL);
arrange(selmon);
}