2007-05-30 12:19:28 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2007-02-19 14:44:05 +01:00
|
|
|
#include "dwm.h"
|
2007-08-19 10:57:02 +02:00
|
|
|
#include <regex.h>
|
|
|
|
#include <stdio.h>
|
2007-02-22 12:00:02 +01:00
|
|
|
#include <stdlib.h>
|
2007-08-22 19:06:35 +02:00
|
|
|
#include <string.h>
|
2007-08-18 14:20:56 +02:00
|
|
|
#include <X11/Xutil.h>
|
2007-02-19 14:44:05 +01:00
|
|
|
|
2007-08-13 20:06:00 +02:00
|
|
|
/* static */
|
|
|
|
|
2007-08-13 19:13:54 +02:00
|
|
|
typedef struct {
|
|
|
|
const char *symbol;
|
|
|
|
void (*arrange)(void);
|
|
|
|
} Layout;
|
|
|
|
|
2007-08-19 10:57:02 +02:00
|
|
|
typedef struct {
|
|
|
|
const char *prop;
|
|
|
|
const char *tags;
|
|
|
|
Bool isfloating;
|
|
|
|
} Rule;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
regex_t *propregex;
|
|
|
|
regex_t *tagregex;
|
|
|
|
} Regs;
|
|
|
|
|
|
|
|
TAGS
|
|
|
|
RULES
|
|
|
|
|
|
|
|
static unsigned int nrules = 0;
|
|
|
|
static unsigned int nlayouts = 0;
|
2007-08-18 13:48:05 +02:00
|
|
|
static unsigned int ltidx = 0; /* default */
|
2007-08-19 10:57:02 +02:00
|
|
|
static Regs *regs = NULL;
|
|
|
|
|
|
|
|
static unsigned int
|
|
|
|
idxoftag(const char *tag) {
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for(i = 0; i < ntags; i++)
|
|
|
|
if(tags[i] == tag)
|
|
|
|
return i;
|
|
|
|
return 0;
|
|
|
|
}
|
2007-02-19 14:44:05 +01:00
|
|
|
|
2007-08-13 19:13:54 +02:00
|
|
|
static void
|
2007-08-13 20:06:00 +02:00
|
|
|
floating(void) { /* default floating layout */
|
2007-08-13 19:13:54 +02:00
|
|
|
Client *c;
|
|
|
|
|
|
|
|
for(c = clients; c; c = c->next)
|
|
|
|
if(isvisible(c))
|
|
|
|
resize(c, c->x, c->y, c->w, c->h, True);
|
|
|
|
}
|
|
|
|
|
2007-02-19 17:00:32 +01:00
|
|
|
LAYOUTS
|
|
|
|
|
|
|
|
/* extern */
|
|
|
|
|
2007-08-19 10:57:02 +02:00
|
|
|
unsigned int blw = 0;
|
|
|
|
|
|
|
|
void
|
|
|
|
applyrules(Client *c) {
|
2007-08-22 19:01:05 +02:00
|
|
|
static char buf[512];
|
2007-08-19 10:57:02 +02:00
|
|
|
unsigned int i, j;
|
|
|
|
regmatch_t tmp;
|
|
|
|
Bool matched = False;
|
|
|
|
XClassHint ch = { 0 };
|
|
|
|
|
|
|
|
/* rule matching */
|
|
|
|
XGetClassHint(dpy, c->win, &ch);
|
2007-08-19 18:50:47 +02:00
|
|
|
snprintf(buf, sizeof buf, "%s:%s:%s",
|
2007-08-19 10:57:02 +02:00
|
|
|
ch.res_class ? ch.res_class : "",
|
|
|
|
ch.res_name ? ch.res_name : "", c->name);
|
|
|
|
for(i = 0; i < nrules; i++)
|
2007-08-19 18:50:47 +02:00
|
|
|
if(regs[i].propregex && !regexec(regs[i].propregex, buf, 1, &tmp, 0)) {
|
2007-08-19 10:57:02 +02:00
|
|
|
c->isfloating = rules[i].isfloating;
|
|
|
|
for(j = 0; regs[i].tagregex && j < ntags; j++) {
|
|
|
|
if(!regexec(regs[i].tagregex, tags[j], 1, &tmp, 0)) {
|
|
|
|
matched = True;
|
|
|
|
c->tags[j] = True;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(ch.res_class)
|
|
|
|
XFree(ch.res_class);
|
|
|
|
if(ch.res_name)
|
|
|
|
XFree(ch.res_name);
|
|
|
|
if(!matched)
|
|
|
|
for(i = 0; i < ntags; i++)
|
|
|
|
c->tags[i] = seltags[i];
|
|
|
|
}
|
|
|
|
|
2007-08-12 13:10:21 +02:00
|
|
|
void
|
2007-08-13 19:13:54 +02:00
|
|
|
arrange(void) {
|
2007-08-12 13:10:21 +02:00
|
|
|
Client *c;
|
|
|
|
|
|
|
|
for(c = clients; c; c = c->next)
|
2007-08-13 19:13:54 +02:00
|
|
|
if(isvisible(c))
|
2007-08-12 13:10:21 +02:00
|
|
|
unban(c);
|
|
|
|
else
|
|
|
|
ban(c);
|
2007-08-18 13:48:05 +02:00
|
|
|
layouts[ltidx].arrange();
|
2007-08-12 13:10:21 +02:00
|
|
|
focus(NULL);
|
|
|
|
restack();
|
|
|
|
}
|
|
|
|
|
2007-08-19 10:57:02 +02:00
|
|
|
void
|
|
|
|
compileregs(void) {
|
|
|
|
unsigned int i;
|
|
|
|
regex_t *reg;
|
|
|
|
|
|
|
|
if(regs)
|
|
|
|
return;
|
|
|
|
nrules = sizeof rules / sizeof rules[0];
|
|
|
|
regs = emallocz(nrules * sizeof(Regs));
|
|
|
|
for(i = 0; i < nrules; i++) {
|
|
|
|
if(rules[i].prop) {
|
|
|
|
reg = emallocz(sizeof(regex_t));
|
|
|
|
if(regcomp(reg, rules[i].prop, REG_EXTENDED))
|
|
|
|
free(reg);
|
|
|
|
else
|
|
|
|
regs[i].propregex = reg;
|
|
|
|
}
|
|
|
|
if(rules[i].tags) {
|
|
|
|
reg = emallocz(sizeof(regex_t));
|
|
|
|
if(regcomp(reg, rules[i].tags, REG_EXTENDED))
|
|
|
|
free(reg);
|
|
|
|
else
|
|
|
|
regs[i].tagregex = reg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-21 11:39:57 +01:00
|
|
|
void
|
2007-08-16 17:55:55 +02:00
|
|
|
focusnext(const char *arg) {
|
2007-02-21 11:39:57 +01:00
|
|
|
Client *c;
|
2007-08-16 17:55:55 +02:00
|
|
|
|
|
|
|
if(!sel)
|
2007-02-21 11:39:57 +01:00
|
|
|
return;
|
2007-08-16 17:55:55 +02:00
|
|
|
for(c = sel->next; c && !isvisible(c); c = c->next);
|
|
|
|
if(!c)
|
|
|
|
for(c = clients; c && !isvisible(c); c = c->next);
|
|
|
|
if(c) {
|
|
|
|
focus(c);
|
|
|
|
restack();
|
2007-02-22 17:51:34 +01:00
|
|
|
}
|
2007-08-16 17:55:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
focusprev(const char *arg) {
|
|
|
|
Client *c;
|
|
|
|
|
|
|
|
if(!sel)
|
|
|
|
return;
|
|
|
|
for(c = sel->prev; c && !isvisible(c); c = c->prev);
|
|
|
|
if(!c) {
|
|
|
|
for(c = clients; c && c->next; c = c->next);
|
|
|
|
for(; c && !isvisible(c); c = c->prev);
|
2007-02-21 11:39:57 +01:00
|
|
|
}
|
|
|
|
if(c) {
|
|
|
|
focus(c);
|
|
|
|
restack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-13 19:13:54 +02:00
|
|
|
const char *
|
|
|
|
getsymbol(void)
|
|
|
|
{
|
2007-08-18 13:48:05 +02:00
|
|
|
return layouts[ltidx].symbol;
|
2007-08-13 19:13:54 +02:00
|
|
|
}
|
|
|
|
|
2007-08-19 10:57:02 +02:00
|
|
|
void
|
|
|
|
initlayouts(void) {
|
|
|
|
unsigned int i, w;
|
|
|
|
|
|
|
|
nlayouts = sizeof layouts / sizeof layouts[0];
|
|
|
|
for(blw = i = 0; i < nlayouts; i++) {
|
|
|
|
w = textw(layouts[i].symbol);
|
|
|
|
if(w > blw)
|
|
|
|
blw = w;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-13 19:13:54 +02:00
|
|
|
Bool
|
|
|
|
isfloating(void) {
|
2007-08-18 13:48:05 +02:00
|
|
|
return layouts[ltidx].arrange == floating;
|
2007-08-13 19:13:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
|
|
|
isarrange(void (*func)())
|
|
|
|
{
|
2007-08-18 13:48:05 +02:00
|
|
|
return func == layouts[ltidx].arrange;
|
2007-08-13 19:13:54 +02:00
|
|
|
}
|
|
|
|
|
2007-08-19 10:57:02 +02:00
|
|
|
Bool
|
|
|
|
isvisible(Client *c) {
|
|
|
|
unsigned int i;
|
2007-02-19 16:40:36 +01:00
|
|
|
|
2007-08-19 10:57:02 +02:00
|
|
|
for(i = 0; i < ntags; i++)
|
|
|
|
if(c->tags[i] && seltags[i])
|
|
|
|
return True;
|
|
|
|
return False;
|
2007-02-19 16:40:36 +01:00
|
|
|
}
|
|
|
|
|
2007-02-21 11:39:57 +01:00
|
|
|
Client *
|
|
|
|
nexttiled(Client *c) {
|
2007-02-22 22:10:16 +01:00
|
|
|
for(; c && (c->isfloating || !isvisible(c)); c = c->next);
|
2007-02-21 11:39:57 +01:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2007-02-19 14:44:05 +01:00
|
|
|
void
|
|
|
|
restack(void) {
|
|
|
|
Client *c;
|
|
|
|
XEvent ev;
|
2007-06-06 11:43:14 +02:00
|
|
|
XWindowChanges wc;
|
2007-02-19 14:44:05 +01:00
|
|
|
|
|
|
|
drawstatus();
|
|
|
|
if(!sel)
|
|
|
|
return;
|
2007-08-17 21:19:07 +02:00
|
|
|
if(sel->isfloating || isfloating())
|
2007-02-19 14:44:05 +01:00
|
|
|
XRaiseWindow(dpy, sel->win);
|
2007-08-17 21:19:07 +02:00
|
|
|
if(!isfloating()) {
|
2007-06-06 11:43:14 +02:00
|
|
|
wc.stack_mode = Below;
|
|
|
|
wc.sibling = barwin;
|
|
|
|
if(!sel->isfloating) {
|
|
|
|
XConfigureWindow(dpy, sel->win, CWSibling | CWStackMode, &wc);
|
|
|
|
wc.sibling = sel->win;
|
|
|
|
}
|
2007-02-19 15:05:29 +01:00
|
|
|
for(c = nexttiled(clients); c; c = nexttiled(c->next)) {
|
2007-02-19 14:44:05 +01:00
|
|
|
if(c == sel)
|
|
|
|
continue;
|
2007-06-06 11:43:14 +02:00
|
|
|
XConfigureWindow(dpy, c->win, CWSibling | CWStackMode, &wc);
|
|
|
|
wc.sibling = c->win;
|
2007-02-19 14:44:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
XSync(dpy, False);
|
|
|
|
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
|
|
|
}
|
|
|
|
|
2007-02-19 18:33:15 +01:00
|
|
|
void
|
2007-02-22 11:42:08 +01:00
|
|
|
setlayout(const char *arg) {
|
2007-08-22 19:01:05 +02:00
|
|
|
unsigned int i;
|
2007-02-19 18:33:15 +01:00
|
|
|
|
2007-02-22 11:42:08 +01:00
|
|
|
if(!arg) {
|
2007-08-18 13:48:05 +02:00
|
|
|
if(++ltidx == nlayouts)
|
|
|
|
ltidx = 0;;
|
2007-02-19 18:33:15 +01:00
|
|
|
}
|
|
|
|
else {
|
2007-08-22 19:01:05 +02:00
|
|
|
for(i = 0; i < nlayouts; i++)
|
2007-08-22 19:06:35 +02:00
|
|
|
if(!strcmp(arg, layouts[i].symbol))
|
2007-08-22 19:01:05 +02:00
|
|
|
break;
|
|
|
|
if(i == nlayouts)
|
2007-02-19 18:33:15 +01:00
|
|
|
return;
|
2007-08-18 13:48:05 +02:00
|
|
|
ltidx = i;
|
2007-02-19 18:33:15 +01:00
|
|
|
}
|
|
|
|
if(sel)
|
2007-08-13 19:13:54 +02:00
|
|
|
arrange();
|
2007-02-19 18:33:15 +01:00
|
|
|
else
|
|
|
|
drawstatus();
|
2007-08-19 10:57:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tag(const char *arg) {
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if(!sel)
|
|
|
|
return;
|
|
|
|
for(i = 0; i < ntags; i++)
|
|
|
|
sel->tags[i] = arg == NULL;
|
|
|
|
i = idxoftag(arg);
|
|
|
|
if(i >= 0 && i < ntags)
|
|
|
|
sel->tags[i] = True;
|
|
|
|
arrange();
|
2007-02-19 18:33:15 +01:00
|
|
|
}
|
|
|
|
|
2007-05-15 12:09:18 +02:00
|
|
|
void
|
|
|
|
togglebar(const char *arg) {
|
2007-05-15 14:06:18 +02:00
|
|
|
if(bpos == BarOff)
|
|
|
|
bpos = (BARPOS == BarOff) ? BarTop : BARPOS;
|
2007-05-15 13:49:43 +02:00
|
|
|
else
|
|
|
|
bpos = BarOff;
|
2007-05-15 12:09:18 +02:00
|
|
|
updatebarpos();
|
2007-08-13 19:13:54 +02:00
|
|
|
arrange();
|
2007-02-22 07:59:13 +01:00
|
|
|
}
|
2007-08-12 13:10:21 +02:00
|
|
|
|
2007-08-19 10:57:02 +02:00
|
|
|
void
|
|
|
|
togglefloating(const char *arg) {
|
2007-08-26 12:53:40 +02:00
|
|
|
if(!sel)
|
2007-08-19 10:57:02 +02:00
|
|
|
return;
|
|
|
|
sel->isfloating = !sel->isfloating;
|
2007-08-22 19:01:05 +02:00
|
|
|
if(sel->isfloating)
|
2007-08-19 10:57:02 +02:00
|
|
|
resize(sel, sel->x, sel->y, sel->w, sel->h, True);
|
|
|
|
arrange();
|
|
|
|
}
|
|
|
|
|
2007-08-12 13:10:21 +02:00
|
|
|
void
|
|
|
|
togglemax(const char *arg) {
|
|
|
|
XEvent ev;
|
|
|
|
|
2007-08-17 21:19:07 +02:00
|
|
|
if(!sel || (!isfloating() && !sel->isfloating) || sel->isfixed)
|
2007-08-12 13:10:21 +02:00
|
|
|
return;
|
|
|
|
if((sel->ismax = !sel->ismax)) {
|
|
|
|
sel->rx = sel->x;
|
|
|
|
sel->ry = sel->y;
|
|
|
|
sel->rw = sel->w;
|
|
|
|
sel->rh = sel->h;
|
|
|
|
resize(sel, wax, way, waw - 2 * sel->border, wah - 2 * sel->border, True);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
resize(sel, sel->rx, sel->ry, sel->rw, sel->rh, True);
|
|
|
|
drawstatus();
|
|
|
|
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
|
|
|
}
|
2007-08-19 10:57:02 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
toggletag(const char *arg) {
|
|
|
|
unsigned int i, j;
|
|
|
|
|
|
|
|
if(!sel)
|
|
|
|
return;
|
|
|
|
i = idxoftag(arg);
|
|
|
|
sel->tags[i] = !sel->tags[i];
|
|
|
|
for(j = 0; j < ntags && !sel->tags[j]; j++);
|
|
|
|
if(j == ntags)
|
|
|
|
sel->tags[i] = True;
|
|
|
|
arrange();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
toggleview(const char *arg) {
|
|
|
|
unsigned int i, j;
|
|
|
|
|
|
|
|
i = idxoftag(arg);
|
|
|
|
seltags[i] = !seltags[i];
|
|
|
|
for(j = 0; j < ntags && !seltags[j]; j++);
|
|
|
|
if(j == ntags)
|
|
|
|
seltags[i] = True; /* cannot toggle last view */
|
|
|
|
arrange();
|
|
|
|
}
|
|
|
|
|
2007-08-19 11:00:47 +02:00
|
|
|
void
|
|
|
|
updatebarpos(void) {
|
|
|
|
XEvent ev;
|
|
|
|
|
|
|
|
wax = sx;
|
|
|
|
way = sy;
|
|
|
|
wah = sh;
|
|
|
|
waw = sw;
|
|
|
|
switch(bpos) {
|
|
|
|
default:
|
|
|
|
wah -= bh;
|
|
|
|
way += bh;
|
|
|
|
XMoveWindow(dpy, barwin, sx, sy);
|
|
|
|
break;
|
|
|
|
case BarBot:
|
|
|
|
wah -= bh;
|
|
|
|
XMoveWindow(dpy, barwin, sx, sy + wah);
|
|
|
|
break;
|
|
|
|
case BarOff:
|
|
|
|
XMoveWindow(dpy, barwin, sx, sy - bh);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
XSync(dpy, False);
|
|
|
|
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
|
|
|
}
|
|
|
|
|
2007-08-19 10:57:02 +02:00
|
|
|
void
|
|
|
|
view(const char *arg) {
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for(i = 0; i < ntags; i++)
|
|
|
|
seltags[i] = arg == NULL;
|
|
|
|
i = idxoftag(arg);
|
|
|
|
if(i >= 0 && i < ntags)
|
|
|
|
seltags[i] = True;
|
|
|
|
arrange();
|
|
|
|
}
|