Adding shifttagclients patch ref. #270
This commit is contained in:
@@ -235,6 +235,9 @@
|
||||
#if SHIFTTAG_PATCH
|
||||
#include "shifttag.c"
|
||||
#endif
|
||||
#if SHIFTTAGCLIENTS_PATCH
|
||||
#include "shifttagclients.c"
|
||||
#endif
|
||||
#if SHIFTVIEW_PATCH
|
||||
#include "shiftview.c"
|
||||
#endif
|
||||
|
@@ -237,6 +237,9 @@
|
||||
#if SHIFTTAG_PATCH
|
||||
#include "shifttag.h"
|
||||
#endif
|
||||
#if SHIFTTAGCLIENTS_PATCH
|
||||
#include "shifttagclients.h"
|
||||
#endif
|
||||
#if SHIFTVIEW_PATCH
|
||||
#include "shiftview.h"
|
||||
#endif
|
||||
|
49
patch/shifttagclients.c
Normal file
49
patch/shifttagclients.c
Normal file
@@ -0,0 +1,49 @@
|
||||
/* Sends a window to the next/prev tag that has a client, else it moves it to the next/prev one. */
|
||||
void
|
||||
shifttagclients(const Arg *arg)
|
||||
{
|
||||
Arg shifted;
|
||||
Client *c;
|
||||
unsigned int tagmask = 0;
|
||||
|
||||
#if TAGSYNC_PATCH
|
||||
Monitor *origselmon = selmon;
|
||||
for (selmon = mons; selmon; selmon = selmon->next)
|
||||
#endif // TAGSYNC_PATCH
|
||||
for (c = selmon->clients; c; c = c->next) {
|
||||
if (c == selmon->sel)
|
||||
continue;
|
||||
#if SCRATCHPADS_PATCH && !RENAMED_SCRATCHPADS_PATCH
|
||||
if (!(c->tags & SPTAGMASK))
|
||||
tagmask = tagmask | c->tags;
|
||||
#elif SCRATCHPAD_ALT_1_PATCH
|
||||
if (!(c->tags & SCRATCHPAD_MASK))
|
||||
tagmask = tagmask | c->tags;
|
||||
#else
|
||||
tagmask = tagmask | c->tags;
|
||||
#endif // SCRATCHPADS_PATCH
|
||||
}
|
||||
#if TAGSYNC_PATCH
|
||||
selmon = origselmon;
|
||||
#endif // TAGSYNC_PATCH
|
||||
|
||||
#if SCRATCHPADS_PATCH && !RENAMED_SCRATCHPADS_PATCH
|
||||
shifted.ui = selmon->tagset[selmon->seltags] & ~SPTAGMASK;
|
||||
#else
|
||||
shifted.ui = selmon->tagset[selmon->seltags];
|
||||
#endif // SCRATCHPADS_PATCH
|
||||
|
||||
do {
|
||||
if (arg->i > 0) // left circular shift
|
||||
shifted.ui = (shifted.ui << arg->i)
|
||||
| (shifted.ui >> (NUMTAGS - arg->i));
|
||||
else // right circular shift
|
||||
shifted.ui = (shifted.ui >> -arg->i)
|
||||
| (shifted.ui << (NUMTAGS + arg->i));
|
||||
#if SCRATCHPADS_PATCH && !RENAMED_SCRATCHPADS_PATCH
|
||||
shifted.ui &= ~SPTAGMASK;
|
||||
#endif // SCRATCHPADS_PATCH
|
||||
} while (tagmask && !(shifted.ui & tagmask));
|
||||
|
||||
tag(&shifted);
|
||||
}
|
1
patch/shifttagclients.h
Normal file
1
patch/shifttagclients.h
Normal file
@@ -0,0 +1 @@
|
||||
static void shifttagclients(const Arg *arg);
|
@@ -10,6 +10,8 @@ shiftviewclients(const Arg *arg)
|
||||
for (selmon = mons; selmon; selmon = selmon->next)
|
||||
#endif // TAGSYNC_PATCH
|
||||
for (c = selmon->clients; c; c = c->next) {
|
||||
if (c == selmon->sel)
|
||||
continue;
|
||||
#if SCRATCHPADS_PATCH && !RENAMED_SCRATCHPADS_PATCH
|
||||
if (!(c->tags & SPTAGMASK))
|
||||
tagmask = tagmask | c->tags;
|
||||
@@ -44,4 +46,3 @@ shiftviewclients(const Arg *arg)
|
||||
|
||||
view(&shifted);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user