1 /* See LICENSE file for copyright and license details.
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.
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.
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
22 * Keys and tagging rules are organized as arrays and defined in config.h.
24 * To understand everything else, start reading main().
33 #include <sys/select.h>
34 #include <sys/types.h>
36 #include <X11/cursorfont.h>
37 #include <X11/keysym.h>
38 #include <X11/Xatom.h>
40 #include <X11/Xproto.h>
41 #include <X11/Xutil.h>
43 #include <X11/extensions/Xinerama.h>
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))
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)
61 enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
62 enum { ColBorder, ColFG, ColBG, ColLast }; /* color */
63 enum { NetSupported, NetWMName, NetLast }; /* EWMH atoms */
64 enum { WMProtocols, WMDelete, WMState, WMLast }; /* default atoms */
65 enum { ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle,
66 ClkClientWin, ClkRootWin, ClkLast }; /* clicks */
79 void (*func)(const Arg *arg);
83 typedef struct Client Client;
88 int basew, baseh, incw, inch, maxw, maxh, minw, minh;
91 Bool isfixed, isfloating, isurgent;
99 unsigned long norm[ColLast];
100 unsigned long sel[ColLast];
110 } DC; /* draw context */
115 void (*func)(const Arg *);
121 void (*arrange)(void);
126 const char *instance;
132 /* function declarations */
133 static void applyrules(Client *c);
134 static void arrange(void);
135 static void attach(Client *c);
136 static void attachstack(Client *c);
137 static void buttonpress(XEvent *e);
138 static void checkotherwm(void);
139 static void cleanup(void);
140 static void clearurgent(void);
141 static void configure(Client *c);
142 static void configurenotify(XEvent *e);
143 static void configurerequest(XEvent *e);
144 static void destroynotify(XEvent *e);
145 static void detach(Client *c);
146 static void detachstack(Client *c);
147 static void die(const char *errstr, ...);
148 static void drawbar(void);
149 static void drawsquare(Bool filled, Bool empty, Bool invert, unsigned long col[ColLast]);
150 static void drawtext(const char *text, unsigned long col[ColLast], Bool invert);
151 static void enternotify(XEvent *e);
152 static void expose(XEvent *e);
153 static void focus(Client *c);
154 static void focusin(XEvent *e);
155 static void focusstack(const Arg *arg);
156 static Client *getclient(Window w);
157 static unsigned long getcolor(const char *colstr);
158 static long getstate(Window w);
159 static Bool gettextprop(Window w, Atom atom, char *text, unsigned int size);
160 static void grabbuttons(Client *c, Bool focused);
161 static void grabkeys(void);
162 static void initfont(const char *fontstr);
163 static Bool isprotodel(Client *c);
164 static void keypress(XEvent *e);
165 static void killclient(const Arg *arg);
166 static void manage(Window w, XWindowAttributes *wa);
167 static void mappingnotify(XEvent *e);
168 static void maprequest(XEvent *e);
169 static void monocle(void);
170 static void movemouse(const Arg *arg);
171 static Client *nexttiled(Client *c);
172 static void propertynotify(XEvent *e);
173 static void quit(const Arg *arg);
174 static void resize(Client *c, int x, int y, int w, int h, Bool sizehints);
175 static void resizemouse(const Arg *arg);
176 static void restack(void);
177 static void run(void);
178 static void scan(void);
179 static void setclientstate(Client *c, long state);
180 static void setlayout(const Arg *arg);
181 static void setmfact(const Arg *arg);
182 static void setup(void);
183 static void spawn(const Arg *arg);
184 static void tag(const Arg *arg);
185 static int textnw(const char *text, unsigned int len);
186 static void tile(void);
187 static void togglebar(const Arg *arg);
188 static void togglefloating(const Arg *arg);
189 static void toggletag(const Arg *arg);
190 static void toggleview(const Arg *arg);
191 static void unmanage(Client *c);
192 static void unmapnotify(XEvent *e);
193 static void updatebar(void);
194 static void updategeom(void);
195 static void updatenumlockmask(void);
196 static void updatesizehints(Client *c);
197 static void updatetitle(Client *c);
198 static void updatewmhints(Client *c);
199 static void view(const Arg *arg);
200 static int xerror(Display *dpy, XErrorEvent *ee);
201 static int xerrordummy(Display *dpy, XErrorEvent *ee);
202 static int xerrorstart(Display *dpy, XErrorEvent *ee);
203 static void zoom(const Arg *arg);
206 static char stext[256];
208 static int sx, sy, sw, sh; /* X display screen geometry x, y, width, height */
209 static int by, bh, blw; /* bar geometry y, height and layout symbol width */
210 static int wx, wy, ww, wh; /* window area geometry x, y, width, height, bar excluded */
211 static unsigned int seltags = 0, sellt = 0;
212 static int (*xerrorxlib)(Display *, XErrorEvent *);
213 static unsigned int numlockmask = 0;
214 static void (*handler[LASTEvent]) (XEvent *) = {
215 [ButtonPress] = buttonpress,
216 [ConfigureRequest] = configurerequest,
217 [ConfigureNotify] = configurenotify,
218 [DestroyNotify] = destroynotify,
219 [EnterNotify] = enternotify,
222 [KeyPress] = keypress,
223 [MappingNotify] = mappingnotify,
224 [MapRequest] = maprequest,
225 [PropertyNotify] = propertynotify,
226 [UnmapNotify] = unmapnotify
228 static Atom wmatom[WMLast], netatom[NetLast];
230 static Bool running = True;
231 static Client *clients = NULL;
232 static Client *sel = NULL;
233 static Client *stack = NULL;
234 static Cursor cursor[CurLast];
237 static Layout *lt[] = { NULL, NULL };
238 static Window root, barwin;
239 /* configuration, allows nested code to access above variables */
242 /* compile-time check if all tags fit into an unsigned int bit array. */
243 struct NumTags { char limitexceeded[sizeof(unsigned int) * 8 < LENGTH(tags) ? -1 : 1]; };
245 /* function implementations */
247 applyrules(Client *c) {
250 XClassHint ch = { 0 };
253 if(XGetClassHint(dpy, c->win, &ch)) {
254 for(i = 0; i < LENGTH(rules); i++) {
256 if((!r->title || strstr(c->name, r->title))
257 && (!r->class || (ch.res_class && strstr(ch.res_class, r->class)))
258 && (!r->instance || (ch.res_name && strstr(ch.res_name, r->instance)))) {
259 c->isfloating = r->isfloating;
260 c->tags |= r->tags & TAGMASK;
269 c->tags = tagset[seltags];
276 for(c = clients; c; c = c->next)
278 XMoveWindow(dpy, c->win, c->x, c->y);
279 if(!lt[sellt]->arrange || c->isfloating)
280 resize(c, c->x, c->y, c->w, c->h, True);
283 XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
287 if(lt[sellt]->arrange)
288 lt[sellt]->arrange();
299 attachstack(Client *c) {
305 buttonpress(XEvent *e) {
306 unsigned int i, x, click;
309 XButtonPressedEvent *ev = &e->xbutton;
312 if(ev->window == barwin) {
314 do x += TEXTW(tags[i]); while(ev->x >= x && ++i < LENGTH(tags));
315 if(i < LENGTH(tags)) {
319 else if(ev->x < x + blw)
321 else if(ev->x > wx + ww - TEXTW(stext))
322 click = ClkStatusText;
326 else if((c = getclient(ev->window))) {
328 click = ClkClientWin;
331 for(i = 0; i < LENGTH(buttons); i++)
332 if(click == buttons[i].click && buttons[i].func && buttons[i].button == ev->button
333 && CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
334 buttons[i].func(click == ClkTagBar && buttons[i].arg.i == 0 ? &arg : &buttons[i].arg);
340 XSetErrorHandler(xerrorstart);
342 /* this causes an error if some other window manager is running */
343 XSelectInput(dpy, DefaultRootWindow(dpy), SubstructureRedirectMask);
346 die("dwm: another window manager is already running\n");
347 XSetErrorHandler(NULL);
348 xerrorxlib = XSetErrorHandler(xerror);
355 Layout foo = { "", NULL };
363 XFreeFontSet(dpy, dc.font.set);
365 XFreeFont(dpy, dc.font.xfont);
366 XUngrabKey(dpy, AnyKey, AnyModifier, root);
367 XFreePixmap(dpy, dc.drawable);
369 XFreeCursor(dpy, cursor[CurNormal]);
370 XFreeCursor(dpy, cursor[CurResize]);
371 XFreeCursor(dpy, cursor[CurMove]);
372 XDestroyWindow(dpy, barwin);
374 XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
382 for(c = clients; c; c = c->next)
383 if(ISVISIBLE(c) && c->isurgent) {
385 if (!(wmh = XGetWMHints(dpy, c->win)))
388 wmh->flags &= ~XUrgencyHint;
389 XSetWMHints(dpy, c->win, wmh);
395 configure(Client *c) {
398 ce.type = ConfigureNotify;
406 ce.border_width = c->bw;
408 ce.override_redirect = False;
409 XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&ce);
413 configurenotify(XEvent *e) {
414 XConfigureEvent *ev = &e->xconfigure;
416 if(ev->window == root && (ev->width != sw || ev->height != sh)) {
426 configurerequest(XEvent *e) {
428 XConfigureRequestEvent *ev = &e->xconfigurerequest;
431 if((c = getclient(ev->window))) {
432 if(ev->value_mask & CWBorderWidth)
433 c->bw = ev->border_width;
434 else if(c->isfloating || !lt[sellt]->arrange) {
435 if(ev->value_mask & CWX)
437 if(ev->value_mask & CWY)
439 if(ev->value_mask & CWWidth)
441 if(ev->value_mask & CWHeight)
443 if((c->x - sx + c->w) > sw && c->isfloating)
444 c->x = sx + (sw / 2 - c->w / 2); /* center in x direction */
445 if((c->y - sy + c->h) > sh && c->isfloating)
446 c->y = sy + (sh / 2 - c->h / 2); /* center in y direction */
447 if((ev->value_mask & (CWX|CWY)) && !(ev->value_mask & (CWWidth|CWHeight)))
450 XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
458 wc.width = ev->width;
459 wc.height = ev->height;
460 wc.border_width = ev->border_width;
461 wc.sibling = ev->above;
462 wc.stack_mode = ev->detail;
463 XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
469 destroynotify(XEvent *e) {
471 XDestroyWindowEvent *ev = &e->xdestroywindow;
473 if((c = getclient(ev->window)))
481 for(tc = &clients; *tc && *tc != c; tc = &(*tc)->next);
486 detachstack(Client *c) {
489 for(tc = &stack; *tc && *tc != c; tc = &(*tc)->snext);
494 die(const char *errstr, ...) {
497 va_start(ap, errstr);
498 vfprintf(stderr, errstr, ap);
506 unsigned int i, occ = 0, urg = 0;
510 for(c = clients; c; c = c->next) {
517 for(i = 0; i < LENGTH(tags); i++) {
518 dc.w = TEXTW(tags[i]);
519 col = tagset[seltags] & 1 << i ? dc.sel : dc.norm;
520 drawtext(tags[i], col, urg & 1 << i);
521 drawsquare(sel && sel->tags & 1 << i, occ & 1 << i, urg & 1 << i, col);
526 drawtext(lt[sellt]->symbol, dc.norm, False);
537 drawtext(stext, dc.norm, False);
538 if((dc.w = dc.x - x) > bh) {
541 drawtext(sel->name, dc.sel, False);
542 drawsquare(sel->isfixed, sel->isfloating, False, dc.sel);
545 drawtext(NULL, dc.norm, False);
547 XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, ww, bh, 0, 0);
552 drawsquare(Bool filled, Bool empty, Bool invert, unsigned long col[ColLast]) {
555 XRectangle r = { dc.x, dc.y, dc.w, dc.h };
557 gcv.foreground = col[invert ? ColBG : ColFG];
558 XChangeGC(dpy, dc.gc, GCForeground, &gcv);
559 x = (dc.font.ascent + dc.font.descent + 2) / 4;
563 r.width = r.height = x + 1;
564 XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
567 r.width = r.height = x;
568 XDrawRectangles(dpy, dc.drawable, dc.gc, &r, 1);
573 drawtext(const char *text, unsigned long col[ColLast], Bool invert) {
575 int i, x, y, h, len, olen;
576 XRectangle r = { dc.x, dc.y, dc.w, dc.h };
578 XSetForeground(dpy, dc.gc, col[invert ? ColFG : ColBG]);
579 XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
583 h = dc.font.ascent + dc.font.descent;
584 y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent;
586 /* shorten text if necessary */
587 for(len = MIN(olen, sizeof buf); len && textnw(text, len) > dc.w - h; len--);
590 memcpy(buf, text, len);
592 for(i = len; i && i > len - 3; buf[--i] = '.');
593 XSetForeground(dpy, dc.gc, col[invert ? ColBG : ColFG]);
595 XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);
597 XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
601 enternotify(XEvent *e) {
603 XCrossingEvent *ev = &e->xcrossing;
605 if((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
607 if((c = getclient(ev->window)))
615 XExposeEvent *ev = &e->xexpose;
617 if(ev->count == 0 && (ev->window == barwin))
623 if(!c || !ISVISIBLE(c))
624 for(c = stack; c && !ISVISIBLE(c); c = c->snext);
625 if(sel && sel != c) {
626 grabbuttons(sel, False);
627 XSetWindowBorder(dpy, sel->win, dc.norm[ColBorder]);
632 grabbuttons(c, True);
633 XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]);
634 XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
637 XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
643 focusin(XEvent *e) { /* there are some broken focus acquiring clients */
644 XFocusChangeEvent *ev = &e->xfocus;
646 if(sel && ev->window != sel->win)
647 XSetInputFocus(dpy, sel->win, RevertToPointerRoot, CurrentTime);
651 focusstack(const Arg *arg) {
652 Client *c = NULL, *i;
657 for(c = sel->next; c && !ISVISIBLE(c); c = c->next);
659 for(c = clients; c && !ISVISIBLE(c); c = c->next);
662 for(i = clients; i != sel; i = i->next)
666 for(; i; i = i->next)
677 getclient(Window w) {
680 for(c = clients; c && c->win != w; c = c->next);
685 getcolor(const char *colstr) {
686 Colormap cmap = DefaultColormap(dpy, screen);
689 if(!XAllocNamedColor(dpy, cmap, colstr, &color, &color))
690 die("error, cannot allocate color '%s'\n", colstr);
698 unsigned char *p = NULL;
699 unsigned long n, extra;
702 status = XGetWindowProperty(dpy, w, wmatom[WMState], 0L, 2L, False, wmatom[WMState],
703 &real, &format, &n, &extra, (unsigned char **)&p);
704 if(status != Success)
713 gettextprop(Window w, Atom atom, char *text, unsigned int size) {
718 if(!text || size == 0)
721 XGetTextProperty(dpy, w, &name, atom);
724 if(name.encoding == XA_STRING)
725 strncpy(text, (char *)name.value, size - 1);
727 if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success
729 strncpy(text, *list, size - 1);
730 XFreeStringList(list);
733 text[size - 1] = '\0';
739 grabbuttons(Client *c, Bool focused) {
743 unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
744 XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
746 for(i = 0; i < LENGTH(buttons); i++)
747 if(buttons[i].click == ClkClientWin)
748 for(j = 0; j < LENGTH(modifiers); j++)
749 XGrabButton(dpy, buttons[i].button, buttons[i].mask | modifiers[j], c->win, False, BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
751 XGrabButton(dpy, AnyButton, AnyModifier, c->win, False,
752 BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
761 unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
764 XUngrabKey(dpy, AnyKey, AnyModifier, root);
765 for(i = 0; i < LENGTH(keys); i++) {
766 if((code = XKeysymToKeycode(dpy, keys[i].keysym)))
767 for(j = 0; j < LENGTH(modifiers); j++)
768 XGrabKey(dpy, code, keys[i].mod | modifiers[j], root,
769 True, GrabModeAsync, GrabModeAsync);
775 initfont(const char *fontstr) {
776 char *def, **missing;
780 dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
783 fprintf(stderr, "dwm: missing fontset: %s\n", missing[n]);
784 XFreeStringList(missing);
787 XFontSetExtents *font_extents;
788 XFontStruct **xfonts;
790 dc.font.ascent = dc.font.descent = 0;
791 font_extents = XExtentsOfFontSet(dc.font.set);
792 n = XFontsOfFontSet(dc.font.set, &xfonts, &font_names);
793 for(i = 0, dc.font.ascent = 0, dc.font.descent = 0; i < n; i++) {
794 dc.font.ascent = MAX(dc.font.ascent, (*xfonts)->ascent);
795 dc.font.descent = MAX(dc.font.descent,(*xfonts)->descent);
800 if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))
801 && !(dc.font.xfont = XLoadQueryFont(dpy, "fixed")))
802 die("error, cannot load font: '%s'\n", fontstr);
803 dc.font.ascent = dc.font.xfont->ascent;
804 dc.font.descent = dc.font.xfont->descent;
806 dc.font.height = dc.font.ascent + dc.font.descent;
810 isprotodel(Client *c) {
815 if(XGetWMProtocols(dpy, c->win, &protocols, &n)) {
816 for(i = 0; !ret && i < n; i++)
817 if(protocols[i] == wmatom[WMDelete])
825 keypress(XEvent *e) {
831 keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
832 for(i = 0; i < LENGTH(keys); i++)
833 if(keysym == keys[i].keysym
834 && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
836 keys[i].func(&(keys[i].arg));
840 killclient(const Arg *arg) {
845 if(isprotodel(sel)) {
846 ev.type = ClientMessage;
847 ev.xclient.window = sel->win;
848 ev.xclient.message_type = wmatom[WMProtocols];
849 ev.xclient.format = 32;
850 ev.xclient.data.l[0] = wmatom[WMDelete];
851 ev.xclient.data.l[1] = CurrentTime;
852 XSendEvent(dpy, sel->win, False, NoEventMask, &ev);
855 XKillClient(dpy, sel->win);
859 manage(Window w, XWindowAttributes *wa) {
860 Client *c, *t = NULL;
864 if(!(c = calloc(1, sizeof(Client))))
865 die("fatal: could not calloc() %u bytes\n", sizeof(Client));
873 c->oldbw = wa->border_width;
874 if(c->w == sw && c->h == sh) {
880 if(c->x + c->w + 2 * c->bw > sx + sw)
881 c->x = sx + sw - NOBORDER(c->w);
882 if(c->y + c->h + 2 * c->bw > sy + sh)
883 c->y = sy + sh - NOBORDER(c->h);
884 c->x = MAX(c->x, sx);
885 /* only fix client y-offset, if the client center might cover the bar */
886 c->y = MAX(c->y, ((by == 0) && (c->x + (c->w / 2) >= wx) && (c->x + (c->w / 2) < wx + ww)) ? bh : sy);
890 wc.border_width = c->bw;
891 XConfigureWindow(dpy, w, CWBorderWidth, &wc);
892 XSetWindowBorder(dpy, w, dc.norm[ColBorder]);
893 configure(c); /* propagates border_width, if size doesn't change */
895 XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
896 grabbuttons(c, False);
898 if(XGetTransientForHint(dpy, w, &trans))
899 t = getclient(trans);
905 c->isfloating = trans != None || c->isfixed;
907 XRaiseWindow(dpy, c->win);
910 XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */
911 XMapWindow(dpy, c->win);
912 setclientstate(c, NormalState);
917 mappingnotify(XEvent *e) {
918 XMappingEvent *ev = &e->xmapping;
920 XRefreshKeyboardMapping(ev);
921 if(ev->request == MappingKeyboard)
926 maprequest(XEvent *e) {
927 static XWindowAttributes wa;
928 XMapRequestEvent *ev = &e->xmaprequest;
930 if(!XGetWindowAttributes(dpy, ev->window, &wa))
932 if(wa.override_redirect)
934 if(!getclient(ev->window))
935 manage(ev->window, &wa);
942 for(c = nexttiled(clients); c; c = nexttiled(c->next))
943 resize(c, wx, wy, NOBORDER(ww), NOBORDER(wh), resizehints);
947 movemouse(const Arg *arg) {
948 int x, y, ocx, ocy, di, nx, ny;
959 if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
960 None, cursor[CurMove], CurrentTime) != GrabSuccess)
962 XQueryPointer(dpy, root, &dummy, &dummy, &x, &y, &di, &di, &dui);
964 XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
966 case ConfigureRequest:
969 handler[ev.type](&ev);
973 nx = ocx + (ev.xmotion.x - x);
974 ny = ocy + (ev.xmotion.y - y);
975 if(snap && nx >= wx && nx <= wx + ww
976 && ny >= wy && ny <= wy + wh) {
977 if(abs(wx - nx) < snap)
979 else if(abs((wx + ww) - (nx + c->w + 2 * c->bw)) < snap)
980 nx = wx + ww - NOBORDER(c->w);
981 if(abs(wy - ny) < snap)
983 else if(abs((wy + wh) - (ny + c->h + 2 * c->bw)) < snap)
984 ny = wy + wh - NOBORDER(c->h);
985 if(!c->isfloating && lt[sellt]->arrange && (abs(nx - c->x) > snap || abs(ny - c->y) > snap))
986 togglefloating(NULL);
988 if(!lt[sellt]->arrange || c->isfloating)
989 resize(c, nx, ny, c->w, c->h, False);
993 while(ev.type != ButtonRelease);
994 XUngrabPointer(dpy, CurrentTime);
998 nexttiled(Client *c) {
999 for(; c && (c->isfloating || !ISVISIBLE(c)); c = c->next);
1004 propertynotify(XEvent *e) {
1007 XPropertyEvent *ev = &e->xproperty;
1009 if(ev->state == PropertyDelete)
1010 return; /* ignore */
1011 if((c = getclient(ev->window))) {
1014 case XA_WM_TRANSIENT_FOR:
1015 XGetTransientForHint(dpy, c->win, &trans);
1016 if(!c->isfloating && (c->isfloating = (getclient(trans) != NULL)))
1019 case XA_WM_NORMAL_HINTS:
1027 if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
1036 quit(const Arg *arg) {
1037 readin = running = False;
1041 resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
1045 /* see last two sentences in ICCCM 4.1.2.3 */
1046 Bool baseismin = c->basew == c->minw && c->baseh == c->minh;
1048 /* set minimum possible */
1052 if(!baseismin) { /* temporarily remove base dimensions */
1057 /* adjust for aspect limits */
1058 if(c->mina > 0 && c->maxa > 0) {
1059 if(c->maxa < (float)(w / h))
1061 else if(c->mina < (float)(h / w))
1065 if(baseismin) { /* increment calculation requires this */
1070 /* adjust for increment value */
1076 /* restore base dimensions */
1080 w = MAX(w, c->minw);
1081 h = MAX(h, c->minh);
1084 w = MIN(w, c->maxw);
1087 h = MIN(h, c->maxh);
1089 if(w <= 0 || h <= 0)
1092 x = sw - NOBORDER(w);
1094 y = sh - NOBORDER(h);
1095 if(x + w + 2 * c->bw < sx)
1097 if(y + h + 2 * c->bw < sy)
1103 if(c->x != x || c->y != y || c->w != w || c->h != h) {
1106 c->w = wc.width = w;
1107 c->h = wc.height = h;
1108 wc.border_width = c->bw;
1109 XConfigureWindow(dpy, c->win,
1110 CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
1117 resizemouse(const Arg *arg) {
1128 if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
1129 None, cursor[CurResize], CurrentTime) != GrabSuccess)
1131 XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
1133 XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
1135 case ConfigureRequest:
1138 handler[ev.type](&ev);
1142 nw = MAX(ev.xmotion.x - NOBORDER(ocx) + 1, 1);
1143 nh = MAX(ev.xmotion.y - NOBORDER(ocy) + 1, 1);
1145 if(snap && nw >= wx && nw <= wx + ww
1146 && nh >= wy && nh <= wy + wh) {
1147 if(!c->isfloating && lt[sellt]->arrange
1148 && (abs(nw - c->w) > snap || abs(nh - c->h) > snap))
1149 togglefloating(NULL);
1151 if(!lt[sellt]->arrange || c->isfloating)
1152 resize(c, c->x, c->y, nw, nh, True);
1156 while(ev.type != ButtonRelease);
1157 XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
1158 XUngrabPointer(dpy, CurrentTime);
1159 while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
1171 if(sel->isfloating || !lt[sellt]->arrange)
1172 XRaiseWindow(dpy, sel->win);
1173 if(lt[sellt]->arrange) {
1174 wc.stack_mode = Below;
1175 wc.sibling = barwin;
1176 for(c = stack; c; c = c->snext)
1177 if(!c->isfloating && ISVISIBLE(c)) {
1178 XConfigureWindow(dpy, c->win, CWSibling|CWStackMode, &wc);
1179 wc.sibling = c->win;
1183 while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
1189 char sbuf[sizeof stext];
1192 unsigned int len, offset;
1195 /* main event loop, also reads status text from stdin */
1197 xfd = ConnectionNumber(dpy);
1199 len = sizeof stext - 1;
1200 sbuf[len] = stext[len] = '\0'; /* 0-terminator is never touched */
1204 FD_SET(STDIN_FILENO, &rd);
1206 if(select(xfd + 1, &rd, NULL, NULL, NULL) == -1) {
1209 die("select failed\n");
1211 if(FD_ISSET(STDIN_FILENO, &rd)) {
1212 switch((r = read(STDIN_FILENO, sbuf + offset, len - offset))) {
1214 strncpy(stext, strerror(errno), len);
1218 strncpy(stext, "EOF", 4);
1222 for(p = sbuf + offset; r > 0; p++, r--, offset++)
1223 if(*p == '\n' || *p == '\0') {
1225 strncpy(stext, sbuf, len);
1226 p += r - 1; /* p is sbuf + offset + r - 1 */
1227 for(r = 0; *(p - r) && *(p - r) != '\n'; r++);
1230 memmove(sbuf, p - r + 1, r);
1237 while(XPending(dpy)) {
1238 XNextEvent(dpy, &ev);
1239 if(handler[ev.type])
1240 (handler[ev.type])(&ev); /* call handler */
1247 unsigned int i, num;
1248 Window d1, d2, *wins = NULL;
1249 XWindowAttributes wa;
1251 if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
1252 for(i = 0; i < num; i++) {
1253 if(!XGetWindowAttributes(dpy, wins[i], &wa)
1254 || wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
1256 if(wa.map_state == IsViewable || getstate(wins[i]) == IconicState)
1257 manage(wins[i], &wa);
1259 for(i = 0; i < num; i++) { /* now the transients */
1260 if(!XGetWindowAttributes(dpy, wins[i], &wa))
1262 if(XGetTransientForHint(dpy, wins[i], &d1)
1263 && (wa.map_state == IsViewable || getstate(wins[i]) == IconicState))
1264 manage(wins[i], &wa);
1272 setclientstate(Client *c, long state) {
1273 long data[] = {state, None};
1275 XChangeProperty(dpy, c->win, wmatom[WMState], wmatom[WMState], 32,
1276 PropModeReplace, (unsigned char *)data, 2);
1280 setlayout(const Arg *arg) {
1281 if(!arg || !arg->v || arg->v != lt[sellt])
1284 lt[sellt] = (Layout *)arg->v;
1291 /* arg > 1.0 will set mfact absolutly */
1293 setmfact(const Arg *arg) {
1296 if(!arg || !lt[sellt]->arrange)
1298 f = arg->f < 1.0 ? arg->f + mfact : arg->f - 1.0;
1299 if(f < 0.1 || f > 0.9)
1309 XSetWindowAttributes wa;
1312 screen = DefaultScreen(dpy);
1313 root = RootWindow(dpy, screen);
1317 sw = DisplayWidth(dpy, screen);
1318 sh = DisplayHeight(dpy, screen);
1319 bh = dc.h = dc.font.height + 2;
1320 lt[0] = &layouts[0];
1321 lt[1] = &layouts[1 % LENGTH(layouts)];
1325 wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
1326 wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
1327 wmatom[WMState] = XInternAtom(dpy, "WM_STATE", False);
1328 netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
1329 netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
1332 wa.cursor = cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr);
1333 cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing);
1334 cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
1336 /* init appearance */
1337 dc.norm[ColBorder] = getcolor(normbordercolor);
1338 dc.norm[ColBG] = getcolor(normbgcolor);
1339 dc.norm[ColFG] = getcolor(normfgcolor);
1340 dc.sel[ColBorder] = getcolor(selbordercolor);
1341 dc.sel[ColBG] = getcolor(selbgcolor);
1342 dc.sel[ColFG] = getcolor(selfgcolor);
1343 dc.drawable = XCreatePixmap(dpy, root, DisplayWidth(dpy, screen), bh, DefaultDepth(dpy, screen));
1344 dc.gc = XCreateGC(dpy, root, 0, 0);
1345 XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
1347 XSetFont(dpy, dc.gc, dc.font.xfont->fid);
1350 for(blw = i = 0; LENGTH(layouts) > 1 && i < LENGTH(layouts); i++) {
1351 w = TEXTW(layouts[i].symbol);
1355 wa.override_redirect = 1;
1356 wa.background_pixmap = ParentRelative;
1357 wa.event_mask = ButtonPressMask|ExposureMask;
1359 barwin = XCreateWindow(dpy, root, wx, by, ww, bh, 0, DefaultDepth(dpy, screen),
1360 CopyFromParent, DefaultVisual(dpy, screen),
1361 CWOverrideRedirect|CWBackPixmap|CWEventMask, &wa);
1362 XDefineCursor(dpy, barwin, cursor[CurNormal]);
1363 XMapRaised(dpy, barwin);
1364 strcpy(stext, "dwm-"VERSION);
1367 /* EWMH support per view */
1368 XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
1369 PropModeReplace, (unsigned char *) netatom, NetLast);
1371 /* select for events */
1372 wa.event_mask = SubstructureRedirectMask|SubstructureNotifyMask|ButtonPressMask
1373 |EnterWindowMask|LeaveWindowMask|StructureNotifyMask;
1374 XChangeWindowAttributes(dpy, root, CWEventMask|CWCursor, &wa);
1375 XSelectInput(dpy, root, wa.event_mask);
1381 spawn(const Arg *arg) {
1382 /* The double-fork construct avoids zombie processes and keeps the code
1383 * clean from stupid signal handlers. */
1387 close(ConnectionNumber(dpy));
1389 execvp(((char **)arg->v)[0], (char **)arg->v);
1390 fprintf(stderr, "dwm: execvp %s", ((char **)arg->v)[0]);
1399 tag(const Arg *arg) {
1400 if(sel && arg->ui & TAGMASK) {
1401 sel->tags = arg->ui & TAGMASK;
1407 textnw(const char *text, unsigned int len) {
1411 XmbTextExtents(dc.font.set, text, len, NULL, &r);
1414 return XTextWidth(dc.font.xfont, text, len);
1423 for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next), n++);
1428 c = nexttiled(clients);
1430 resize(c, wx, wy, NOBORDER(n == 1 ? ww : mw), NOBORDER(wh), resizehints);
1436 x = (wx + mw > c->x + c->w) ? c->x + c->w + 2 * c->bw : wx + mw;
1438 w = (wx + mw > c->x + c->w) ? wx + ww - x : ww - mw;
1443 for(i = 0, c = nexttiled(c->next); c; c = nexttiled(c->next), i++) {
1444 resize(c, x, y, NOBORDER(w), /* remainder */ ((i + 1 == n)
1445 ? NOBORDER(wy + wh) - y : h), resizehints);
1447 y = c->y + c->h + 2 * c->bw;
1452 togglebar(const Arg *arg) {
1460 togglefloating(const Arg *arg) {
1463 sel->isfloating = !sel->isfloating || sel->isfixed;
1465 resize(sel, sel->x, sel->y, sel->w, sel->h, True);
1470 toggletag(const Arg *arg) {
1476 mask = sel->tags ^ (arg->ui & TAGMASK);
1484 toggleview(const Arg *arg) {
1485 unsigned int mask = tagset[seltags] ^ (arg->ui & TAGMASK);
1488 tagset[seltags] = mask;
1495 unmanage(Client *c) {
1498 wc.border_width = c->oldbw;
1499 /* The server grab construct avoids race conditions. */
1501 XSetErrorHandler(xerrordummy);
1502 XConfigureWindow(dpy, c->win, CWBorderWidth, &wc); /* restore border */
1507 XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
1508 setclientstate(c, WithdrawnState);
1511 XSetErrorHandler(xerror);
1517 unmapnotify(XEvent *e) {
1519 XUnmapEvent *ev = &e->xunmap;
1521 if((c = getclient(ev->window)))
1527 if(dc.drawable != 0)
1528 XFreePixmap(dpy, dc.drawable);
1529 dc.drawable = XCreatePixmap(dpy, root, ww, bh, DefaultDepth(dpy, screen));
1530 XMoveResizeWindow(dpy, barwin, wx, by, ww, bh);
1537 XineramaScreenInfo *info = NULL;
1539 /* window area geometry */
1540 if(XineramaIsActive(dpy) && (info = XineramaQueryScreens(dpy, &n))) {
1545 if(XQueryPointer(dpy, root, &dummy, &dummy, &x, &y, &di, &di, &dui))
1546 for(i = 0; i < n; i++)
1547 if(INRECT(x, y, info[i].x_org, info[i].y_org, info[i].width, info[i].height))
1551 wy = showbar && topbar ? info[i].y_org + bh : info[i].y_org;
1553 wh = showbar ? info[i].height - bh : info[i].height;
1560 wy = showbar && topbar ? sy + bh : sy;
1562 wh = showbar ? sh - bh : sh;
1566 by = showbar ? (topbar ? wy - bh : wy + wh) : -bh;
1570 updatenumlockmask(void) {
1572 XModifierKeymap *modmap;
1575 modmap = XGetModifierMapping(dpy);
1576 for(i = 0; i < 8; i++)
1577 for(j = 0; j < modmap->max_keypermod; j++)
1578 if(modmap->modifiermap[i * modmap->max_keypermod + j] == XKeysymToKeycode(dpy, XK_Num_Lock))
1579 numlockmask = (1 << i);
1580 XFreeModifiermap(modmap);
1584 updatesizehints(Client *c) {
1588 XGetWMNormalHints(dpy, c->win, &size, &msize);
1589 if(size.flags & PBaseSize) {
1590 c->basew = size.base_width;
1591 c->baseh = size.base_height;
1593 else if(size.flags & PMinSize) {
1594 c->basew = size.min_width;
1595 c->baseh = size.min_height;
1598 c->basew = c->baseh = 0;
1599 if(size.flags & PResizeInc) {
1600 c->incw = size.width_inc;
1601 c->inch = size.height_inc;
1604 c->incw = c->inch = 0;
1605 if(size.flags & PMaxSize) {
1606 c->maxw = size.max_width;
1607 c->maxh = size.max_height;
1610 c->maxw = c->maxh = 0;
1611 if(size.flags & PMinSize) {
1612 c->minw = size.min_width;
1613 c->minh = size.min_height;
1615 else if(size.flags & PBaseSize) {
1616 c->minw = size.base_width;
1617 c->minh = size.base_height;
1620 c->minw = c->minh = 0;
1621 if(size.flags & PAspect) {
1622 c->mina = (float)size.min_aspect.y / (float)size.min_aspect.x;
1623 c->maxa = (float)size.max_aspect.x / (float)size.max_aspect.y;
1626 c->maxa = c->mina = 0.0;
1627 c->isfixed = (c->maxw && c->minw && c->maxh && c->minh
1628 && c->maxw == c->minw && c->maxh == c->minh);
1632 updatetitle(Client *c) {
1633 if(!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name))
1634 gettextprop(c->win, XA_WM_NAME, c->name, sizeof c->name);
1638 updatewmhints(Client *c) {
1641 if((wmh = XGetWMHints(dpy, c->win))) {
1642 if(ISVISIBLE(c) && wmh->flags & XUrgencyHint) {
1643 wmh->flags &= ~XUrgencyHint;
1644 XSetWMHints(dpy, c->win, wmh);
1647 c->isurgent = (wmh->flags & XUrgencyHint) ? True : False;
1654 view(const Arg *arg) {
1655 if((arg->ui & TAGMASK) == tagset[seltags])
1657 seltags ^= 1; /* toggle sel tagset */
1658 if(arg->ui & TAGMASK)
1659 tagset[seltags] = arg->ui & TAGMASK;
1664 /* There's no way to check accesses to destroyed windows, thus those cases are
1665 * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
1666 * default error handler, which may call exit. */
1668 xerror(Display *dpy, XErrorEvent *ee) {
1669 if(ee->error_code == BadWindow
1670 || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
1671 || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
1672 || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
1673 || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
1674 || (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
1675 || (ee->request_code == X_GrabButton && ee->error_code == BadAccess)
1676 || (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
1677 || (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
1679 fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
1680 ee->request_code, ee->error_code);
1681 return xerrorxlib(dpy, ee); /* may call exit */
1685 xerrordummy(Display *dpy, XErrorEvent *ee) {
1689 /* Startup Error handler to check if another window manager
1690 * is already running. */
1692 xerrorstart(Display *dpy, XErrorEvent *ee) {
1698 zoom(const Arg *arg) {
1701 if(!lt[sellt]->arrange || lt[sellt]->arrange == monocle || (sel && sel->isfloating))
1703 if(c == nexttiled(clients))
1704 if(!c || !(c = nexttiled(c->next)))
1713 main(int argc, char *argv[]) {
1714 if(argc == 2 && !strcmp("-v", argv[1]))
1715 die("dwm-"VERSION", © 2006-2008 dwm engineers, see LICENSE for details\n");
1717 die("usage: dwm [-v]\n");
1719 if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())
1720 fprintf(stderr, "warning: no locale support\n");
1722 if(!(dpy = XOpenDisplay(0)))
1723 die("dwm: cannot open display\n");