2022-07-04 11:07:36 +00: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)
|
|
|
|
{
|
2022-07-05 11:51:27 +00:00
|
|
|
Arg shifted = shift(arg, 1);
|
2022-07-04 11:07:36 +00:00
|
|
|
tag(&shifted);
|
|
|
|
}
|