|
|
@ -99,9 +99,10 @@ typedef struct {
|
|
|
|
const char *arg;
|
|
|
|
const char *arg;
|
|
|
|
} Key;
|
|
|
|
} Key;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct Monitor Monitor;
|
|
|
|
typedef struct {
|
|
|
|
typedef struct {
|
|
|
|
const char *symbol;
|
|
|
|
const char *symbol;
|
|
|
|
void (*arrange)(void);
|
|
|
|
void (*arrange)(Monitor *);
|
|
|
|
} Layout;
|
|
|
|
} Layout;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
typedef struct {
|
|
|
@ -116,14 +117,16 @@ typedef struct {
|
|
|
|
regex_t *tagregex;
|
|
|
|
regex_t *tagregex;
|
|
|
|
} Regs;
|
|
|
|
} Regs;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
struct Monitor {
|
|
|
|
Window barwin;
|
|
|
|
unsigned int id;
|
|
|
|
int sx, sy, sw, sh, wax, way, wah, waw;
|
|
|
|
int sx, sy, sw, sh, wax, way, wah, waw;
|
|
|
|
|
|
|
|
double mwfact;
|
|
|
|
Bool *seltags;
|
|
|
|
Bool *seltags;
|
|
|
|
Bool *prevtags;
|
|
|
|
Bool *prevtags;
|
|
|
|
Layout *layout;
|
|
|
|
Layout *layout;
|
|
|
|
double mwfact;
|
|
|
|
Window barwin;
|
|
|
|
} Monitor;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* function declarations */
|
|
|
|
/* function declarations */
|
|
|
|
void applyrules(Client *c);
|
|
|
|
void applyrules(Client *c);
|
|
|
@ -148,7 +151,7 @@ void *emallocz(unsigned int size);
|
|
|
|
void enternotify(XEvent *e);
|
|
|
|
void enternotify(XEvent *e);
|
|
|
|
void eprint(const char *errstr, ...);
|
|
|
|
void eprint(const char *errstr, ...);
|
|
|
|
void expose(XEvent *e);
|
|
|
|
void expose(XEvent *e);
|
|
|
|
void floating(void); /* default floating layout */
|
|
|
|
void floating(Monitor *m); /* default floating layout */
|
|
|
|
void focus(Client *c);
|
|
|
|
void focus(Client *c);
|
|
|
|
void focusin(XEvent *e);
|
|
|
|
void focusin(XEvent *e);
|
|
|
|
void focusnext(const char *arg);
|
|
|
|
void focusnext(const char *arg);
|
|
|
@ -188,7 +191,7 @@ void spawn(const char *arg);
|
|
|
|
void tag(const char *arg);
|
|
|
|
void tag(const char *arg);
|
|
|
|
unsigned int textnw(const char *text, unsigned int len);
|
|
|
|
unsigned int textnw(const char *text, unsigned int len);
|
|
|
|
unsigned int textw(const char *text);
|
|
|
|
unsigned int textw(const char *text);
|
|
|
|
void tile(void);
|
|
|
|
void tile(Monitor *m);
|
|
|
|
void togglebar(const char *arg);
|
|
|
|
void togglebar(const char *arg);
|
|
|
|
void togglefloating(const char *arg);
|
|
|
|
void togglefloating(const char *arg);
|
|
|
|
void toggletag(const char *arg);
|
|
|
|
void toggletag(const char *arg);
|
|
|
@ -304,7 +307,7 @@ arrange(void) {
|
|
|
|
else
|
|
|
|
else
|
|
|
|
ban(c);
|
|
|
|
ban(c);
|
|
|
|
|
|
|
|
|
|
|
|
monitors[selmonitor].layout->arrange();
|
|
|
|
monitors[selmonitor].layout->arrange(&monitors[selmonitor]);
|
|
|
|
focus(NULL);
|
|
|
|
focus(NULL);
|
|
|
|
restack();
|
|
|
|
restack();
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -719,12 +722,12 @@ expose(XEvent *e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
void
|
|
|
|
floating(void) { /* default floating layout */
|
|
|
|
floating(Monitor *m) { /* default floating layout */
|
|
|
|
Client *c;
|
|
|
|
Client *c;
|
|
|
|
|
|
|
|
|
|
|
|
domwfact = dozoom = False;
|
|
|
|
domwfact = dozoom = False;
|
|
|
|
for(c = clients; c; c = c->next)
|
|
|
|
for(c = clients; c; c = c->next)
|
|
|
|
if(isvisible(c, selmonitor))
|
|
|
|
if(isvisible(c, m->id))
|
|
|
|
resize(c, c->x, c->y, c->w, c->h, True);
|
|
|
|
resize(c, c->x, c->y, c->w, c->h, True);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -1598,6 +1601,7 @@ setup(void) {
|
|
|
|
for(i = 0; i < mcount; i++) {
|
|
|
|
for(i = 0; i < mcount; i++) {
|
|
|
|
/* init geometry */
|
|
|
|
/* init geometry */
|
|
|
|
m = &monitors[i];
|
|
|
|
m = &monitors[i];
|
|
|
|
|
|
|
|
m->id = i;
|
|
|
|
|
|
|
|
|
|
|
|
if (mcount != 1 && isxinerama) {
|
|
|
|
if (mcount != 1 && isxinerama) {
|
|
|
|
m->sx = info[i].x_org;
|
|
|
|
m->sx = info[i].x_org;
|
|
|
@ -1714,18 +1718,15 @@ textw(const char *text) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
void
|
|
|
|
tile(void) {
|
|
|
|
tile(Monitor *m) {
|
|
|
|
unsigned int i, j, n, nx, ny, nw, nh, mw, th;
|
|
|
|
unsigned int i, n, nx, ny, nw, nh, mw, th;
|
|
|
|
Client *c, *mc;
|
|
|
|
Client *c, *mc;
|
|
|
|
|
|
|
|
|
|
|
|
domwfact = dozoom = True;
|
|
|
|
domwfact = dozoom = True;
|
|
|
|
|
|
|
|
|
|
|
|
nx = ny = nw = 0; /* gcc stupidity requires this */
|
|
|
|
nx = ny = nw = 0; /* gcc stupidity requires this */
|
|
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < mcount; i++) {
|
|
|
|
for(n = 0, c = nexttiled(clients, m->id); c; c = nexttiled(c->next, m->id))
|
|
|
|
Monitor *m = &monitors[i];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for(n = 0, c = nexttiled(clients, i); c; c = nexttiled(c->next, i))
|
|
|
|
|
|
|
|
n++;
|
|
|
|
n++;
|
|
|
|
|
|
|
|
|
|
|
|
/* window geoms */
|
|
|
|
/* window geoms */
|
|
|
@ -1734,25 +1735,24 @@ tile(void) {
|
|
|
|
if(n > 1 && th < bh)
|
|
|
|
if(n > 1 && th < bh)
|
|
|
|
th = m->wah;
|
|
|
|
th = m->wah;
|
|
|
|
|
|
|
|
|
|
|
|
for(j = 0, c = mc = nexttiled(clients, i); c; c = nexttiled(c->next, i)) {
|
|
|
|
for(i = 0, c = mc = nexttiled(clients, m->id); c; c = nexttiled(c->next, m->id)) {
|
|
|
|
if(j == 0) { /* master */
|
|
|
|
if(i == 0) { /* master */
|
|
|
|
nx = m->wax;
|
|
|
|
nx = m->wax;
|
|
|
|
ny = m->way;
|
|
|
|
ny = m->way;
|
|
|
|
nw = mw - 2 * c->border;
|
|
|
|
nw = mw - 2 * c->border;
|
|
|
|
nh = m->wah - 2 * c->border;
|
|
|
|
nh = m->wah - 2 * c->border;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { /* tile window */
|
|
|
|
else { /* tile window */
|
|
|
|
if(j == 1) {
|
|
|
|
if(i == 1) {
|
|
|
|
ny = m->way;
|
|
|
|
ny = m->way;
|
|
|
|
nx += mc->w + 2 * mc->border;
|
|
|
|
nx += mc->w + 2 * mc->border;
|
|
|
|
nw = m->waw - mw - 2 * c->border;
|
|
|
|
nw = m->waw - mw - 2 * c->border;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(j + 1 == n) /* remainder */
|
|
|
|
if(i + 1 == n) /* remainder */
|
|
|
|
nh = (m->way + m->wah) - ny - 2 * c->border;
|
|
|
|
nh = (m->way + m->wah) - ny - 2 * c->border;
|
|
|
|
else
|
|
|
|
else
|
|
|
|
nh = th - 2 * c->border;
|
|
|
|
nh = th - 2 * c->border;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf(stderr, "tile(%d, %d, %d, %d)\n", nx, ny, nw, nh);
|
|
|
|
|
|
|
|
resize(c, nx, ny, nw, nh, RESIZEHINTS);
|
|
|
|
resize(c, nx, ny, nw, nh, RESIZEHINTS);
|
|
|
|
if((RESIZEHINTS) && ((c->h < bh) || (c->h > nh) || (c->w < bh) || (c->w > nw)))
|
|
|
|
if((RESIZEHINTS) && ((c->h < bh) || (c->h > nh) || (c->w < bh) || (c->w > nw)))
|
|
|
|
/* client doesn't accept size constraints */
|
|
|
|
/* client doesn't accept size constraints */
|
|
|
@ -1760,10 +1760,8 @@ tile(void) {
|
|
|
|
if(n > 1 && th != m->wah)
|
|
|
|
if(n > 1 && th != m->wah)
|
|
|
|
ny = c->y + c->h + 2 * c->border;
|
|
|
|
ny = c->y + c->h + 2 * c->border;
|
|
|
|
|
|
|
|
|
|
|
|
j++;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf(stderr, "done\n");
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void
|
|
|
|
void
|
|
|
|
togglebar(const char *arg) {
|
|
|
|
togglebar(const char *arg) {
|
|
|
@ -2045,7 +2043,7 @@ selectmonitor(const char *arg) {
|
|
|
|
int
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[]) {
|
|
|
|
main(int argc, char *argv[]) {
|
|
|
|
if(argc == 2 && !strcmp("-v", argv[1]))
|
|
|
|
if(argc == 2 && !strcmp("-v", argv[1]))
|
|
|
|
eprint("dwm-"VERSION", © 2006-2007 Anselm R. Garbe, Sander van Dijk, "
|
|
|
|
eprint("dwm-"VERSION", © 2006-2008 Anselm R. Garbe, Sander van Dijk, "
|
|
|
|
"Jukka Salmi, Premysl Hruby, Szabolcs Nagy, Christof Musik\n");
|
|
|
|
"Jukka Salmi, Premysl Hruby, Szabolcs Nagy, Christof Musik\n");
|
|
|
|
else if(argc != 1)
|
|
|
|
else if(argc != 1)
|
|
|
|
eprint("usage: dwm [-v]\n");
|
|
|
|
eprint("usage: dwm [-v]\n");
|
|
|
|