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 an array of Bools of the same size as the
20 * global tags array to indicate the tags of a client.
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>
44 #define MAX(a, b) ((a)>(b)?(a):(b))
45 #define MIN(a, b) ((a)<(b)?(a):(b))
46 #define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
47 #define CLEANMASK(mask) (mask & ~(numlockmask|LockMask))
48 #define LENGTH(x) (sizeof x / sizeof x[0])
50 #define MOUSEMASK (BUTTONMASK|PointerMotionMask)
51 #define DEFGEOM(GEONAME,BX,BY,BW,WX,WY,WW,WH,MX,MY,MW,MH,TX,TY,TW,TH,MOX,MOY,MOW,MOH) \
52 void GEONAME(void) { \
53 bx = (BX); by = (BY); bw = (BW); \
54 wx = (WX); wy = (WY); ww = (WW); wh = (WH); \
55 mx = (MX); my = (MY); mw = (MW); mh = (MH); \
56 tx = (TX); ty = (TY); tw = (TW); th = (TH); \
57 mox = (MOX); moy = (MOY); mow = (MOW); moh = (MOH); \
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, WMName, WMState, WMLast };/* default atoms */
67 typedef struct Client Client;
71 int basew, baseh, incw, inch, maxw, maxh, minw, minh;
72 int minax, maxax, minay, maxay;
74 unsigned int bw, oldbw;
75 Bool isbanned, isfixed, isfloating, isurgent;
85 unsigned long norm[ColLast];
86 unsigned long sel[ColLast];
96 } DC; /* draw context */
106 void (*func)(const char *arg);
112 void (*arrange)(void);
118 const char *instance;
124 /* function declarations */
125 void applyrules(Client *c);
127 void attach(Client *c);
128 void attachstack(Client *c);
130 void buttonpress(XEvent *e);
131 void checkotherwm(void);
133 void configure(Client *c);
134 void configurenotify(XEvent *e);
135 void configurerequest(XEvent *e);
136 unsigned int counttiled(void);
137 void destroynotify(XEvent *e);
138 void detach(Client *c);
139 void detachstack(Client *c);
141 void drawsquare(Bool filled, Bool empty, Bool invert, unsigned long col[ColLast]);
142 void drawtext(const char *text, unsigned long col[ColLast], Bool invert);
143 void *emallocz(unsigned int size);
144 void enternotify(XEvent *e);
145 void eprint(const char *errstr, ...);
146 void expose(XEvent *e);
147 void floating(void); /* default floating layout */
148 void focus(Client *c);
149 void focusin(XEvent *e);
150 void focusnext(const char *arg);
151 void focusprev(const char *arg);
152 Client *getclient(Window w);
153 unsigned long getcolor(const char *colstr);
154 long getstate(Window w);
155 Bool gettextprop(Window w, Atom atom, char *text, unsigned int size);
156 void grabbuttons(Client *c, Bool focused);
158 unsigned int idxoftag(const char *t);
159 void initfont(const char *fontstr);
160 Bool isoccupied(unsigned int t);
161 Bool isprotodel(Client *c);
162 Bool isurgent(unsigned int t);
163 Bool isvisible(Client *c);
164 void keypress(XEvent *e);
165 void killclient(const char *arg);
166 void manage(Window w, XWindowAttributes *wa);
167 void mappingnotify(XEvent *e);
168 void maprequest(XEvent *e);
170 void movemouse(Client *c);
171 Client *nexttiled(Client *c);
172 void propertynotify(XEvent *e);
173 void quit(const char *arg);
174 void reapply(const char *arg);
175 void resize(Client *c, int x, int y, int w, int h, Bool sizehints);
176 void resizemouse(Client *c);
180 void setclientstate(Client *c, long state);
181 void setgeom(const char *arg);
182 void setlayout(const char *arg);
183 void setmfact(const char *arg);
185 void spawn(const char *arg);
186 void tag(const char *arg);
187 unsigned int textnw(const char *text, unsigned int len);
188 unsigned int textw(const char *text);
190 void tilehstack(unsigned int n);
191 Client *tilemaster(unsigned int n);
192 void tileresize(Client *c, int x, int y, int w, int h);
194 void tilevstack(unsigned int n);
195 void togglefloating(const char *arg);
196 void toggletag(const char *arg);
197 void toggleview(const char *arg);
198 void unban(Client *c);
199 void unmanage(Client *c);
200 void unmapnotify(XEvent *e);
201 void updatebarpos(void);
202 void updatesizehints(Client *c);
203 void updatetitle(Client *c);
204 void updatewmhints(Client *c);
205 void view(const char *arg);
206 void viewprevtag(const char *arg); /* views previous selected tags */
207 int xerror(Display *dpy, XErrorEvent *ee);
208 int xerrordummy(Display *dpy, XErrorEvent *ee);
209 int xerrorstart(Display *dpy, XErrorEvent *ee);
210 void zoom(const char *arg);
213 char stext[256], buf[256];
214 int screen, sx, sy, sw, sh;
215 int (*xerrorxlib)(Display *, XErrorEvent *);
216 int bx, by, bw, bh, blw, bgw, mx, my, mw, mh, mox, moy, mow, moh, tx, ty, tw, th, wx, wy, ww, wh;
217 int viewtags_set = 0;
219 unsigned int numlockmask = 0;
220 void (*handler[LASTEvent]) (XEvent *) = {
221 [ButtonPress] = buttonpress,
222 [ConfigureRequest] = configurerequest,
223 [ConfigureNotify] = configurenotify,
224 [DestroyNotify] = destroynotify,
225 [EnterNotify] = enternotify,
228 [KeyPress] = keypress,
229 [MappingNotify] = mappingnotify,
230 [MapRequest] = maprequest,
231 [PropertyNotify] = propertynotify,
232 [UnmapNotify] = unmapnotify
234 Atom wmatom[WMLast], netatom[NetLast];
235 Bool otherwm, readin;
239 Client *clients = NULL;
241 Client *stack = NULL;
242 Cursor cursor[CurLast];
247 /* configuration, allows nested code to access above variables */
249 #define TAGSZ (LENGTH(tags) * sizeof(Bool))
250 Layout *lt = layouts;
253 /* function implementations */
256 applyrules(Client *c) {
258 Bool matched = False;
260 XClassHint ch = { 0 };
263 XGetClassHint(dpy, c->win, &ch);
264 for(i = 0; i < LENGTH(rules); i++) {
266 if((!r->title || strstr(c->name, r->title))
267 && (!r->class || (ch.res_class && strstr(ch.res_class, r->class)))
268 && (!r->instance || (ch.res_name && strstr(ch.res_name, r->instance)))) {
269 c->isfloating = r->isfloating;
271 c->tags[idxoftag(r->tag)] = True;
281 memcpy(c->tags, seltags, TAGSZ);
288 for(c = clients; c; c = c->next)
308 attachstack(Client *c) {
317 XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
322 buttonpress(XEvent *e) {
325 XButtonPressedEvent *ev = &e->xbutton;
327 if(ev->window == barwin) {
328 if((ev->x < bgw) && ev->button == Button1) {
333 for(i = 0; i < LENGTH(tags); i++) {
335 if(ev->x >= bgw && ev->x < x) {
336 if(ev->button == Button1) {
337 if(ev->state & MODKEY)
342 else if(ev->button == Button3) {
343 if(ev->state & MODKEY)
351 if((ev->x < x + blw) && ev->button == Button1)
354 else if((c = getclient(ev->window))) {
356 if(CLEANMASK(ev->state) != MODKEY)
358 if(ev->button == Button1) {
362 else if(ev->button == Button2) {
363 if((floating != lt->arrange) && c->isfloating)
364 togglefloating(NULL);
368 else if(ev->button == Button3 && !c->isfixed) {
378 XSetErrorHandler(xerrorstart);
380 /* this causes an error if some other window manager is running */
381 XSelectInput(dpy, DefaultRootWindow(dpy), SubstructureRedirectMask);
384 eprint("dwm: another window manager is already running\n");
386 XSetErrorHandler(NULL);
387 xerrorxlib = XSetErrorHandler(xerror);
399 XFreeFontSet(dpy, dc.font.set);
401 XFreeFont(dpy, dc.font.xfont);
402 XUngrabKey(dpy, AnyKey, AnyModifier, root);
403 XFreePixmap(dpy, dc.drawable);
405 XFreeCursor(dpy, cursor[CurNormal]);
406 XFreeCursor(dpy, cursor[CurResize]);
407 XFreeCursor(dpy, cursor[CurMove]);
408 XDestroyWindow(dpy, barwin);
410 XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
414 configure(Client *c) {
417 ce.type = ConfigureNotify;
425 ce.border_width = c->bw;
427 ce.override_redirect = False;
428 XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&ce);
432 configurenotify(XEvent *e) {
433 XConfigureEvent *ev = &e->xconfigure;
435 if(ev->window == root && (ev->width != sw || ev->height != sh)) {
438 setgeom(geom->symbol);
443 configurerequest(XEvent *e) {
445 XConfigureRequestEvent *ev = &e->xconfigurerequest;
448 if((c = getclient(ev->window))) {
449 if(ev->value_mask & CWBorderWidth)
450 c->bw = ev->border_width;
451 if(c->isfixed || c->isfloating || lt->isfloating) {
452 if(ev->value_mask & CWX)
454 if(ev->value_mask & CWY)
456 if(ev->value_mask & CWWidth)
458 if(ev->value_mask & CWHeight)
460 if((c->x - sx + c->w) > sw && c->isfloating)
461 c->x = sx + (sw / 2 - c->w / 2); /* center in x direction */
462 if((c->y - sy + c->h) > sh && c->isfloating)
463 c->y = sy + (sh / 2 - c->h / 2); /* center in y direction */
464 if((ev->value_mask & (CWX|CWY))
465 && !(ev->value_mask & (CWWidth|CWHeight)))
468 XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
476 wc.width = ev->width;
477 wc.height = ev->height;
478 wc.border_width = ev->border_width;
479 wc.sibling = ev->above;
480 wc.stack_mode = ev->detail;
481 XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
491 for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next), n++);
496 destroynotify(XEvent *e) {
498 XDestroyWindowEvent *ev = &e->xdestroywindow;
500 if((c = getclient(ev->window)))
507 c->prev->next = c->next;
509 c->next->prev = c->prev;
512 c->next = c->prev = NULL;
516 detachstack(Client *c) {
519 for(tc=&stack; *tc && *tc != c; tc=&(*tc)->snext);
531 drawtext(geom->symbol, dc.norm, False);
534 for(c = stack; c && !isvisible(c); c = c->snext);
535 for(i = 0; i < LENGTH(tags); i++) {
536 dc.w = textw(tags[i]);
538 drawtext(tags[i], dc.sel, isurgent(i));
539 drawsquare(c && c->tags[i], isoccupied(i), isurgent(i), dc.sel);
542 drawtext(tags[i], dc.norm, isurgent(i));
543 drawsquare(c && c->tags[i], isoccupied(i), isurgent(i), dc.norm);
549 drawtext(lt->symbol, dc.norm, False);
560 drawtext(stext, dc.norm, False);
561 if((dc.w = dc.x - x) > bh) {
564 drawtext(c->name, dc.sel, False);
565 drawsquare(False, c->isfloating, False, dc.sel);
568 drawtext(NULL, dc.norm, False);
570 XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, bw, bh, 0, 0);
575 drawsquare(Bool filled, Bool empty, Bool invert, unsigned long col[ColLast]) {
578 XRectangle r = { dc.x, dc.y, dc.w, dc.h };
580 gcv.foreground = col[invert ? ColBG : ColFG];
581 XChangeGC(dpy, dc.gc, GCForeground, &gcv);
582 x = (dc.font.ascent + dc.font.descent + 2) / 4;
586 r.width = r.height = x + 1;
587 XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
590 r.width = r.height = x;
591 XDrawRectangles(dpy, dc.drawable, dc.gc, &r, 1);
596 drawtext(const char *text, unsigned long col[ColLast], Bool invert) {
598 unsigned int len, olen;
599 XRectangle r = { dc.x, dc.y, dc.w, dc.h };
601 XSetForeground(dpy, dc.gc, col[invert ? ColFG : ColBG]);
602 XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
607 len = MIN(olen, sizeof buf - 1);
608 memcpy(buf, text, len);
610 h = dc.font.ascent + dc.font.descent;
611 y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent;
613 /* shorten text if necessary */
614 while(len && (w = textnw(buf, len)) > dc.w - h)
625 return; /* too long */
626 XSetForeground(dpy, dc.gc, col[invert ? ColBG : ColFG]);
628 XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);
630 XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
634 emallocz(unsigned int size) {
635 void *res = calloc(1, size);
638 eprint("fatal: could not malloc() %u bytes\n", size);
643 enternotify(XEvent *e) {
645 XCrossingEvent *ev = &e->xcrossing;
647 if((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
649 if((c = getclient(ev->window)))
656 eprint(const char *errstr, ...) {
659 va_start(ap, errstr);
660 vfprintf(stderr, errstr, ap);
667 XExposeEvent *ev = &e->xexpose;
669 if(ev->count == 0 && (ev->window == barwin))
674 floating(void) { /* default floating layout */
677 for(c = clients; c; c = c->next)
679 resize(c, c->x, c->y, c->w, c->h, True);
684 if(!c || (c && !isvisible(c)))
685 for(c = stack; c && !isvisible(c); c = c->snext);
686 if(sel && sel != c) {
687 grabbuttons(sel, False);
688 XSetWindowBorder(dpy, sel->win, dc.norm[ColBorder]);
693 grabbuttons(c, True);
697 XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]);
698 XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
701 XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
706 focusin(XEvent *e) { /* there are some broken focus acquiring clients */
707 XFocusChangeEvent *ev = &e->xfocus;
709 if(sel && ev->window != sel->win)
710 XSetInputFocus(dpy, sel->win, RevertToPointerRoot, CurrentTime);
714 focusnext(const char *arg) {
719 for(c = sel->next; c && !isvisible(c); c = c->next);
721 for(c = clients; c && !isvisible(c); c = c->next);
729 focusprev(const char *arg) {
734 for(c = sel->prev; c && !isvisible(c); c = c->prev);
736 for(c = clients; c && c->next; c = c->next);
737 for(; c && !isvisible(c); c = c->prev);
746 getclient(Window w) {
749 for(c = clients; c && c->win != w; c = c->next);
754 getcolor(const char *colstr) {
755 Colormap cmap = DefaultColormap(dpy, screen);
758 if(!XAllocNamedColor(dpy, cmap, colstr, &color, &color))
759 eprint("error, cannot allocate color '%s'\n", colstr);
767 unsigned char *p = NULL;
768 unsigned long n, extra;
771 status = XGetWindowProperty(dpy, w, wmatom[WMState], 0L, 2L, False, wmatom[WMState],
772 &real, &format, &n, &extra, (unsigned char **)&p);
773 if(status != Success)
782 gettextprop(Window w, Atom atom, char *text, unsigned int size) {
787 if(!text || size == 0)
790 XGetTextProperty(dpy, w, &name, atom);
793 if(name.encoding == XA_STRING)
794 strncpy(text, (char *)name.value, size - 1);
796 if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success
798 strncpy(text, *list, size - 1);
799 XFreeStringList(list);
802 text[size - 1] = '\0';
808 grabbuttons(Client *c, Bool focused) {
810 unsigned int buttons[] = { Button1, Button2, Button3 };
811 unsigned int modifiers[] = { MODKEY, MODKEY|LockMask, MODKEY|numlockmask,
812 MODKEY|numlockmask|LockMask} ;
814 XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
816 for(i = 0; i < LENGTH(buttons); i++)
817 for(j = 0; j < LENGTH(modifiers); j++)
818 XGrabButton(dpy, buttons[i], modifiers[j], c->win, False,
819 BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
821 XGrabButton(dpy, AnyButton, AnyModifier, c->win, False,
822 BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
829 XModifierKeymap *modmap;
831 /* init modifier map */
832 modmap = XGetModifierMapping(dpy);
833 for(i = 0; i < 8; i++)
834 for(j = 0; j < modmap->max_keypermod; j++) {
835 if(modmap->modifiermap[i * modmap->max_keypermod + j] == XKeysymToKeycode(dpy, XK_Num_Lock))
836 numlockmask = (1 << i);
838 XFreeModifiermap(modmap);
840 XUngrabKey(dpy, AnyKey, AnyModifier, root);
841 for(i = 0; i < LENGTH(keys); i++) {
842 code = XKeysymToKeycode(dpy, keys[i].keysym);
843 XGrabKey(dpy, code, keys[i].mod, root, True,
844 GrabModeAsync, GrabModeAsync);
845 XGrabKey(dpy, code, keys[i].mod|LockMask, root, True,
846 GrabModeAsync, GrabModeAsync);
847 XGrabKey(dpy, code, keys[i].mod|numlockmask, root, True,
848 GrabModeAsync, GrabModeAsync);
849 XGrabKey(dpy, code, keys[i].mod|numlockmask|LockMask, root, True,
850 GrabModeAsync, GrabModeAsync);
855 idxoftag(const char *t) {
858 for(i = 0; (i < LENGTH(tags)) && t && strcmp(tags[i], t); i++);
859 return (i < LENGTH(tags)) ? i : 0;
863 initfont(const char *fontstr) {
864 char *def, **missing;
869 XFreeFontSet(dpy, dc.font.set);
870 dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
873 fprintf(stderr, "dwm: missing fontset: %s\n", missing[n]);
874 XFreeStringList(missing);
877 XFontSetExtents *font_extents;
878 XFontStruct **xfonts;
880 dc.font.ascent = dc.font.descent = 0;
881 font_extents = XExtentsOfFontSet(dc.font.set);
882 n = XFontsOfFontSet(dc.font.set, &xfonts, &font_names);
883 for(i = 0, dc.font.ascent = 0, dc.font.descent = 0; i < n; i++) {
884 dc.font.ascent = MAX(dc.font.ascent, (*xfonts)->ascent);
885 dc.font.descent = MAX(dc.font.descent,(*xfonts)->descent);
891 XFreeFont(dpy, dc.font.xfont);
892 dc.font.xfont = NULL;
893 if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))
894 && !(dc.font.xfont = XLoadQueryFont(dpy, "fixed")))
895 eprint("error, cannot load font: '%s'\n", fontstr);
896 dc.font.ascent = dc.font.xfont->ascent;
897 dc.font.descent = dc.font.xfont->descent;
899 dc.font.height = dc.font.ascent + dc.font.descent;
903 isoccupied(unsigned int t) {
906 for(c = clients; c; c = c->next)
913 isprotodel(Client *c) {
918 if(XGetWMProtocols(dpy, c->win, &protocols, &n)) {
919 for(i = 0; !ret && i < n; i++)
920 if(protocols[i] == wmatom[WMDelete])
928 isurgent(unsigned int t) {
931 for(c = clients; c; c = c->next)
932 if(c->isurgent && c->tags[t])
938 isvisible(Client *c) {
941 for(i = 0; i < LENGTH(tags); i++)
942 if(c->tags[i] && seltags[i])
948 keypress(XEvent *e) {
954 keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
955 for(i = 0; i < LENGTH(keys); i++)
956 if(keysym == keys[i].keysym
957 && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state))
960 keys[i].func(keys[i].arg);
965 killclient(const char *arg) {
970 if(isprotodel(sel)) {
971 ev.type = ClientMessage;
972 ev.xclient.window = sel->win;
973 ev.xclient.message_type = wmatom[WMProtocols];
974 ev.xclient.format = 32;
975 ev.xclient.data.l[0] = wmatom[WMDelete];
976 ev.xclient.data.l[1] = CurrentTime;
977 XSendEvent(dpy, sel->win, False, NoEventMask, &ev);
980 XKillClient(dpy, sel->win);
984 manage(Window w, XWindowAttributes *wa) {
985 Client *c, *t = NULL;
990 c = emallocz(sizeof(Client));
991 c->tags = emallocz(TAGSZ);
999 c->oldbw = wa->border_width;
1000 if(c->w == sw && c->h == sh) {
1003 c->bw = wa->border_width;
1006 if(c->x + c->w + 2 * c->bw > wx + ww)
1007 c->x = wx + ww - c->w - 2 * c->bw;
1008 if(c->y + c->h + 2 * c->bw > wy + wh)
1009 c->y = wy + wh - c->h - 2 * c->bw;
1010 c->x = MAX(c->x, wx);
1011 c->y = MAX(c->y, wy);
1015 wc.border_width = c->bw;
1016 XConfigureWindow(dpy, w, CWBorderWidth, &wc);
1017 XSetWindowBorder(dpy, w, dc.norm[ColBorder]);
1018 configure(c); /* propagates border_width, if size doesn't change */
1020 XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
1021 grabbuttons(c, False);
1023 if((rettrans = XGetTransientForHint(dpy, w, &trans) == Success))
1024 for(t = clients; t && t->win != trans; t = t->next);
1026 memcpy(c->tags, t->tags, TAGSZ);
1030 c->isfloating = (rettrans == Success) || c->isfixed;
1033 XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h); /* some windows require this */
1035 XMapWindow(dpy, c->win);
1036 setclientstate(c, NormalState);
1041 mappingnotify(XEvent *e) {
1042 XMappingEvent *ev = &e->xmapping;
1044 XRefreshKeyboardMapping(ev);
1045 if(ev->request == MappingKeyboard)
1050 maprequest(XEvent *e) {
1051 static XWindowAttributes wa;
1052 XMapRequestEvent *ev = &e->xmaprequest;
1054 if(!XGetWindowAttributes(dpy, ev->window, &wa))
1056 if(wa.override_redirect)
1058 if(!getclient(ev->window))
1059 manage(ev->window, &wa);
1066 for(c = clients; c; c = c->next)
1067 if((lt->isfloating || !c->isfloating) && isvisible(c))
1068 resize(c, mox, moy, mow - 2 * c->bw, moh - 2 * c->bw, RESIZEHINTS);
1072 movemouse(Client *c) {
1073 int x1, y1, ocx, ocy, di, nx, ny;
1080 if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
1081 None, cursor[CurMove], CurrentTime) != GrabSuccess)
1083 XQueryPointer(dpy, root, &dummy, &dummy, &x1, &y1, &di, &di, &dui);
1085 XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
1088 XUngrabPointer(dpy, CurrentTime);
1090 case ConfigureRequest:
1093 handler[ev.type](&ev);
1097 nx = ocx + (ev.xmotion.x - x1);
1098 ny = ocy + (ev.xmotion.y - y1);
1099 if(abs(wx - nx) < SNAP)
1101 else if(abs((wx + ww) - (nx + c->w + 2 * c->bw)) < SNAP)
1102 nx = wx + ww - c->w - 2 * c->bw;
1103 if(abs(wy - ny) < SNAP)
1105 else if(abs((wy + wh) - (ny + c->h + 2 * c->bw)) < SNAP)
1106 ny = wy + wh - c->h - 2 * c->bw;
1107 if(!c->isfloating && !lt->isfloating && (abs(nx - c->x) > SNAP || abs(ny - c->y) > SNAP))
1108 togglefloating(NULL);
1109 if((lt->isfloating) || c->isfloating)
1110 resize(c, nx, ny, c->w, c->h, False);
1117 nexttiled(Client *c) {
1118 for(; c && (c->isfloating || !isvisible(c)); c = c->next);
1123 propertynotify(XEvent *e) {
1126 XPropertyEvent *ev = &e->xproperty;
1128 if(ev->state == PropertyDelete)
1129 return; /* ignore */
1130 if((c = getclient(ev->window))) {
1133 case XA_WM_TRANSIENT_FOR:
1134 XGetTransientForHint(dpy, c->win, &trans);
1135 if(!c->isfloating && (c->isfloating = (getclient(trans) != NULL)))
1138 case XA_WM_NORMAL_HINTS:
1146 if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
1155 quit(const char *arg) {
1156 readin = running = False;
1160 reapply(const char *arg) {
1163 for(c = clients; c; c = c->next) {
1164 memset(c->tags, 0, TAGSZ);
1171 resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
1175 /* set minimum possible */
1179 /* temporarily remove base dimensions */
1183 /* adjust for aspect limits */
1184 if(c->minax != c->maxax && c->minay != c->maxay
1185 && c->minax > 0 && c->maxax > 0 && c->minay > 0 && c->maxay > 0)
1187 if(w * c->maxay > h * c->maxax)
1188 w = h * c->maxax / c->maxay;
1189 else if(w * c->minay < h * c->minax)
1190 h = w * c->minay / c->minax;
1193 /* adjust for increment value */
1199 /* restore base dimensions */
1203 w = MAX(w, c->minw);
1204 h = MAX(h, c->minh);
1207 w = MIN(w, c->maxw);
1210 h = MIN(h, c->maxh);
1212 if(w <= 0 || h <= 0)
1215 x = sw - w - 2 * c->bw;
1217 y = sh - h - 2 * c->bw;
1218 if(x + w + 2 * c->bw < sx)
1220 if(y + h + 2 * c->bw < sy)
1222 if(c->x != x || c->y != y || c->w != w || c->h != h) {
1225 c->w = wc.width = w;
1226 c->h = wc.height = h;
1227 wc.border_width = c->bw;
1228 XConfigureWindow(dpy, c->win,
1229 CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
1236 resizemouse(Client *c) {
1243 if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
1244 None, cursor[CurResize], CurrentTime) != GrabSuccess)
1246 XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
1248 XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask , &ev);
1251 XWarpPointer(dpy, None, c->win, 0, 0, 0, 0,
1252 c->w + c->bw - 1, c->h + c->bw - 1);
1253 XUngrabPointer(dpy, CurrentTime);
1254 while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
1256 case ConfigureRequest:
1259 handler[ev.type](&ev);
1263 nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1);
1264 nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1);
1265 if(!c->isfloating && !lt->isfloating && (abs(nw - c->w) > SNAP || abs(nh - c->h) > SNAP))
1266 togglefloating(NULL);
1267 if((lt->isfloating) || c->isfloating)
1268 resize(c, c->x, c->y, nw, nh, True);
1283 if(sel->isfloating || lt->isfloating)
1284 XRaiseWindow(dpy, sel->win);
1285 if(!lt->isfloating) {
1286 wc.stack_mode = Below;
1287 wc.sibling = barwin;
1288 if(!sel->isfloating) {
1289 XConfigureWindow(dpy, sel->win, CWSibling|CWStackMode, &wc);
1290 wc.sibling = sel->win;
1292 for(c = nexttiled(clients); c; c = nexttiled(c->next)) {
1295 XConfigureWindow(dpy, c->win, CWSibling|CWStackMode, &wc);
1296 wc.sibling = c->win;
1300 while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
1306 char sbuf[sizeof stext];
1309 unsigned int len, offset;
1312 /* main event loop, also reads status text from stdin */
1314 xfd = ConnectionNumber(dpy);
1317 len = sizeof stext - 1;
1318 sbuf[len] = stext[len] = '\0'; /* 0-terminator is never touched */
1322 FD_SET(STDIN_FILENO, &rd);
1324 if(select(xfd + 1, &rd, NULL, NULL, NULL) == -1) {
1327 eprint("select failed\n");
1329 if(FD_ISSET(STDIN_FILENO, &rd)) {
1330 switch((r = read(STDIN_FILENO, sbuf + offset, len - offset))) {
1332 strncpy(stext, strerror(errno), len);
1336 strncpy(stext, "EOF", 4);
1340 for(p = sbuf + offset; r > 0; p++, r--, offset++)
1341 if(*p == '\n' || *p == '\0') {
1343 strncpy(stext, sbuf, len);
1344 p += r - 1; /* p is sbuf + offset + r - 1 */
1345 for(r = 0; *(p - r) && *(p - r) != '\n'; r++);
1348 memmove(sbuf, p - r + 1, r);
1355 while(XPending(dpy)) {
1356 XNextEvent(dpy, &ev);
1357 if(handler[ev.type])
1358 (handler[ev.type])(&ev); /* call handler */
1365 unsigned int i, num;
1366 Window *wins, d1, d2;
1367 XWindowAttributes wa;
1370 if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
1371 for(i = 0; i < num; i++) {
1372 if(!XGetWindowAttributes(dpy, wins[i], &wa)
1373 || wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
1375 if(wa.map_state == IsViewable || getstate(wins[i]) == IconicState)
1376 manage(wins[i], &wa);
1378 for(i = 0; i < num; i++) { /* now the transients */
1379 if(!XGetWindowAttributes(dpy, wins[i], &wa))
1381 if(XGetTransientForHint(dpy, wins[i], &d1)
1382 && (wa.map_state == IsViewable || getstate(wins[i]) == IconicState))
1383 manage(wins[i], &wa);
1391 setclientstate(Client *c, long state) {
1392 long data[] = {state, None};
1394 XChangeProperty(dpy, c->win, wmatom[WMState], wmatom[WMState], 32,
1395 PropModeReplace, (unsigned char *)data, 2);
1399 setgeom(const char *arg) {
1403 if(++geom == &geoms[LENGTH(geoms)])
1407 for(i = 0; i < LENGTH(geoms); i++)
1408 if(!strcmp(geoms[i].symbol, arg))
1410 if(i == LENGTH(geoms))
1420 setlayout(const char *arg) {
1424 if(++lt == &layouts[LENGTH(layouts)])
1428 for(i = 0; i < LENGTH(layouts); i++)
1429 if(!strcmp(arg, layouts[i].symbol))
1431 if(i == LENGTH(layouts))
1442 setmfact(const char *arg) {
1450 d = strtod(arg, NULL);
1451 if(arg[0] == '-' || arg[0] == '+')
1453 if(d < 0.1 || d > 0.9)
1457 setgeom(geom->symbol);
1463 XSetWindowAttributes wa;
1466 screen = DefaultScreen(dpy);
1467 root = RootWindow(dpy, screen);
1470 /* apply default geometry */
1473 sw = DisplayWidth(dpy, screen);
1474 sh = DisplayHeight(dpy, screen);
1475 bh = dc.font.height + 2;
1480 wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
1481 wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
1482 wmatom[WMName] = XInternAtom(dpy, "WM_NAME", False);
1483 wmatom[WMState] = XInternAtom(dpy, "WM_STATE", False);
1484 netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
1485 netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
1488 wa.cursor = cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr);
1489 cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing);
1490 cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
1492 /* init appearance */
1493 dc.norm[ColBorder] = getcolor(NORMBORDERCOLOR);
1494 dc.norm[ColBG] = getcolor(NORMBGCOLOR);
1495 dc.norm[ColFG] = getcolor(NORMFGCOLOR);
1496 dc.sel[ColBorder] = getcolor(SELBORDERCOLOR);
1497 dc.sel[ColBG] = getcolor(SELBGCOLOR);
1498 dc.sel[ColFG] = getcolor(SELFGCOLOR);
1501 dc.drawable = XCreatePixmap(dpy, root, DisplayWidth(dpy, screen), bh, DefaultDepth(dpy, screen));
1502 dc.gc = XCreateGC(dpy, root, 0, 0);
1503 XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
1505 XSetFont(dpy, dc.gc, dc.font.xfont->fid);
1508 viewtags[0] = emallocz(TAGSZ);
1509 viewtags[1] = emallocz(TAGSZ);
1510 viewtags[0][0] = viewtags[1][0] = True;
1511 seltags = viewtags[0];
1514 for(blw = i = 0; LENGTH(layouts) > 1 && i < LENGTH(layouts); i++) {
1515 w = textw(layouts[i].symbol);
1518 for(bgw = i = 0; LENGTH(geoms) > 1 && i < LENGTH(geoms); i++) {
1519 w = textw(geoms[i].symbol);
1523 wa.override_redirect = 1;
1524 wa.background_pixmap = ParentRelative;
1525 wa.event_mask = ButtonPressMask|ExposureMask;
1527 barwin = XCreateWindow(dpy, root, bx, by, bw, bh, 0, DefaultDepth(dpy, screen),
1528 CopyFromParent, DefaultVisual(dpy, screen),
1529 CWOverrideRedirect|CWBackPixmap|CWEventMask, &wa);
1530 XDefineCursor(dpy, barwin, cursor[CurNormal]);
1531 XMapRaised(dpy, barwin);
1532 strcpy(stext, "dwm-"VERSION);
1535 /* EWMH support per view */
1536 XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
1537 PropModeReplace, (unsigned char *) netatom, NetLast);
1539 /* select for events */
1540 wa.event_mask = SubstructureRedirectMask|SubstructureNotifyMask
1541 |EnterWindowMask|LeaveWindowMask|StructureNotifyMask;
1542 XChangeWindowAttributes(dpy, root, CWEventMask|CWCursor, &wa);
1543 XSelectInput(dpy, root, wa.event_mask);
1551 spawn(const char *arg) {
1552 static char *shell = NULL;
1554 if(!shell && !(shell = getenv("SHELL")))
1558 /* The double-fork construct avoids zombie processes and keeps the code
1559 * clean from stupid signal handlers. */
1563 close(ConnectionNumber(dpy));
1565 execl(shell, shell, "-c", arg, (char *)NULL);
1566 fprintf(stderr, "dwm: execl '%s -c %s'", shell, arg);
1575 tag(const char *arg) {
1580 for(i = 0; i < LENGTH(tags); i++)
1581 sel->tags[i] = (NULL == arg);
1582 sel->tags[idxoftag(arg)] = True;
1587 textnw(const char *text, unsigned int len) {
1591 XmbTextExtents(dc.font.set, text, len, NULL, &r);
1594 return XTextWidth(dc.font.xfont, text, len);
1598 textw(const char *text) {
1599 return textnw(text, strlen(text)) + dc.font.height;
1605 unsigned int i, n = counttiled();
1619 for(i = 0, c = nexttiled(c->next); c; c = nexttiled(c->next), i++) {
1620 if(i + 1 == n) /* remainder */
1621 tileresize(c, x, ty, (tx + tw) - x - 2 * c->bw, th - 2 * c->bw);
1623 tileresize(c, x, ty, w - 2 * c->bw, th - 2 * c->bw);
1625 x = c->x + c->w + 2 * c->bw;
1630 tilemaster(unsigned int n) {
1631 Client *c = nexttiled(clients);
1634 tileresize(c, mox, moy, mow - 2 * c->bw, moh - 2 * c->bw);
1636 tileresize(c, mx, my, mw - 2 * c->bw, mh - 2 * c->bw);
1641 tileresize(Client *c, int x, int y, int w, int h) {
1642 resize(c, x, y, w, h, RESIZEHINTS);
1643 if((RESIZEHINTS) && ((c->h < bh) || (c->h > h) || (c->w < bh) || (c->w > w)))
1644 /* client doesn't accept size constraints */
1645 resize(c, x, y, w, h, False);
1651 unsigned int i, n = counttiled();
1665 for(i = 0, c = nexttiled(c->next); c; c = nexttiled(c->next), i++) {
1666 if(i + 1 == n) /* remainder */
1667 tileresize(c, tx, y, tw - 2 * c->bw, (ty + th) - y - 2 * c->bw);
1669 tileresize(c, tx, y, tw - 2 * c->bw, h - 2 * c->bw);
1671 y = c->y + c->h + 2 * c->bw;
1676 togglefloating(const char *arg) {
1679 sel->isfloating = !sel->isfloating;
1681 resize(sel, sel->x, sel->y, sel->w, sel->h, True);
1686 toggletag(const char *arg) {
1692 sel->tags[i] = !sel->tags[i];
1693 for(j = 0; j < LENGTH(tags) && !sel->tags[j]; j++);
1694 if(j == LENGTH(tags))
1695 sel->tags[i] = True; /* at least one tag must be enabled */
1700 toggleview(const char *arg) {
1704 seltags[i] = !seltags[i];
1705 for(j = 0; j < LENGTH(tags) && !seltags[j]; j++);
1706 if(j == LENGTH(tags))
1707 seltags[i] = True; /* at least one tag must be viewed */
1715 XMoveWindow(dpy, c->win, c->x, c->y);
1716 c->isbanned = False;
1720 unmanage(Client *c) {
1723 wc.border_width = c->oldbw;
1724 /* The server grab construct avoids race conditions. */
1726 XSetErrorHandler(xerrordummy);
1727 XConfigureWindow(dpy, c->win, CWBorderWidth, &wc); /* restore border */
1732 XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
1733 setclientstate(c, WithdrawnState);
1737 XSetErrorHandler(xerror);
1743 unmapnotify(XEvent *e) {
1745 XUnmapEvent *ev = &e->xunmap;
1747 if((c = getclient(ev->window)))
1752 updatebarpos(void) {
1754 if(dc.drawable != 0)
1755 XFreePixmap(dpy, dc.drawable);
1756 dc.drawable = XCreatePixmap(dpy, root, bw, bh, DefaultDepth(dpy, screen));
1757 XMoveResizeWindow(dpy, barwin, bx, by, bw, bh);
1761 updatesizehints(Client *c) {
1765 if(!XGetWMNormalHints(dpy, c->win, &size, &msize) || !size.flags)
1767 c->flags = size.flags;
1768 if(c->flags & PBaseSize) {
1769 c->basew = size.base_width;
1770 c->baseh = size.base_height;
1772 else if(c->flags & PMinSize) {
1773 c->basew = size.min_width;
1774 c->baseh = size.min_height;
1777 c->basew = c->baseh = 0;
1778 if(c->flags & PResizeInc) {
1779 c->incw = size.width_inc;
1780 c->inch = size.height_inc;
1783 c->incw = c->inch = 0;
1784 if(c->flags & PMaxSize) {
1785 c->maxw = size.max_width;
1786 c->maxh = size.max_height;
1789 c->maxw = c->maxh = 0;
1790 if(c->flags & PMinSize) {
1791 c->minw = size.min_width;
1792 c->minh = size.min_height;
1794 else if(c->flags & PBaseSize) {
1795 c->minw = size.base_width;
1796 c->minh = size.base_height;
1799 c->minw = c->minh = 0;
1800 if(c->flags & PAspect) {
1801 c->minax = size.min_aspect.x;
1802 c->maxax = size.max_aspect.x;
1803 c->minay = size.min_aspect.y;
1804 c->maxay = size.max_aspect.y;
1807 c->minax = c->maxax = c->minay = c->maxay = 0;
1808 c->isfixed = (c->maxw && c->minw && c->maxh && c->minh
1809 && c->maxw == c->minw && c->maxh == c->minh);
1813 updatetitle(Client *c) {
1814 if(!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name))
1815 gettextprop(c->win, wmatom[WMName], c->name, sizeof c->name);
1819 updatewmhints(Client *c) {
1822 if((wmh = XGetWMHints(dpy, c->win))) {
1824 sel->isurgent = False;
1826 c->isurgent = (wmh->flags & XUrgencyHint) ? True : False;
1832 view(const char *arg) {
1833 Bool tmp[LENGTH(tags)];
1836 for(i = 0; i < LENGTH(tags); i++)
1837 tmp[i] = (NULL == arg);
1838 tmp[idxoftag(arg)] = True;
1840 if(memcmp(seltags, tmp, TAGSZ) != 0) {
1841 seltags = viewtags[viewtags_set ^= 1]; /* toggle tagset */
1842 memcpy(seltags, tmp, TAGSZ);
1848 viewprevtag(const char *arg) {
1849 seltags = viewtags[viewtags_set ^= 1]; /* toggle tagset */
1853 /* There's no way to check accesses to destroyed windows, thus those cases are
1854 * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
1855 * default error handler, which may call exit. */
1857 xerror(Display *dpy, XErrorEvent *ee) {
1858 if(ee->error_code == BadWindow
1859 || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
1860 || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
1861 || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
1862 || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
1863 || (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
1864 || (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
1865 || (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
1867 fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
1868 ee->request_code, ee->error_code);
1869 return xerrorxlib(dpy, ee); /* may call exit */
1873 xerrordummy(Display *dpy, XErrorEvent *ee) {
1877 /* Startup Error handler to check if another window manager
1878 * is already running. */
1880 xerrorstart(Display *dpy, XErrorEvent *ee) {
1886 zoom(const char *arg) {
1889 if(!sel || lt->isfloating || sel->isfloating)
1891 if(c == nexttiled(clients))
1892 if(!(c = nexttiled(c->next)))
1901 main(int argc, char *argv[]) {
1902 if(argc == 2 && !strcmp("-v", argv[1]))
1903 eprint("dwm-"VERSION", © 2006-2008 dwm engineers, see LICENSE for details\n");
1905 eprint("usage: dwm [-v]\n");
1907 setlocale(LC_CTYPE, "");
1908 if(!(dpy = XOpenDisplay(0)))
1909 eprint("dwm: cannot open display\n");