From cf8aefdf23c53cb3f83428269aa74b6eb47657fd Mon Sep 17 00:00:00 2001 From: Gustaf Rydholm Date: Thu, 8 Jul 2021 15:51:18 +0200 Subject: Latest update --- patches/shiftview.c | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 patches/shiftview.c (limited to 'patches/shiftview.c') diff --git a/patches/shiftview.c b/patches/shiftview.c deleted file mode 100644 index e82053a..0000000 --- a/patches/shiftview.c +++ /dev/null @@ -1,19 +0,0 @@ -/** Function to shift the current view to the left/right - * - * @param: "arg->i" stores the number of tags to shift right (positive value) - * or left (negative value) - */ -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); -} -- cgit v1.2.3-70-g09d2