dwm/patch/shifttag.c

8 lines
122 B
C
Raw Permalink Normal View History

2022-07-04 11:25:28 +02:00
/* Sends a window to the next/prev tag */
void
shifttag(const Arg *arg)
{
2022-07-05 13:51:27 +02:00
Arg shifted = shift(arg, 0);
2022-07-04 11:25:28 +02:00
tag(&shifted);
}