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

8 lines
151 B
C
Raw Normal View History

2023-09-14 16:27:51 +02:00
/* swaps "tags" (all the clients) with the next/prev tag. */
void
shiftswaptags(const Arg *arg)
{
Arg shifted = shift(arg, 0);
swaptags(&shifted);
}