suckless/dwm/patch/shifttag.c
2025-05-25 17:58:23 +02:00

7 lines
122 B
C

/* Sends a window to the next/prev tag */
void
shifttag(const Arg *arg)
{
Arg shifted = shift(arg, 0);
tag(&shifted);
}