all repos — dwm @ 83abfc05eb5a1e6ee762ce2921d9d5270e40c9ee

fork of suckless dynamic window manager

dwm.c (view raw)

   1/* See LICENSE file for copyright and license details.
   2 *
   3 * dynamic window manager is designed like any other X client as well. It is
   4 * driven through handling X events. In contrast to other X clients, a window
   5 * manager selects for SubstructureRedirectMask on the root window, to receive
   6 * events about window (dis-)appearance.  Only one X connection at a time is
   7 * allowed to select for this event mask.
   8 *
   9 * Calls to fetch an X event from the event queue are blocking.  Due reading
  10 * status text from standard input, a select()-driven main loop has been
  11 * implemented which selects for reads on the X connection and STDIN_FILENO to
  12 * handle all data smoothly. The event handlers of dwm are organized in an
  13 * array which is accessed whenever a new event has been fetched. This allows
  14 * event dispatching in O(1) time.
  15 *
  16 * Each child of the root window is called a client, except windows which have
  17 * set the override_redirect flag.  Clients are organized in a global
  18 * doubly-linked client list, the focus history is remembered through a global
  19 * stack list. Each client contains a bit array to indicate the tags of a
  20 * client.
  21 *
  22 * Keys and tagging rules are organized as arrays and defined in config.h.
  23 *
  24 * To understand everything else, start reading main().
  25 */
  26#include <errno.h>
  27#include <locale.h>
  28#include <stdarg.h>
  29#include <stdio.h>
  30#include <stdlib.h>
  31#include <string.h>
  32#include <unistd.h>
  33#include <sys/select.h>
  34#include <sys/types.h>
  35#include <sys/wait.h>
  36#include <X11/cursorfont.h>
  37#include <X11/keysym.h>
  38#include <X11/Xatom.h>
  39#include <X11/Xlib.h>
  40#include <X11/Xproto.h>
  41#include <X11/Xutil.h>
  42#ifdef XINERAMA
  43#include <X11/extensions/Xinerama.h>
  44#endif
  45
  46/* macros */
  47#define BUTTONMASK              (ButtonPressMask|ButtonReleaseMask)
  48#define CLEANMASK(mask)         (mask & ~(numlockmask|LockMask))
  49#define INRECT(X,Y,RX,RY,RW,RH) ((X) >= (RX) && (X) < (RX) + (RW) && (Y) >= (RY) && (Y) < (RY) + (RH))
  50#define ISVISIBLE(x)            (x->tags & tagset[seltags])
  51#define LENGTH(x)               (sizeof x / sizeof x[0])
  52#define MAX(a, b)               ((a) > (b) ? (a) : (b))
  53#define MIN(a, b)               ((a) < (b) ? (a) : (b))
  54#define MAXTAGLEN               16
  55#define MOUSEMASK               (BUTTONMASK|PointerMotionMask)
  56#define NOBORDER(x)             ((x) - 2 * c->bw)
  57#define TAGMASK                 ((int)((1LL << LENGTH(tags)) - 1))
  58#define TEXTW(x)                (textnw(x, strlen(x)) + dc.font.height)
  59
  60/* enums */
  61enum { CurNormal, CurResize, CurMove, CurLast };        /* cursor */
  62enum { ColBorder, ColFG, ColBG, ColLast };              /* color */
  63enum { NetSupported, NetWMName, NetLast };              /* EWMH atoms */
  64enum { WMProtocols, WMDelete, WMState, WMLast };        /* default atoms */
  65enum { ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle,
  66       ClkClientWin, ClkRootWin, ClkLast };             /* clicks */
  67
  68typedef union {
  69	int i;
  70	unsigned int ui;
  71	float f;
  72	void *v;
  73} Arg;
  74
  75typedef struct {
  76	unsigned int click;
  77	unsigned int mask;
  78	unsigned int button;
  79	void (*func)(const Arg *arg);
  80	const Arg arg;
  81} Button;
  82
  83typedef struct Client Client;
  84struct Client {
  85	char name[256];
  86	float mina, maxa;
  87	int x, y, w, h;
  88	int basew, baseh, incw, inch, maxw, maxh, minw, minh;
  89	int bw, oldbw;
  90	unsigned int tags;
  91	Bool isfixed, isfloating, isurgent;
  92	Client *next;
  93	Client *snext;
  94	Window win;
  95};
  96
  97typedef struct {
  98	int x, y, w, h;
  99	unsigned long norm[ColLast];
 100	unsigned long sel[ColLast];
 101	Drawable drawable;
 102	GC gc;
 103	struct {
 104		int ascent;
 105		int descent;
 106		int height;
 107		XFontSet set;
 108		XFontStruct *xfont;
 109	} font;
 110} DC; /* draw context */
 111
 112typedef struct {
 113	unsigned int mod;
 114	KeySym keysym;
 115	void (*func)(const Arg *);
 116	const Arg arg;
 117} Key;
 118
 119typedef struct {
 120	const char *symbol;
 121	void (*arrange)(void);
 122} Layout;
 123
 124typedef struct {
 125	const char *class;
 126	const char *instance;
 127	const char *title;
 128	unsigned int tags;
 129	Bool isfloating;
 130} Rule;
 131
 132/* function declarations */
 133static void applyrules(Client *c);
 134static void arrange(void);
 135static void attach(Client *c);
 136static void attachstack(Client *c);
 137static void buttonpress(XEvent *e);
 138static void checkotherwm(void);
 139static void cleanup(void);
 140static void clearurgent(void);
 141static void configure(Client *c);
 142static void configurenotify(XEvent *e);
 143static void configurerequest(XEvent *e);
 144static void destroynotify(XEvent *e);
 145static void detach(Client *c);
 146static void detachstack(Client *c);
 147static void die(const char *errstr, ...);
 148static void drawbar(void);
 149static void drawsquare(Bool filled, Bool empty, Bool invert, unsigned long col[ColLast]);
 150static void drawtext(const char *text, unsigned long col[ColLast], Bool invert);
 151static void enternotify(XEvent *e);
 152static void expose(XEvent *e);
 153static void focus(Client *c);
 154static void focusin(XEvent *e);
 155static void focusstack(const Arg *arg);
 156static Client *getclient(Window w);
 157static unsigned long getcolor(const char *colstr);
 158static long getstate(Window w);
 159static Bool gettextprop(Window w, Atom atom, char *text, unsigned int size);
 160static void grabbuttons(Client *c, Bool focused);
 161static void grabkeys(void);
 162static void initfont(const char *fontstr);
 163static Bool isprotodel(Client *c);
 164static void keypress(XEvent *e);
 165static void killclient(const Arg *arg);
 166static void manage(Window w, XWindowAttributes *wa);
 167static void mappingnotify(XEvent *e);
 168static void maprequest(XEvent *e);
 169static void monocle(void);
 170static void movemouse(const Arg *arg);
 171static Client *nexttiled(Client *c);
 172static void propertynotify(XEvent *e);
 173static void quit(const Arg *arg);
 174static void resize(Client *c, int x, int y, int w, int h, Bool sizehints);
 175static void resizemouse(const Arg *arg);
 176static void restack(void);
 177static void run(void);
 178static void scan(void);
 179static void setclientstate(Client *c, long state);
 180static void setlayout(const Arg *arg);
 181static void setmfact(const Arg *arg);
 182static void setup(void);
 183static void showhide(Client *c);
 184static void spawn(const Arg *arg);
 185static void tag(const Arg *arg);
 186static int textnw(const char *text, unsigned int len);
 187static void tile(void);
 188static void togglebar(const Arg *arg);
 189static void togglefloating(const Arg *arg);
 190static void toggletag(const Arg *arg);
 191static void toggleview(const Arg *arg);
 192static void unmanage(Client *c);
 193static void unmapnotify(XEvent *e);
 194static void updatebar(void);
 195static void updategeom(void);
 196static void updatenumlockmask(void);
 197static void updatesizehints(Client *c);
 198static void updatetitle(Client *c);
 199static void updatewmhints(Client *c);
 200static void view(const Arg *arg);
 201static int xerror(Display *dpy, XErrorEvent *ee);
 202static int xerrordummy(Display *dpy, XErrorEvent *ee);
 203static int xerrorstart(Display *dpy, XErrorEvent *ee);
 204static void zoom(const Arg *arg);
 205
 206/* variables */
 207static char stext[256];
 208static int screen;
 209static int sx, sy, sw, sh; /* X display screen geometry x, y, width, height */ 
 210static int by, bh, blw;    /* bar geometry y, height and layout symbol width */
 211static int wx, wy, ww, wh; /* window area geometry x, y, width, height, bar excluded */
 212static unsigned int seltags = 0, sellt = 0;
 213static int (*xerrorxlib)(Display *, XErrorEvent *);
 214static unsigned int numlockmask = 0;
 215static void (*handler[LASTEvent]) (XEvent *) = {
 216	[ButtonPress] = buttonpress,
 217	[ConfigureRequest] = configurerequest,
 218	[ConfigureNotify] = configurenotify,
 219	[DestroyNotify] = destroynotify,
 220	[EnterNotify] = enternotify,
 221	[Expose] = expose,
 222	[FocusIn] = focusin,
 223	[KeyPress] = keypress,
 224	[MappingNotify] = mappingnotify,
 225	[MapRequest] = maprequest,
 226	[PropertyNotify] = propertynotify,
 227	[UnmapNotify] = unmapnotify
 228};
 229static Atom wmatom[WMLast], netatom[NetLast];
 230static Bool otherwm;
 231static Bool running = True;
 232static Client *clients = NULL;
 233static Client *sel = NULL;
 234static Client *stack = NULL;
 235static Cursor cursor[CurLast];
 236static Display *dpy;
 237static DC dc;
 238static Layout *lt[] = { NULL, NULL };
 239static Window root, barwin;
 240/* configuration, allows nested code to access above variables */
 241#include "config.h"
 242
 243/* compile-time check if all tags fit into an unsigned int bit array. */
 244struct NumTags { char limitexceeded[sizeof(unsigned int) * 8 < LENGTH(tags) ? -1 : 1]; };
 245
 246/* function implementations */
 247void
 248applyrules(Client *c) {
 249	unsigned int i;
 250	Rule *r;
 251	XClassHint ch = { 0 };
 252
 253	/* rule matching */
 254	if(XGetClassHint(dpy, c->win, &ch)) {
 255		for(i = 0; i < LENGTH(rules); i++) {
 256			r = &rules[i];
 257			if((!r->title || strstr(c->name, r->title))
 258			&& (!r->class || (ch.res_class && strstr(ch.res_class, r->class)))
 259			&& (!r->instance || (ch.res_name && strstr(ch.res_name, r->instance)))) {
 260				c->isfloating = r->isfloating;
 261				c->tags |= r->tags & TAGMASK;
 262			}
 263		}
 264		if(ch.res_class)
 265			XFree(ch.res_class);
 266		if(ch.res_name)
 267			XFree(ch.res_name);
 268	}
 269	if(!c->tags)
 270		c->tags = tagset[seltags];
 271}
 272
 273void
 274arrange(void) {
 275	showhide(stack);
 276	focus(NULL);
 277	if(lt[sellt]->arrange)
 278		lt[sellt]->arrange();
 279	restack();
 280}
 281
 282void
 283attach(Client *c) {
 284	c->next = clients;
 285	clients = c;
 286}
 287
 288void
 289attachstack(Client *c) {
 290	c->snext = stack;
 291	stack = c;
 292}
 293
 294void
 295buttonpress(XEvent *e) {
 296	unsigned int i, x, click;
 297	Arg arg = {0};
 298	Client *c;
 299	XButtonPressedEvent *ev = &e->xbutton;
 300
 301	click = ClkRootWin;
 302	if(ev->window == barwin) {
 303		i = x = 0;
 304		do x += TEXTW(tags[i]); while(ev->x >= x && ++i < LENGTH(tags));
 305		if(i < LENGTH(tags)) {
 306			click = ClkTagBar;
 307			arg.ui = 1 << i;
 308		}
 309		else if(ev->x < x + blw)
 310			click = ClkLtSymbol;
 311		else if(ev->x > wx + ww - TEXTW(stext))
 312			click = ClkStatusText;
 313		else
 314			click = ClkWinTitle;
 315	}
 316	else if((c = getclient(ev->window))) {
 317		focus(c);
 318		click = ClkClientWin;
 319	}
 320
 321	for(i = 0; i < LENGTH(buttons); i++)
 322		if(click == buttons[i].click && buttons[i].func && buttons[i].button == ev->button
 323		   && CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
 324			buttons[i].func(click == ClkTagBar && buttons[i].arg.i == 0 ? &arg : &buttons[i].arg);
 325}
 326
 327void
 328checkotherwm(void) {
 329	otherwm = False;
 330	xerrorxlib = XSetErrorHandler(xerrorstart);
 331
 332	/* this causes an error if some other window manager is running */
 333	XSelectInput(dpy, DefaultRootWindow(dpy), SubstructureRedirectMask);
 334	XSync(dpy, False);
 335	if(otherwm)
 336		die("dwm: another window manager is already running\n");
 337	XSetErrorHandler(xerror);
 338	XSync(dpy, False);
 339}
 340
 341void
 342cleanup(void) {
 343	Arg a = {.ui = ~0};
 344	Layout foo = { "", NULL };
 345
 346	close(STDIN_FILENO);
 347	view(&a);
 348	lt[sellt] = &foo;
 349	while(stack)
 350		unmanage(stack);
 351	if(dc.font.set)
 352		XFreeFontSet(dpy, dc.font.set);
 353	else
 354		XFreeFont(dpy, dc.font.xfont);
 355	XUngrabKey(dpy, AnyKey, AnyModifier, root);
 356	XFreePixmap(dpy, dc.drawable);
 357	XFreeGC(dpy, dc.gc);
 358	XFreeCursor(dpy, cursor[CurNormal]);
 359	XFreeCursor(dpy, cursor[CurResize]);
 360	XFreeCursor(dpy, cursor[CurMove]);
 361	XDestroyWindow(dpy, barwin);
 362	XSync(dpy, False);
 363	XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
 364}
 365
 366void
 367clearurgent(void) {
 368	XWMHints *wmh;
 369	Client *c;
 370
 371	for(c = clients; c; c = c->next)
 372		if(ISVISIBLE(c) && c->isurgent) {
 373			c->isurgent = False;
 374			if (!(wmh = XGetWMHints(dpy, c->win)))
 375				continue;
 376
 377			wmh->flags &= ~XUrgencyHint;
 378			XSetWMHints(dpy, c->win, wmh);
 379			XFree(wmh);
 380		}
 381}
 382
 383void
 384configure(Client *c) {
 385	XConfigureEvent ce;
 386
 387	ce.type = ConfigureNotify;
 388	ce.display = dpy;
 389	ce.event = c->win;
 390	ce.window = c->win;
 391	ce.x = c->x;
 392	ce.y = c->y;
 393	ce.width = c->w;
 394	ce.height = c->h;
 395	ce.border_width = c->bw;
 396	ce.above = None;
 397	ce.override_redirect = False;
 398	XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&ce);
 399}
 400
 401void
 402configurenotify(XEvent *e) {
 403	XConfigureEvent *ev = &e->xconfigure;
 404
 405	if(ev->window == root && (ev->width != sw || ev->height != sh)) {
 406		sw = ev->width;
 407		sh = ev->height;
 408		updategeom();
 409		updatebar();
 410		arrange();
 411	}
 412}
 413
 414void
 415configurerequest(XEvent *e) {
 416	Client *c;
 417	XConfigureRequestEvent *ev = &e->xconfigurerequest;
 418	XWindowChanges wc;
 419
 420	if((c = getclient(ev->window))) {
 421		if(ev->value_mask & CWBorderWidth)
 422			c->bw = ev->border_width;
 423		else if(c->isfloating || !lt[sellt]->arrange) {
 424			if(ev->value_mask & CWX)
 425				c->x = sx + ev->x;
 426			if(ev->value_mask & CWY)
 427				c->y = sy + ev->y;
 428			if(ev->value_mask & CWWidth)
 429				c->w = ev->width;
 430			if(ev->value_mask & CWHeight)
 431				c->h = ev->height;
 432			if((c->x - sx + c->w) > sw && c->isfloating)
 433				c->x = sx + (sw / 2 - c->w / 2); /* center in x direction */
 434			if((c->y - sy + c->h) > sh && c->isfloating)
 435				c->y = sy + (sh / 2 - c->h / 2); /* center in y direction */
 436			if((ev->value_mask & (CWX|CWY)) && !(ev->value_mask & (CWWidth|CWHeight)))
 437				configure(c);
 438			if(ISVISIBLE(c))
 439				XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
 440		}
 441		else
 442			configure(c);
 443	}
 444	else {
 445		wc.x = ev->x;
 446		wc.y = ev->y;
 447		wc.width = ev->width;
 448		wc.height = ev->height;
 449		wc.border_width = ev->border_width;
 450		wc.sibling = ev->above;
 451		wc.stack_mode = ev->detail;
 452		XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
 453	}
 454	XSync(dpy, False);
 455}
 456
 457void
 458destroynotify(XEvent *e) {
 459	Client *c;
 460	XDestroyWindowEvent *ev = &e->xdestroywindow;
 461
 462	if((c = getclient(ev->window)))
 463		unmanage(c);
 464}
 465
 466void
 467detach(Client *c) {
 468	Client **tc;
 469
 470	for(tc = &clients; *tc && *tc != c; tc = &(*tc)->next);
 471	*tc = c->next;
 472}
 473
 474void
 475detachstack(Client *c) {
 476	Client **tc;
 477
 478	for(tc = &stack; *tc && *tc != c; tc = &(*tc)->snext);
 479	*tc = c->snext;
 480}
 481
 482void
 483die(const char *errstr, ...) {
 484	va_list ap;
 485
 486	va_start(ap, errstr);
 487	vfprintf(stderr, errstr, ap);
 488	va_end(ap);
 489	exit(EXIT_FAILURE);
 490}
 491
 492void
 493drawbar(void) {
 494	int x;
 495	unsigned int i, occ = 0, urg = 0;
 496	unsigned long *col;
 497	Client *c;
 498
 499	for(c = clients; c; c = c->next) {
 500		occ |= c->tags;
 501		if(c->isurgent)
 502			urg |= c->tags;
 503	}
 504
 505	dc.x = 0;
 506	for(i = 0; i < LENGTH(tags); i++) {
 507		dc.w = TEXTW(tags[i]);
 508		col = tagset[seltags] & 1 << i ? dc.sel : dc.norm;
 509		drawtext(tags[i], col, urg & 1 << i);
 510		drawsquare(sel && sel->tags & 1 << i, occ & 1 << i, urg & 1 << i, col);
 511		dc.x += dc.w;
 512	}
 513	if(blw > 0) {
 514		dc.w = blw;
 515		drawtext(lt[sellt]->symbol, dc.norm, False);
 516		x = dc.x + dc.w;
 517	}
 518	else
 519		x = dc.x;
 520	dc.w = TEXTW(stext);
 521	dc.x = ww - dc.w;
 522	if(dc.x < x) {
 523		dc.x = x;
 524		dc.w = ww - x;
 525	}
 526	drawtext(stext, dc.norm, False);
 527	if((dc.w = dc.x - x) > bh) {
 528		dc.x = x;
 529		if(sel) {
 530			drawtext(sel->name, dc.sel, False);
 531			drawsquare(sel->isfixed, sel->isfloating, False, dc.sel);
 532		}
 533		else
 534			drawtext(NULL, dc.norm, False);
 535	}
 536	XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, ww, bh, 0, 0);
 537	XSync(dpy, False);
 538}
 539
 540void
 541drawsquare(Bool filled, Bool empty, Bool invert, unsigned long col[ColLast]) {
 542	int x;
 543	XGCValues gcv;
 544	XRectangle r = { dc.x, dc.y, dc.w, dc.h };
 545
 546	gcv.foreground = col[invert ? ColBG : ColFG];
 547	XChangeGC(dpy, dc.gc, GCForeground, &gcv);
 548	x = (dc.font.ascent + dc.font.descent + 2) / 4;
 549	r.x = dc.x + 1;
 550	r.y = dc.y + 1;
 551	if(filled) {
 552		r.width = r.height = x + 1;
 553		XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
 554	}
 555	else if(empty) {
 556		r.width = r.height = x;
 557		XDrawRectangles(dpy, dc.drawable, dc.gc, &r, 1);
 558	}
 559}
 560
 561void
 562drawtext(const char *text, unsigned long col[ColLast], Bool invert) {
 563	char buf[256];
 564	int i, x, y, h, len, olen;
 565	XRectangle r = { dc.x, dc.y, dc.w, dc.h };
 566
 567	XSetForeground(dpy, dc.gc, col[invert ? ColFG : ColBG]);
 568	XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
 569	if(!text)
 570		return;
 571	olen = strlen(text);
 572	h = dc.font.ascent + dc.font.descent;
 573	y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent;
 574	x = dc.x + (h / 2);
 575	/* shorten text if necessary */
 576	for(len = MIN(olen, sizeof buf); len && textnw(text, len) > dc.w - h; len--);
 577	if(!len)
 578		return;
 579	memcpy(buf, text, len);
 580	if(len < olen)
 581		for(i = len; i && i > len - 3; buf[--i] = '.');
 582	XSetForeground(dpy, dc.gc, col[invert ? ColBG : ColFG]);
 583	if(dc.font.set)
 584		XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);
 585	else
 586		XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
 587}
 588
 589void
 590enternotify(XEvent *e) {
 591	Client *c;
 592	XCrossingEvent *ev = &e->xcrossing;
 593
 594	if((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
 595		return;
 596	if((c = getclient(ev->window)))
 597		focus(c);
 598	else
 599		focus(NULL);
 600}
 601
 602void
 603expose(XEvent *e) {
 604	XExposeEvent *ev = &e->xexpose;
 605
 606	if(ev->count == 0 && (ev->window == barwin))
 607		drawbar();
 608}
 609
 610void
 611focus(Client *c) {
 612	if(!c || !ISVISIBLE(c))
 613		for(c = stack; c && !ISVISIBLE(c); c = c->snext);
 614	if(sel && sel != c) {
 615		grabbuttons(sel, False);
 616		XSetWindowBorder(dpy, sel->win, dc.norm[ColBorder]);
 617	}
 618	if(c) {
 619		detachstack(c);
 620		attachstack(c);
 621		grabbuttons(c, True);
 622		XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]);
 623		XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
 624	}
 625	else
 626		XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
 627	sel = c;
 628	drawbar();
 629}
 630
 631void
 632focusin(XEvent *e) { /* there are some broken focus acquiring clients */
 633	XFocusChangeEvent *ev = &e->xfocus;
 634
 635	if(sel && ev->window != sel->win)
 636		XSetInputFocus(dpy, sel->win, RevertToPointerRoot, CurrentTime);
 637}
 638
 639void
 640focusstack(const Arg *arg) {
 641	Client *c = NULL, *i;
 642
 643	if(!sel)
 644		return;
 645	if (arg->i > 0) {
 646		for(c = sel->next; c && !ISVISIBLE(c); c = c->next);
 647		if(!c)
 648			for(c = clients; c && !ISVISIBLE(c); c = c->next);
 649	}
 650	else {
 651		for(i = clients; i != sel; i = i->next)
 652			if(ISVISIBLE(i))
 653				c = i;
 654		if(!c)
 655			for(; i; i = i->next)
 656				if(ISVISIBLE(i))
 657					c = i;
 658	}
 659	if(c) {
 660		focus(c);
 661		restack();
 662	}
 663}
 664
 665Client *
 666getclient(Window w) {
 667	Client *c;
 668
 669	for(c = clients; c && c->win != w; c = c->next);
 670	return c;
 671}
 672
 673unsigned long
 674getcolor(const char *colstr) {
 675	Colormap cmap = DefaultColormap(dpy, screen);
 676	XColor color;
 677
 678	if(!XAllocNamedColor(dpy, cmap, colstr, &color, &color))
 679		die("error, cannot allocate color '%s'\n", colstr);
 680	return color.pixel;
 681}
 682
 683long
 684getstate(Window w) {
 685	int format, status;
 686	long result = -1;
 687	unsigned char *p = NULL;
 688	unsigned long n, extra;
 689	Atom real;
 690
 691	status = XGetWindowProperty(dpy, w, wmatom[WMState], 0L, 2L, False, wmatom[WMState],
 692			&real, &format, &n, &extra, (unsigned char **)&p);
 693	if(status != Success)
 694		return -1;
 695	if(n != 0)
 696		result = *p;
 697	XFree(p);
 698	return result;
 699}
 700
 701Bool
 702gettextprop(Window w, Atom atom, char *text, unsigned int size) {
 703	char **list = NULL;
 704	int n;
 705	XTextProperty name;
 706
 707	if(!text || size == 0)
 708		return False;
 709	text[0] = '\0';
 710	XGetTextProperty(dpy, w, &name, atom);
 711	if(!name.nitems)
 712		return False;
 713	if(name.encoding == XA_STRING)
 714		strncpy(text, (char *)name.value, size - 1);
 715	else {
 716		if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success
 717		&& n > 0 && *list) {
 718			strncpy(text, *list, size - 1);
 719			XFreeStringList(list);
 720		}
 721	}
 722	text[size - 1] = '\0';
 723	XFree(name.value);
 724	return True;
 725}
 726
 727void
 728grabbuttons(Client *c, Bool focused) {
 729	updatenumlockmask();
 730	{
 731		unsigned int i, j;
 732		unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
 733		XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
 734		if(focused) {
 735			for(i = 0; i < LENGTH(buttons); i++)
 736				if(buttons[i].click == ClkClientWin)
 737					for(j = 0; j < LENGTH(modifiers); j++)
 738						XGrabButton(dpy, buttons[i].button, buttons[i].mask | modifiers[j], c->win, False, BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
 739		} else
 740			XGrabButton(dpy, AnyButton, AnyModifier, c->win, False,
 741			            BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
 742	}
 743}
 744
 745void
 746grabkeys(void) {
 747	updatenumlockmask();
 748	{ /* grab keys */
 749		unsigned int i, j;
 750		unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
 751		KeyCode code;
 752
 753		XUngrabKey(dpy, AnyKey, AnyModifier, root);
 754		for(i = 0; i < LENGTH(keys); i++) {
 755			if((code = XKeysymToKeycode(dpy, keys[i].keysym)))
 756				for(j = 0; j < LENGTH(modifiers); j++)
 757					XGrabKey(dpy, code, keys[i].mod | modifiers[j], root,
 758						 True, GrabModeAsync, GrabModeAsync);
 759		}
 760	}
 761}
 762
 763void
 764initfont(const char *fontstr) {
 765	char *def, **missing;
 766	int i, n;
 767
 768	missing = NULL;
 769	dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
 770	if(missing) {
 771		while(n--)
 772			fprintf(stderr, "dwm: missing fontset: %s\n", missing[n]);
 773		XFreeStringList(missing);
 774	}
 775	if(dc.font.set) {
 776		XFontSetExtents *font_extents;
 777		XFontStruct **xfonts;
 778		char **font_names;
 779		dc.font.ascent = dc.font.descent = 0;
 780		font_extents = XExtentsOfFontSet(dc.font.set);
 781		n = XFontsOfFontSet(dc.font.set, &xfonts, &font_names);
 782		for(i = 0, dc.font.ascent = 0, dc.font.descent = 0; i < n; i++) {
 783			dc.font.ascent = MAX(dc.font.ascent, (*xfonts)->ascent);
 784			dc.font.descent = MAX(dc.font.descent,(*xfonts)->descent);
 785			xfonts++;
 786		}
 787	}
 788	else {
 789		if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))
 790		&& !(dc.font.xfont = XLoadQueryFont(dpy, "fixed")))
 791			die("error, cannot load font: '%s'\n", fontstr);
 792		dc.font.ascent = dc.font.xfont->ascent;
 793		dc.font.descent = dc.font.xfont->descent;
 794	}
 795	dc.font.height = dc.font.ascent + dc.font.descent;
 796}
 797
 798Bool
 799isprotodel(Client *c) {
 800	int i, n;
 801	Atom *protocols;
 802	Bool ret = False;
 803
 804	if(XGetWMProtocols(dpy, c->win, &protocols, &n)) {
 805		for(i = 0; !ret && i < n; i++)
 806			if(protocols[i] == wmatom[WMDelete])
 807				ret = True;
 808		XFree(protocols);
 809	}
 810	return ret;
 811}
 812
 813void
 814keypress(XEvent *e) {
 815	unsigned int i;
 816	KeySym keysym;
 817	XKeyEvent *ev;
 818
 819	ev = &e->xkey;
 820	keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
 821	for(i = 0; i < LENGTH(keys); i++)
 822		if(keysym == keys[i].keysym
 823		   && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
 824		   && keys[i].func)
 825			keys[i].func(&(keys[i].arg));
 826}
 827
 828void
 829killclient(const Arg *arg) {
 830	XEvent ev;
 831
 832	if(!sel)
 833		return;
 834	if(isprotodel(sel)) {
 835		ev.type = ClientMessage;
 836		ev.xclient.window = sel->win;
 837		ev.xclient.message_type = wmatom[WMProtocols];
 838		ev.xclient.format = 32;
 839		ev.xclient.data.l[0] = wmatom[WMDelete];
 840		ev.xclient.data.l[1] = CurrentTime;
 841		XSendEvent(dpy, sel->win, False, NoEventMask, &ev);
 842	}
 843	else
 844		XKillClient(dpy, sel->win);
 845}
 846
 847void
 848manage(Window w, XWindowAttributes *wa) {
 849	Client *c, *t = NULL;
 850	Window trans = None;
 851	XWindowChanges wc;
 852
 853	if(!(c = calloc(1, sizeof(Client))))
 854		die("fatal: could not calloc() %u bytes\n", sizeof(Client));
 855	c->win = w;
 856
 857	/* geometry */
 858	c->x = wa->x;
 859	c->y = wa->y;
 860	c->w = wa->width;
 861	c->h = wa->height;
 862	c->oldbw = wa->border_width;
 863	if(c->w == sw && c->h == sh) {
 864		c->x = sx;
 865		c->y = sy;
 866		c->bw = 0;
 867	}
 868	else {
 869		if(c->x + c->w + 2 * c->bw > sx + sw)
 870			c->x = sx + sw - NOBORDER(c->w);
 871		if(c->y + c->h + 2 * c->bw > sy + sh)
 872			c->y = sy + sh - NOBORDER(c->h);
 873		c->x = MAX(c->x, sx);
 874		/* only fix client y-offset, if the client center might cover the bar */
 875		c->y = MAX(c->y, ((by == 0) && (c->x + (c->w / 2) >= wx) && (c->x + (c->w / 2) < wx + ww)) ? bh : sy);
 876		c->bw = borderpx;
 877	}
 878
 879	wc.border_width = c->bw;
 880	XConfigureWindow(dpy, w, CWBorderWidth, &wc);
 881	XSetWindowBorder(dpy, w, dc.norm[ColBorder]);
 882	configure(c); /* propagates border_width, if size doesn't change */
 883	updatesizehints(c);
 884	XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
 885	grabbuttons(c, False);
 886	updatetitle(c);
 887	if(XGetTransientForHint(dpy, w, &trans))
 888		t = getclient(trans);
 889	if(t)
 890		c->tags = t->tags;
 891	else
 892		applyrules(c);
 893	if(!c->isfloating)
 894		c->isfloating = trans != None || c->isfixed;
 895	if(c->isfloating)
 896		XRaiseWindow(dpy, c->win);
 897	attach(c);
 898	attachstack(c);
 899	XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */
 900	XMapWindow(dpy, c->win);
 901	setclientstate(c, NormalState);
 902	arrange();
 903}
 904
 905void
 906mappingnotify(XEvent *e) {
 907	XMappingEvent *ev = &e->xmapping;
 908
 909	XRefreshKeyboardMapping(ev);
 910	if(ev->request == MappingKeyboard)
 911		grabkeys();
 912}
 913
 914void
 915maprequest(XEvent *e) {
 916	static XWindowAttributes wa;
 917	XMapRequestEvent *ev = &e->xmaprequest;
 918
 919	if(!XGetWindowAttributes(dpy, ev->window, &wa))
 920		return;
 921	if(wa.override_redirect)
 922		return;
 923	if(!getclient(ev->window))
 924		manage(ev->window, &wa);
 925}
 926
 927void
 928monocle(void) {
 929	Client *c;
 930
 931	for(c = nexttiled(clients); c; c = nexttiled(c->next))
 932		resize(c, wx, wy, NOBORDER(ww), NOBORDER(wh), resizehints);
 933}
 934
 935void
 936movemouse(const Arg *arg) {
 937	int x, y, ocx, ocy, di, nx, ny;
 938	unsigned int dui;
 939	Client *c;
 940	Window dummy;
 941	XEvent ev;
 942
 943	if(!(c = sel))
 944		return;
 945	restack();
 946	ocx = c->x;
 947	ocy = c->y;
 948	if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
 949	None, cursor[CurMove], CurrentTime) != GrabSuccess)
 950		return;
 951	XQueryPointer(dpy, root, &dummy, &dummy, &x, &y, &di, &di, &dui);
 952	do {
 953		XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
 954		switch (ev.type) {
 955		case ConfigureRequest:
 956		case Expose:
 957		case MapRequest:
 958			handler[ev.type](&ev);
 959			break;
 960		case MotionNotify:
 961			XSync(dpy, False);
 962			nx = ocx + (ev.xmotion.x - x);
 963			ny = ocy + (ev.xmotion.y - y);
 964			if(snap && nx >= wx && nx <= wx + ww
 965			        && ny >= wy && ny <= wy + wh) {
 966				if(abs(wx - nx) < snap)
 967					nx = wx;
 968				else if(abs((wx + ww) - (nx + c->w + 2 * c->bw)) < snap)
 969					nx = wx + ww - NOBORDER(c->w);
 970				if(abs(wy - ny) < snap)
 971					ny = wy;
 972				else if(abs((wy + wh) - (ny + c->h + 2 * c->bw)) < snap)
 973					ny = wy + wh - NOBORDER(c->h);
 974				if(!c->isfloating && lt[sellt]->arrange && (abs(nx - c->x) > snap || abs(ny - c->y) > snap))
 975					togglefloating(NULL);
 976			}
 977			if(!lt[sellt]->arrange || c->isfloating)
 978				resize(c, nx, ny, c->w, c->h, False);
 979			break;
 980		}
 981	}
 982	while(ev.type != ButtonRelease);
 983	XUngrabPointer(dpy, CurrentTime);
 984}
 985
 986Client *
 987nexttiled(Client *c) {
 988	for(; c && (c->isfloating || !ISVISIBLE(c)); c = c->next);
 989	return c;
 990}
 991
 992void
 993propertynotify(XEvent *e) {
 994	Client *c;
 995	Window trans;
 996	XPropertyEvent *ev = &e->xproperty;
 997
 998	if(ev->state == PropertyDelete)
 999		return; /* ignore */
1000	if((c = getclient(ev->window))) {
1001		switch (ev->atom) {
1002		default: break;
1003		case XA_WM_TRANSIENT_FOR:
1004			XGetTransientForHint(dpy, c->win, &trans);
1005			if(!c->isfloating && (c->isfloating = (getclient(trans) != NULL)))
1006				arrange();
1007			break;
1008		case XA_WM_NORMAL_HINTS:
1009			updatesizehints(c);
1010			break;
1011		case XA_WM_HINTS:
1012			updatewmhints(c);
1013			drawbar();
1014			break;
1015		}
1016		if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
1017			updatetitle(c);
1018			if(c == sel)
1019				drawbar();
1020		}
1021	}
1022}
1023
1024void
1025quit(const Arg *arg) {
1026	readin = running = False;
1027}
1028
1029void
1030resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
1031	XWindowChanges wc;
1032
1033	if(sizehints) {
1034		/* see last two sentences in ICCCM 4.1.2.3 */
1035		Bool baseismin = c->basew == c->minw && c->baseh == c->minh;
1036
1037		/* set minimum possible */
1038		w = MAX(1, w);
1039		h = MAX(1, h);
1040
1041		if(!baseismin) { /* temporarily remove base dimensions */
1042			w -= c->basew;
1043			h -= c->baseh;
1044		}
1045
1046		/* adjust for aspect limits */
1047		if(c->mina > 0 && c->maxa > 0) {
1048			if(c->maxa < (float)w / h)
1049				w = h * c->maxa;
1050			else if(c->mina < (float)h / w)
1051				h = w * c->mina;
1052		}
1053
1054		if(baseismin) { /* increment calculation requires this */
1055			w -= c->basew;
1056			h -= c->baseh;
1057		}
1058
1059		/* adjust for increment value */
1060		if(c->incw)
1061			w -= w % c->incw;
1062		if(c->inch)
1063			h -= h % c->inch;
1064
1065		/* restore base dimensions */
1066		w += c->basew;
1067		h += c->baseh;
1068
1069		w = MAX(w, c->minw);
1070		h = MAX(h, c->minh);
1071
1072		if(c->maxw)
1073			w = MIN(w, c->maxw);
1074
1075		if(c->maxh)
1076			h = MIN(h, c->maxh);
1077	}
1078	if(w <= 0 || h <= 0)
1079		return;
1080	if(x > sx + sw)
1081		x = sw - NOBORDER(w);
1082	if(y > sy + sh)
1083		y = sh - NOBORDER(h);
1084	if(x + w + 2 * c->bw < sx)
1085		x = sx;
1086	if(y + h + 2 * c->bw < sy)
1087		y = sy;
1088	if(h < bh)
1089		h = bh;
1090	if(w < bh)
1091		w = bh;
1092	if(c->x != x || c->y != y || c->w != w || c->h != h) {
1093		c->x = wc.x = x;
1094		c->y = wc.y = y;
1095		c->w = wc.width = w;
1096		c->h = wc.height = h;
1097		wc.border_width = c->bw;
1098		XConfigureWindow(dpy, c->win,
1099				CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
1100		configure(c);
1101		XSync(dpy, False);
1102	}
1103}
1104
1105void
1106resizemouse(const Arg *arg) {
1107	int ocx, ocy;
1108	int nw, nh;
1109	Client *c;
1110	XEvent ev;
1111
1112	if(!(c = sel))
1113		return;
1114	restack();
1115	ocx = c->x;
1116	ocy = c->y;
1117	if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
1118	None, cursor[CurResize], CurrentTime) != GrabSuccess)
1119		return;
1120	XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
1121	do {
1122		XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
1123		switch(ev.type) {
1124		case ConfigureRequest:
1125		case Expose:
1126		case MapRequest:
1127			handler[ev.type](&ev);
1128			break;
1129		case MotionNotify:
1130			XSync(dpy, False);
1131			nw = MAX(ev.xmotion.x - NOBORDER(ocx) + 1, 1);
1132			nh = MAX(ev.xmotion.y - NOBORDER(ocy) + 1, 1);
1133
1134			if(snap && nw >= wx && nw <= wx + ww
1135			        && nh >= wy && nh <= wy + wh) {
1136				if(!c->isfloating && lt[sellt]->arrange
1137				   && (abs(nw - c->w) > snap || abs(nh - c->h) > snap))
1138					togglefloating(NULL);
1139			}
1140			if(!lt[sellt]->arrange || c->isfloating)
1141				resize(c, c->x, c->y, nw, nh, True);
1142			break;
1143		}
1144	}
1145	while(ev.type != ButtonRelease);
1146	XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
1147	XUngrabPointer(dpy, CurrentTime);
1148	while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
1149}
1150
1151void
1152restack(void) {
1153	Client *c;
1154	XEvent ev;
1155	XWindowChanges wc;
1156
1157	drawbar();
1158	if(!sel)
1159		return;
1160	if(sel->isfloating || !lt[sellt]->arrange)
1161		XRaiseWindow(dpy, sel->win);
1162	if(lt[sellt]->arrange) {
1163		wc.stack_mode = Below;
1164		wc.sibling = barwin;
1165		for(c = stack; c; c = c->snext)
1166			if(!c->isfloating && ISVISIBLE(c)) {
1167				XConfigureWindow(dpy, c->win, CWSibling|CWStackMode, &wc);
1168				wc.sibling = c->win;
1169			}
1170	}
1171	XSync(dpy, False);
1172	while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
1173}
1174
1175void
1176run(void) {
1177	char *p;
1178	char sbuf[sizeof stext];
1179	fd_set rd;
1180	int r, xfd;
1181	unsigned int len, offset;
1182	XEvent ev;
1183
1184	/* main event loop, also reads status text from stdin */
1185	XSync(dpy, False);
1186	xfd = ConnectionNumber(dpy);
1187	offset = 0;
1188	len = sizeof stext - 1;
1189	sbuf[len] = stext[len] = '\0'; /* 0-terminator is never touched */
1190	while(running) {
1191		FD_ZERO(&rd);
1192		if(readin)
1193			FD_SET(STDIN_FILENO, &rd);
1194		FD_SET(xfd, &rd);
1195		if(select(xfd + 1, &rd, NULL, NULL, NULL) == -1) {
1196			if(errno == EINTR)
1197				continue;
1198			die("select failed\n");
1199		}
1200		if(FD_ISSET(STDIN_FILENO, &rd)) {
1201			switch((r = read(STDIN_FILENO, sbuf + offset, len - offset))) {
1202			case -1:
1203				strncpy(stext, strerror(errno), len);
1204				readin = False;
1205				break;
1206			case 0:
1207				strncpy(stext, "EOF", 4);
1208				readin = False;
1209				break;
1210			default:
1211				for(p = sbuf + offset; r > 0; p++, r--, offset++)
1212					if(*p == '\n' || *p == '\0') {
1213						*p = '\0';
1214						strncpy(stext, sbuf, len);
1215						p += r - 1; /* p is sbuf + offset + r - 1 */
1216						for(r = 0; *(p - r) && *(p - r) != '\n'; r++);
1217						offset = r;
1218						if(r)
1219							memmove(sbuf, p - r + 1, r);
1220						break;
1221					}
1222				break;
1223			}
1224			drawbar();
1225		}
1226		while(XPending(dpy)) {
1227			XNextEvent(dpy, &ev);
1228			if(handler[ev.type])
1229				(handler[ev.type])(&ev); /* call handler */
1230		}
1231	}
1232}
1233
1234void
1235scan(void) {
1236	unsigned int i, num;
1237	Window d1, d2, *wins = NULL;
1238	XWindowAttributes wa;
1239
1240	if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
1241		for(i = 0; i < num; i++) {
1242			if(!XGetWindowAttributes(dpy, wins[i], &wa)
1243			|| wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
1244				continue;
1245			if(wa.map_state == IsViewable || getstate(wins[i]) == IconicState)
1246				manage(wins[i], &wa);
1247		}
1248		for(i = 0; i < num; i++) { /* now the transients */
1249			if(!XGetWindowAttributes(dpy, wins[i], &wa))
1250				continue;
1251			if(XGetTransientForHint(dpy, wins[i], &d1)
1252			&& (wa.map_state == IsViewable || getstate(wins[i]) == IconicState))
1253				manage(wins[i], &wa);
1254		}
1255		if(wins)
1256			XFree(wins);
1257	}
1258}
1259
1260void
1261setclientstate(Client *c, long state) {
1262	long data[] = {state, None};
1263
1264	XChangeProperty(dpy, c->win, wmatom[WMState], wmatom[WMState], 32,
1265			PropModeReplace, (unsigned char *)data, 2);
1266}
1267
1268void
1269setlayout(const Arg *arg) {
1270	if(!arg || !arg->v || arg->v != lt[sellt])
1271		sellt ^= 1;
1272	if(arg && arg->v)
1273		lt[sellt] = (Layout *)arg->v;
1274	if(sel)
1275		arrange();
1276	else
1277		drawbar();
1278}
1279
1280/* arg > 1.0 will set mfact absolutly */
1281void
1282setmfact(const Arg *arg) {
1283	float f;
1284
1285	if(!arg || !lt[sellt]->arrange)
1286		return;
1287	f = arg->f < 1.0 ? arg->f + mfact : arg->f - 1.0;
1288	if(f < 0.1 || f > 0.9)
1289		return;
1290	mfact = f;
1291	arrange();
1292}
1293
1294void
1295setup(void) {
1296	unsigned int i;
1297	int w;
1298	XSetWindowAttributes wa;
1299
1300	/* init screen */
1301	screen = DefaultScreen(dpy);
1302	root = RootWindow(dpy, screen);
1303	initfont(font);
1304	sx = 0;
1305	sy = 0;
1306	sw = DisplayWidth(dpy, screen);
1307	sh = DisplayHeight(dpy, screen);
1308	bh = dc.h = dc.font.height + 2;
1309	lt[0] = &layouts[0];
1310	lt[1] = &layouts[1 % LENGTH(layouts)];
1311	updategeom();
1312
1313	/* init atoms */
1314	wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
1315	wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
1316	wmatom[WMState] = XInternAtom(dpy, "WM_STATE", False);
1317	netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
1318	netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
1319
1320	/* init cursors */
1321	wa.cursor = cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr);
1322	cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing);
1323	cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
1324
1325	/* init appearance */
1326	dc.norm[ColBorder] = getcolor(normbordercolor);
1327	dc.norm[ColBG] = getcolor(normbgcolor);
1328	dc.norm[ColFG] = getcolor(normfgcolor);
1329	dc.sel[ColBorder] = getcolor(selbordercolor);
1330	dc.sel[ColBG] = getcolor(selbgcolor);
1331	dc.sel[ColFG] = getcolor(selfgcolor);
1332	dc.drawable = XCreatePixmap(dpy, root, DisplayWidth(dpy, screen), bh, DefaultDepth(dpy, screen));
1333	dc.gc = XCreateGC(dpy, root, 0, 0);
1334	XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
1335	if(!dc.font.set)
1336		XSetFont(dpy, dc.gc, dc.font.xfont->fid);
1337
1338	/* init bar */
1339	for(blw = i = 0; LENGTH(layouts) > 1 && i < LENGTH(layouts); i++) {
1340		w = TEXTW(layouts[i].symbol);
1341		blw = MAX(blw, w);
1342	}
1343
1344	wa.override_redirect = 1;
1345	wa.background_pixmap = ParentRelative;
1346	wa.event_mask = ButtonPressMask|ExposureMask;
1347
1348	barwin = XCreateWindow(dpy, root, wx, by, ww, bh, 0, DefaultDepth(dpy, screen),
1349			CopyFromParent, DefaultVisual(dpy, screen),
1350			CWOverrideRedirect|CWBackPixmap|CWEventMask, &wa);
1351	XDefineCursor(dpy, barwin, cursor[CurNormal]);
1352	XMapRaised(dpy, barwin);
1353	strcpy(stext, "dwm-"VERSION);
1354	drawbar();
1355
1356	/* EWMH support per view */
1357	XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
1358			PropModeReplace, (unsigned char *) netatom, NetLast);
1359
1360	/* select for events */
1361	wa.event_mask = SubstructureRedirectMask|SubstructureNotifyMask|ButtonPressMask
1362			|EnterWindowMask|LeaveWindowMask|StructureNotifyMask;
1363	XChangeWindowAttributes(dpy, root, CWEventMask|CWCursor, &wa);
1364	XSelectInput(dpy, root, wa.event_mask);
1365
1366	grabkeys();
1367}
1368
1369void
1370showhide(Client *c) {
1371	if(!c)
1372		return;
1373	if(ISVISIBLE(c)) { /* show clients top down */
1374		XMoveWindow(dpy, c->win, c->x, c->y);
1375		if(!lt[sellt]->arrange || c->isfloating)
1376			resize(c, c->x, c->y, c->w, c->h, True);
1377		showhide(c->snext);
1378	}
1379	else { /* hide clients bottom up */
1380		showhide(c->snext);
1381		XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
1382	}
1383}
1384
1385void
1386spawn(const Arg *arg) {
1387	/* The double-fork construct avoids zombie processes and keeps the code
1388	 * clean from stupid signal handlers. */
1389	if(fork() == 0) {
1390		if(fork() == 0) {
1391			if(dpy)
1392				close(ConnectionNumber(dpy));
1393			setsid();
1394			execvp(((char **)arg->v)[0], (char **)arg->v);
1395			fprintf(stderr, "dwm: execvp %s", ((char **)arg->v)[0]);
1396			perror(" failed");
1397		}
1398		exit(0);
1399	}
1400	wait(0);
1401}
1402
1403void
1404tag(const Arg *arg) {
1405	if(sel && arg->ui & TAGMASK) {
1406		sel->tags = arg->ui & TAGMASK;
1407		arrange();
1408	}
1409}
1410
1411int
1412textnw(const char *text, unsigned int len) {
1413	XRectangle r;
1414
1415	if(dc.font.set) {
1416		XmbTextExtents(dc.font.set, text, len, NULL, &r);
1417		return r.width;
1418	}
1419	return XTextWidth(dc.font.xfont, text, len);
1420}
1421
1422void
1423tile(void) {
1424	int x, y, h, w, mw;
1425	unsigned int i, n;
1426	Client *c;
1427
1428	for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next), n++);
1429	if(n == 0)
1430		return;
1431
1432	/* master */
1433	c = nexttiled(clients);
1434	mw = mfact * ww;
1435	resize(c, wx, wy, NOBORDER(n == 1 ? ww : mw), NOBORDER(wh), resizehints);
1436
1437	if(--n == 0)
1438		return;
1439
1440	/* tile stack */
1441	x = (wx + mw > c->x + c->w) ? c->x + c->w + 2 * c->bw : wx + mw;
1442	y = wy;
1443	w = (wx + mw > c->x + c->w) ? wx + ww - x : ww - mw;
1444	h = wh / n;
1445	if(h < bh)
1446		h = wh;
1447
1448	for(i = 0, c = nexttiled(c->next); c; c = nexttiled(c->next), i++) {
1449		resize(c, x, y, NOBORDER(w), /* remainder */ ((i + 1 == n)
1450		       ? NOBORDER(wy + wh) - y : h), resizehints);
1451		if(h != wh)
1452			y = c->y + c->h + 2 * c->bw;
1453	}
1454}
1455
1456void
1457togglebar(const Arg *arg) {
1458	showbar = !showbar;
1459	updategeom();
1460	updatebar();
1461	arrange();
1462}
1463
1464void
1465togglefloating(const Arg *arg) {
1466	if(!sel)
1467		return;
1468	sel->isfloating = !sel->isfloating || sel->isfixed;
1469	if(sel->isfloating)
1470		resize(sel, sel->x, sel->y, sel->w, sel->h, True);
1471	arrange();
1472}
1473
1474void
1475toggletag(const Arg *arg) {
1476	unsigned int mask;
1477
1478	if (!sel)
1479		return;
1480	
1481	mask = sel->tags ^ (arg->ui & TAGMASK);
1482	if(sel && mask) {
1483		sel->tags = mask;
1484		arrange();
1485	}
1486}
1487
1488void
1489toggleview(const Arg *arg) {
1490	unsigned int mask = tagset[seltags] ^ (arg->ui & TAGMASK);
1491
1492	if(mask) {
1493		tagset[seltags] = mask;
1494		clearurgent();
1495		arrange();
1496	}
1497}
1498
1499void
1500unmanage(Client *c) {
1501	XWindowChanges wc;
1502
1503	wc.border_width = c->oldbw;
1504	/* The server grab construct avoids race conditions. */
1505	XGrabServer(dpy);
1506	XSetErrorHandler(xerrordummy);
1507	XConfigureWindow(dpy, c->win, CWBorderWidth, &wc); /* restore border */
1508	detach(c);
1509	detachstack(c);
1510	if(sel == c)
1511		focus(NULL);
1512	XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
1513	setclientstate(c, WithdrawnState);
1514	free(c);
1515	XSync(dpy, False);
1516	XSetErrorHandler(xerror);
1517	XUngrabServer(dpy);
1518	arrange();
1519}
1520
1521void
1522unmapnotify(XEvent *e) {
1523	Client *c;
1524	XUnmapEvent *ev = &e->xunmap;
1525
1526	if((c = getclient(ev->window)))
1527		unmanage(c);
1528}
1529
1530void
1531updatebar(void) {
1532	if(dc.drawable != 0)
1533		XFreePixmap(dpy, dc.drawable);
1534	dc.drawable = XCreatePixmap(dpy, root, ww, bh, DefaultDepth(dpy, screen));
1535	XMoveResizeWindow(dpy, barwin, wx, by, ww, bh);
1536}
1537
1538void
1539updategeom(void) {
1540#ifdef XINERAMA
1541	int n, i = 0;
1542	XineramaScreenInfo *info = NULL;
1543
1544	/* window area geometry */
1545	if(XineramaIsActive(dpy) && (info = XineramaQueryScreens(dpy, &n))) { 
1546		if(n > 1) {
1547			int di, x, y;
1548			unsigned int dui;
1549			Window dummy;
1550			if(XQueryPointer(dpy, root, &dummy, &dummy, &x, &y, &di, &di, &dui))
1551				for(i = 0; i < n; i++)
1552					if(INRECT(x, y, info[i].x_org, info[i].y_org, info[i].width, info[i].height))
1553						break;
1554		}
1555		wx = info[i].x_org;
1556		wy = showbar && topbar ?  info[i].y_org + bh : info[i].y_org;
1557		ww = info[i].width;
1558		wh = showbar ? info[i].height - bh : info[i].height;
1559		XFree(info);
1560	}
1561	else
1562#endif
1563	{
1564		wx = sx;
1565		wy = showbar && topbar ? sy + bh : sy;
1566		ww = sw;
1567		wh = showbar ? sh - bh : sh;
1568	}
1569
1570	/* bar position */
1571	by = showbar ? (topbar ? wy - bh : wy + wh) : -bh;
1572}
1573
1574void
1575updatenumlockmask(void) {
1576	unsigned int i, j;
1577	XModifierKeymap *modmap;
1578
1579	numlockmask = 0;
1580	modmap = XGetModifierMapping(dpy);
1581	for(i = 0; i < 8; i++)
1582		for(j = 0; j < modmap->max_keypermod; j++)
1583			if(modmap->modifiermap[i * modmap->max_keypermod + j] == XKeysymToKeycode(dpy, XK_Num_Lock))
1584				numlockmask = (1 << i);
1585	XFreeModifiermap(modmap);
1586}
1587
1588void
1589updatesizehints(Client *c) {
1590	long msize;
1591	XSizeHints size;
1592
1593	if(!XGetWMNormalHints(dpy, c->win, &size, &msize))
1594		/* size is uninitialized, ensure that size.flags aren't used */
1595		size.flags = PSize; 
1596	if(size.flags & PBaseSize) {
1597		c->basew = size.base_width;
1598		c->baseh = size.base_height;
1599	}
1600	else if(size.flags & PMinSize) {
1601		c->basew = size.min_width;
1602		c->baseh = size.min_height;
1603	}
1604	else
1605		c->basew = c->baseh = 0;
1606	if(size.flags & PResizeInc) {
1607		c->incw = size.width_inc;
1608		c->inch = size.height_inc;
1609	}
1610	else
1611		c->incw = c->inch = 0;
1612	if(size.flags & PMaxSize) {
1613		c->maxw = size.max_width;
1614		c->maxh = size.max_height;
1615	}
1616	else
1617		c->maxw = c->maxh = 0;
1618	if(size.flags & PMinSize) {
1619		c->minw = size.min_width;
1620		c->minh = size.min_height;
1621	}
1622	else if(size.flags & PBaseSize) {
1623		c->minw = size.base_width;
1624		c->minh = size.base_height;
1625	}
1626	else
1627		c->minw = c->minh = 0;
1628	if(size.flags & PAspect) {
1629		c->mina = (float)size.min_aspect.y / (float)size.min_aspect.x;
1630		c->maxa = (float)size.max_aspect.x / (float)size.max_aspect.y;
1631	}
1632	else
1633		c->maxa = c->mina = 0.0;
1634	c->isfixed = (c->maxw && c->minw && c->maxh && c->minh
1635	             && c->maxw == c->minw && c->maxh == c->minh);
1636}
1637
1638void
1639updatetitle(Client *c) {
1640	if(!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name))
1641		gettextprop(c->win, XA_WM_NAME, c->name, sizeof c->name);
1642}
1643
1644void
1645updatewmhints(Client *c) {
1646	XWMHints *wmh;
1647
1648	if((wmh = XGetWMHints(dpy, c->win))) {
1649		if(ISVISIBLE(c) && wmh->flags & XUrgencyHint) {
1650			wmh->flags &= ~XUrgencyHint;
1651			XSetWMHints(dpy, c->win, wmh);
1652		}
1653		else
1654			c->isurgent = (wmh->flags & XUrgencyHint) ? True : False;
1655
1656		XFree(wmh);
1657	}
1658}
1659
1660void
1661view(const Arg *arg) {
1662	if((arg->ui & TAGMASK) == tagset[seltags])
1663		return;
1664	seltags ^= 1; /* toggle sel tagset */
1665	if(arg->ui & TAGMASK)
1666		tagset[seltags] = arg->ui & TAGMASK;
1667	clearurgent();
1668	arrange();
1669}
1670
1671/* There's no way to check accesses to destroyed windows, thus those cases are
1672 * ignored (especially on UnmapNotify's).  Other types of errors call Xlibs
1673 * default error handler, which may call exit.  */
1674int
1675xerror(Display *dpy, XErrorEvent *ee) {
1676	if(ee->error_code == BadWindow
1677	|| (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
1678	|| (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
1679	|| (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
1680	|| (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
1681	|| (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
1682	|| (ee->request_code == X_GrabButton && ee->error_code == BadAccess)
1683	|| (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
1684	|| (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
1685		return 0;
1686	fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
1687			ee->request_code, ee->error_code);
1688	return xerrorxlib(dpy, ee); /* may call exit */
1689}
1690
1691int
1692xerrordummy(Display *dpy, XErrorEvent *ee) {
1693	return 0;
1694}
1695
1696/* Startup Error handler to check if another window manager
1697 * is already running. */
1698int
1699xerrorstart(Display *dpy, XErrorEvent *ee) {
1700	otherwm = True;
1701	return -1;
1702}
1703
1704void
1705zoom(const Arg *arg) {
1706	Client *c = sel;
1707
1708	if(!lt[sellt]->arrange || lt[sellt]->arrange == monocle || (sel && sel->isfloating))
1709		return;
1710	if(c == nexttiled(clients))
1711		if(!c || !(c = nexttiled(c->next)))
1712			return;
1713	detach(c);
1714	attach(c);
1715	focus(c);
1716	arrange();
1717}
1718
1719int
1720main(int argc, char *argv[]) {
1721	if(argc == 2 && !strcmp("-v", argv[1]))
1722		die("dwm-"VERSION", © 2006-2008 dwm engineers, see LICENSE for details\n");
1723	else if(argc != 1)
1724		die("usage: dwm [-v]\n");
1725
1726	if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())
1727		fprintf(stderr, "warning: no locale support\n");
1728
1729	if(!(dpy = XOpenDisplay(0)))
1730		die("dwm: cannot open display\n");
1731
1732	checkotherwm();
1733	setup();
1734	scan();
1735	run();
1736	cleanup();
1737
1738	XCloseDisplay(dpy);
1739	return 0;
1740}