diff options
author | Marvin Borner | 2020-06-11 18:20:45 +0200 |
---|---|---|
committer | Marvin Borner | 2020-06-11 18:20:45 +0200 |
commit | 7f023fcd382dc39f9589d1d9887d25a1b3b787dd (patch) | |
tree | 44c9a6703afa3ef5e07ec0bcf2606a84f6cfe3f7 /.repos/dwm/shiftview.c | |
parent | ffbd8401bc7b0c62d9b928df38d05a2d42fc5927 (diff) |
I REALLY need to stop this! :D
Diffstat (limited to '.repos/dwm/shiftview.c')
-rw-r--r-- | .repos/dwm/shiftview.c | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/.repos/dwm/shiftview.c b/.repos/dwm/shiftview.c new file mode 100644 index 0000000..a52ccd7 --- /dev/null +++ b/.repos/dwm/shiftview.c @@ -0,0 +1,68 @@ +/** 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 a; + Client *c; + unsigned visible = 0; + int i = arg->i; + int count = 0; + int nextseltags, curseltags = selmon->tagset[selmon->seltags]; + + do { + if(i > 0) // left circular shift + nextseltags = (curseltags << i) | (curseltags >> (LENGTH(tags) - i)); + + else // right circular shift + nextseltags = curseltags >> (- i) | (curseltags << (LENGTH(tags) + i)); + + // Check if tag is visible + for (c = selmon->clients; c && !visible; c = c->next) + if (nextseltags & c->tags) { + visible = 1; + break; + } + i += arg->i; + } while (!visible && ++count < 10); + + if (count < 10) { + a.i = nextseltags; + view(&a); + } +} + +void +shifttag(const Arg *arg) +{ + Arg a; + Client *c; + unsigned visible = 0; + int i = arg->i; + int count = 0; + int nextseltags, curseltags = selmon->tagset[selmon->seltags]; + + do { + if(i > 0) // left circular shift + nextseltags = (curseltags << i) | (curseltags >> (LENGTH(tags) - i)); + + else // right circular shift + nextseltags = curseltags >> (- i) | (curseltags << (LENGTH(tags) + i)); + + // Check if tag is visible + for (c = selmon->clients; c && !visible; c = c->next) + if (nextseltags & c->tags) { + visible = 1; + break; + } + i += arg->i; + } while (!visible && ++count < 10); + + if (count < 10) { + a.i = nextseltags; + tag(&a); + } +} |