typedef struct {
const char *prop;
const char *tags;
- Bool swimming;
+ Bool versatile;
} Rule;
typedef struct {
if(c->isbanned)
XMoveWindow(dpy, c->win, c->x, c->y);
c->isbanned = False;
- if(c->swimming)
+ if(c->versatile)
continue;
c->ismax = False;
nx = wax;
drawstatus();
if(!sel)
return;
- if(sel->swimming || lt->arrange == swim)
+ if(sel->versatile || lt->arrange == versatile)
XRaiseWindow(dpy, sel->win);
- if(lt->arrange != swim) {
- if(!sel->swimming)
+ if(lt->arrange != versatile) {
+ if(!sel->versatile)
XLowerWindow(dpy, sel->win);
for(c = nexttiled(clients); c; c = nexttiled(c->next)) {
if(c == sel)
ch.res_name ? ch.res_name : "", c->name);
for(i = 0; i < nrules; i++)
if(regs[i].propregex && !regexec(regs[i].propregex, prop, 1, &tmp, 0)) {
- c->swimming = rule[i].swimming;
+ c->versatile = rule[i].versatile;
for(j = 0; regs[i].tagregex && j < ntags; j++) {
if(!regexec(regs[i].tagregex, tags[j], 1, &tmp, 0)) {
matched = True;
c->tags[i] = seltag[i];
}
-void
-swim(void) {
- Client *c;
-
- for(c = clients; c; c = c->next) {
- if(isvisible(c)) {
- if(c->isbanned)
- XMoveWindow(dpy, c->win, c->x, c->y);
- c->isbanned = False;
- resize(c, c->x, c->y, c->w, c->h, True);
- }
- else {
- c->isbanned = True;
- XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
- }
- }
- if(!sel || !isvisible(sel)) {
- for(c = stack; c && !isvisible(c); c = c->snext);
- focus(c);
- }
- restack();
-}
-
void
tag(Arg *arg) {
unsigned int i;
lt->arrange();
}
-void
-toggleswimming(Arg *arg) {
- if(!sel || lt->arrange == swim)
- return;
- sel->swimming = !sel->swimming;
- lt->arrange();
-}
-
void
toggletag(Arg *arg) {
unsigned int i;
drawstatus();
}
+void
+toggleversatile(Arg *arg) {
+ if(!sel || lt->arrange == versatile)
+ return;
+ sel->versatile = !sel->versatile;
+ lt->arrange();
+}
+
void
toggleview(Arg *arg) {
unsigned int i;
lt->arrange();
}
+void
+versatile(void) {
+ Client *c;
+
+ for(c = clients; c; c = c->next) {
+ if(isvisible(c)) {
+ if(c->isbanned)
+ XMoveWindow(dpy, c->win, c->x, c->y);
+ c->isbanned = False;
+ resize(c, c->x, c->y, c->w, c->h, True);
+ }
+ else {
+ c->isbanned = True;
+ XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
+ }
+ }
+ if(!sel || !isvisible(sel)) {
+ for(c = stack; c && !isvisible(c); c = c->snext);
+ focus(c);
+ }
+ restack();
+}
+
void
view(Arg *arg) {
unsigned int i;