summaryrefslogtreecommitdiff
path: root/.suckless/dwm/shiftview.c
diff options
context:
space:
mode:
Diffstat (limited to '.suckless/dwm/shiftview.c')
-rw-r--r--.suckless/dwm/shiftview.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/.suckless/dwm/shiftview.c b/.suckless/dwm/shiftview.c
new file mode 100644
index 0000000..e82053a
--- /dev/null
+++ b/.suckless/dwm/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);
+}