mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-05 00:00:18 +00:00
15 lines
393 B
C
15 lines
393 B
C
void
|
|
shiftview(const Arg *arg)
|
|
{
|
|
Arg shifted;
|
|
|
|
if(arg->i > 0) // left circular shift
|
|
shifted.ui = (selmon->tagset[selmon->seltags] << arg->i)
|
|
| (selmon->tagset[selmon->seltags] >> (LENGTH(tags) - arg->i));
|
|
|
|
else // right circular shift
|
|
shifted.ui = selmon->tagset[selmon->seltags] >> (- arg->i)
|
|
| selmon->tagset[selmon->seltags] << (LENGTH(tags) + arg->i);
|
|
|
|
view(&shifted);
|
|
} |