From ac503169ed2ee1006377a53623bce8335cea90ff Mon Sep 17 00:00:00 2001 From: Josh Date: Sat, 21 Dec 2024 19:10:56 -0500 Subject: upgraded old version to 6.5 --- shiftview.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 shiftview.c (limited to 'shiftview.c') diff --git a/shiftview.c b/shiftview.c new file mode 100644 index 0000000..e82053a --- /dev/null +++ b/shiftview.c @@ -0,0 +1,19 @@ +/** 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