suckless-utils/dwm-flexipatch/patch/shifttagclients.c

8 lines
187 B
C
Raw Permalink Normal View History

2023-09-14 16:27:51 +02:00
/* Sends a window to the next/prev tag that has a client, else it moves it to the next/prev one. */
void
shifttagclients(const Arg *arg)
{
Arg shifted = shift(arg, 1);
tag(&shifted);
}