]> git.armaanb.net Git - dwm.git/blob - dwm.c
Apply cursorwarp patch
[dwm.git] / dwm.c
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  * The event handlers of dwm are organized in an array which is accessed
10  * whenever a new event has been fetched. This allows event dispatching
11  * in O(1) time.
12  *
13  * Each child of the root window is called a client, except windows which have
14  * set the override_redirect flag. Clients are organized in a linked client
15  * list on each monitor, the focus history is remembered through a stack list
16  * on each monitor. Each client contains a bit array to indicate the tags of a
17  * client.
18  *
19  * Keys and tagging rules are organized as arrays and defined in config.h.
20  *
21  * To understand everything else, start reading main().
22  */
23 #include <errno.h>
24 #include <locale.h>
25 #include <signal.h>
26 #include <stdarg.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <unistd.h>
31 #include <sys/types.h>
32 #include <sys/wait.h>
33 #include <X11/cursorfont.h>
34 #include <X11/keysym.h>
35 #include <X11/Xatom.h>
36 #include <X11/Xlib.h>
37 #include <X11/Xproto.h>
38 #include <X11/Xutil.h>
39 #ifdef XINERAMA
40 #include <X11/extensions/Xinerama.h>
41 #endif /* XINERAMA */
42 #include <X11/Xft/Xft.h>
43 #include <X11/XF86keysym.h>
44
45 #include "drw.h"
46 #include "util.h"
47
48 /* macros */
49 #define BUTTONMASK              (ButtonPressMask|ButtonReleaseMask)
50 #define CLEANMASK(mask)         (mask & ~(numlockmask|LockMask) & (ShiftMask|ControlMask|Mod1Mask|Mod2Mask|Mod3Mask|Mod4Mask|Mod5Mask))
51 #define INTERSECT(x,y,w,h,m)    (MAX(0, MIN((x)+(w),(m)->wx+(m)->ww) - MAX((x),(m)->wx)) \
52                                * MAX(0, MIN((y)+(h),(m)->wy+(m)->wh) - MAX((y),(m)->wy)))
53 #define ISVISIBLE(C)            ((C->tags & C->mon->tagset[C->mon->seltags]))
54 #define LENGTH(X)               (sizeof X / sizeof X[0])
55 #define MOUSEMASK               (BUTTONMASK|PointerMotionMask)
56 #define WIDTH(X)                ((X)->w + 2 * (X)->bw)
57 #define HEIGHT(X)               ((X)->h + 2 * (X)->bw)
58 #define TAGMASK                 ((1 << LENGTH(tags)) - 1)
59 #define TEXTW(X)                (drw_fontset_getwidth(drw, (X)) + lrpad)
60
61 /* enums */
62 enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
63 enum { SchemeNorm, SchemeSel }; /* color schemes */
64 enum { NetSupported, NetWMName, NetWMState, NetWMCheck,
65        NetWMFullscreen, NetActiveWindow, NetWMWindowType,
66        NetWMWindowTypeDialog, NetClientList, NetLast }; /* EWMH atoms */
67 enum { WMProtocols, WMDelete, WMState, WMTakeFocus, WMLast }; /* default atoms */
68 enum { ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle,
69        ClkClientWin, ClkRootWin, ClkLast }; /* clicks */
70
71 typedef union {
72         int i;
73         unsigned int ui;
74         float f;
75         const void *v;
76 } Arg;
77
78 typedef struct {
79         unsigned int click;
80         unsigned int mask;
81         unsigned int button;
82         void (*func)(const Arg *arg);
83         const Arg arg;
84 } Button;
85
86 typedef struct Monitor Monitor;
87 typedef struct Client Client;
88 struct Client {
89         char name[256];
90         float mina, maxa;
91         int x, y, w, h;
92         int oldx, oldy, oldw, oldh;
93         int basew, baseh, incw, inch, maxw, maxh, minw, minh;
94         int bw, oldbw;
95         unsigned int tags;
96         int isfixed, isfloating, isurgent, neverfocus, oldstate, isfullscreen;
97         Client *next;
98         Client *snext;
99         Monitor *mon;
100         Window win;
101 };
102
103 typedef struct {
104         unsigned int mod;
105         KeySym keysym;
106         void (*func)(const Arg *);
107         const Arg arg;
108 } Key;
109
110 typedef struct {
111         const char *symbol;
112         void (*arrange)(Monitor *);
113 } Layout;
114
115 typedef struct Pertag Pertag;
116 struct Monitor {
117         char ltsymbol[16];
118         float mfact;
119         int nmaster;
120         int num;
121         int by;               /* bar geometry */
122         int mx, my, mw, mh;   /* screen size */
123         int wx, wy, ww, wh;   /* window area  */
124         unsigned int seltags;
125         unsigned int sellt;
126         unsigned int tagset[2];
127         int showbar;
128         int topbar;
129         Client *clients;
130         Client *sel;
131         Client *stack;
132         Monitor *next;
133         Window barwin;
134         const Layout *lt[2];
135         Pertag *pertag;
136 };
137
138 typedef struct {
139         const char *class;
140         const char *instance;
141         const char *title;
142         unsigned int tags;
143         int isfloating;
144         int monitor;
145 } Rule;
146
147 /* function declarations */
148 static void applyrules(Client *c);
149 static int applysizehints(Client *c, int *x, int *y, int *w, int *h, int interact);
150 static void arrange(Monitor *m);
151 static void arrangemon(Monitor *m);
152 static void attach(Client *c);
153 static void attachbottom(Client *c);
154 static void attachstack(Client *c);
155 static void buttonpress(XEvent *e);
156 static void checkotherwm(void);
157 static void cleanup(void);
158 static void cleanupmon(Monitor *mon);
159 static void clientmessage(XEvent *e);
160 static void configure(Client *c);
161 static void configurenotify(XEvent *e);
162 static void configurerequest(XEvent *e);
163 static Monitor *createmon(void);
164 static void destroynotify(XEvent *e);
165 static void detach(Client *c);
166 static void detachstack(Client *c);
167 static Monitor *dirtomon(int dir);
168 static void drawbar(Monitor *m);
169 static void drawbars(void);
170 static void enternotify(XEvent *e);
171 static void expose(XEvent *e);
172 static Client *findbefore(Client *c);
173 static void focus(Client *c);
174 static void focusin(XEvent *e);
175 static void focusmon(const Arg *arg);
176 static void focusstack(const Arg *arg);
177 static Atom getatomprop(Client *c, Atom prop);
178 static int getrootptr(int *x, int *y);
179 static long getstate(Window w);
180 static int gettextprop(Window w, Atom atom, char *text, unsigned int size);
181 static void grabbuttons(Client *c, int focused);
182 static void grabkeys(void);
183 static void incnmaster(const Arg *arg);
184 static void keypress(XEvent *e);
185 static void killclient(const Arg *arg);
186 static void manage(Window w, XWindowAttributes *wa);
187 static void mappingnotify(XEvent *e);
188 static void maprequest(XEvent *e);
189 static void monocle(Monitor *m);
190 static void motionnotify(XEvent *e);
191 static void movemouse(const Arg *arg);
192 static Client *nexttiled(Client *c);
193 static Client *prevtiled(Client *c);
194 static void propertynotify(XEvent *e);
195 static void pushdown(const Arg *arg);
196 static void pushup(const Arg *arg);
197 static void quit(const Arg *arg);
198 static Monitor *recttomon(int x, int y, int w, int h);
199 static void resize(Client *c, int x, int y, int w, int h, int interact);
200 static void resizeclient(Client *c, int x, int y, int w, int h);
201 static void resizemouse(const Arg *arg);
202 static void restack(Monitor *m);
203 static void run(void);
204 static void scan(void);
205 static int sendevent(Client *c, Atom proto);
206 static void sendmon(Client *c, Monitor *m);
207 static void setclientstate(Client *c, long state);
208 static void setfocus(Client *c);
209 static void setfullscreen(Client *c, int fullscreen);
210 static void setlayout(const Arg *arg);
211 static void setmfact(const Arg *arg);
212 static void setup(void);
213 static void seturgent(Client *c, int urg);
214 static void showhide(Client *c);
215 static void sigchld(int unused);
216 static void spawn(const Arg *arg);
217 static void tag(const Arg *arg);
218 static void tagmon(const Arg *arg);
219 static void tile(Monitor *);
220 static void togglebar(const Arg *arg);
221 static void togglefloating(const Arg *arg);
222 static void toggletag(const Arg *arg);
223 static void toggleview(const Arg *arg);
224 static void unfocus(Client *c, int setfocus);
225 static void unmanage(Client *c, int destroyed);
226 static void unmapnotify(XEvent *e);
227 static void updatebarpos(Monitor *m);
228 static void updatebars(void);
229 static void updateclientlist(void);
230 static int updategeom(void);
231 static void updatenumlockmask(void);
232 static void updatesizehints(Client *c);
233 static void updatestatus(void);
234 static void updatetitle(Client *c);
235 static void updatewindowtype(Client *c);
236 static void updatewmhints(Client *c);
237 static void view(const Arg *arg);
238 static Client *wintoclient(Window w);
239 static Monitor *wintomon(Window w);
240 static int xerror(Display *dpy, XErrorEvent *ee);
241 static int xerrordummy(Display *dpy, XErrorEvent *ee);
242 static int xerrorstart(Display *dpy, XErrorEvent *ee);
243 static void zoom(const Arg *arg);
244
245 /* variables */
246 static Client *prevzoom = NULL;
247 static const char broken[] = "broken";
248 static char stext[256];
249 static int screen;
250 static int sw, sh;           /* X display screen geometry width, height */
251 static int bh, blw = 0;      /* bar geometry */
252 static int lrpad;            /* sum of left and right padding for text */
253 static int (*xerrorxlib)(Display *, XErrorEvent *);
254 static unsigned int numlockmask = 0;
255 static void (*handler[LASTEvent]) (XEvent *) = {
256         [ButtonPress] = buttonpress,
257         [ClientMessage] = clientmessage,
258         [ConfigureRequest] = configurerequest,
259         [ConfigureNotify] = configurenotify,
260         [DestroyNotify] = destroynotify,
261         [EnterNotify] = enternotify,
262         [Expose] = expose,
263         [FocusIn] = focusin,
264         [KeyPress] = keypress,
265         [MappingNotify] = mappingnotify,
266         [MapRequest] = maprequest,
267         [MotionNotify] = motionnotify,
268         [PropertyNotify] = propertynotify,
269         [UnmapNotify] = unmapnotify
270 };
271 static Atom wmatom[WMLast], netatom[NetLast];
272 static int running = 1;
273 static Cur *cursor[CurLast];
274 static Clr **scheme;
275 static Display *dpy;
276 static Drw *drw;
277 static Monitor *mons, *selmon;
278 static Window root, wmcheckwin;
279
280 /* configuration, allows nested code to access above variables */
281 #include "config.h"
282
283 struct Pertag {
284         unsigned int curtag, prevtag; /* current and previous tag */
285         int nmasters[LENGTH(tags) + 1]; /* number of windows in master area */
286         float mfacts[LENGTH(tags) + 1]; /* mfacts per tag */
287         unsigned int sellts[LENGTH(tags) + 1]; /* selected layouts */
288         const Layout *ltidxs[LENGTH(tags) + 1][2]; /* matrix of tags and layouts indexes  */
289         int showbars[LENGTH(tags) + 1]; /* display bar for the current tag */
290 };
291
292 /* compile-time check if all tags fit into an unsigned int bit array. */
293 struct NumTags { char limitexceeded[LENGTH(tags) > 31 ? -1 : 1]; };
294
295 /* dwm will keep pid's of processes from autostart array and kill them at quit */
296 static pid_t *autostart_pids;
297 static size_t autostart_len;
298
299 /* execute command from autostart array */
300 static void
301 autostart_exec() {
302         const char *const *p;
303         size_t i = 0;
304
305         /* count entries */
306         for (p = autostart; *p; autostart_len++, p++)
307                 while (*++p);
308
309         autostart_pids = malloc(autostart_len * sizeof(pid_t));
310         for (p = autostart; *p; i++, p++) {
311                 if ((autostart_pids[i] = fork()) == 0) {
312                         setsid();
313                         execvp(*p, (char *const *)p);
314                         fprintf(stderr, "dwm: execvp %s\n", *p);
315                         perror(" failed");
316                         _exit(EXIT_FAILURE);
317                 }
318                 /* skip arguments */
319                 while (*++p);
320         }
321 }
322
323 /* function implementations */
324 void
325 applyrules(Client *c)
326 {
327         const char *class, *instance;
328         unsigned int i;
329         const Rule *r;
330         Monitor *m;
331         XClassHint ch = { NULL, NULL };
332
333         /* rule matching */
334         c->isfloating = 0;
335         c->tags = 0;
336         XGetClassHint(dpy, c->win, &ch);
337         class    = ch.res_class ? ch.res_class : broken;
338         instance = ch.res_name  ? ch.res_name  : broken;
339
340         for (i = 0; i < LENGTH(rules); i++) {
341                 r = &rules[i];
342                 if ((!r->title || strstr(c->name, r->title))
343                 && (!r->class || strstr(class, r->class))
344                 && (!r->instance || strstr(instance, r->instance)))
345                 {
346                         c->isfloating = r->isfloating;
347                         c->tags |= r->tags;
348                         for (m = mons; m && m->num != r->monitor; m = m->next);
349                         if (m)
350                                 c->mon = m;
351                 }
352         }
353         if (ch.res_class)
354                 XFree(ch.res_class);
355         if (ch.res_name)
356                 XFree(ch.res_name);
357         c->tags = c->tags & TAGMASK ? c->tags & TAGMASK : c->mon->tagset[c->mon->seltags];
358 }
359
360 int
361 applysizehints(Client *c, int *x, int *y, int *w, int *h, int interact)
362 {
363         int baseismin;
364         Monitor *m = c->mon;
365
366         /* set minimum possible */
367         *w = MAX(1, *w);
368         *h = MAX(1, *h);
369         if (interact) {
370                 if (*x > sw)
371                         *x = sw - WIDTH(c);
372                 if (*y > sh)
373                         *y = sh - HEIGHT(c);
374                 if (*x + *w + 2 * c->bw < 0)
375                         *x = 0;
376                 if (*y + *h + 2 * c->bw < 0)
377                         *y = 0;
378         } else {
379                 if (*x >= m->wx + m->ww)
380                         *x = m->wx + m->ww - WIDTH(c);
381                 if (*y >= m->wy + m->wh)
382                         *y = m->wy + m->wh - HEIGHT(c);
383                 if (*x + *w + 2 * c->bw <= m->wx)
384                         *x = m->wx;
385                 if (*y + *h + 2 * c->bw <= m->wy)
386                         *y = m->wy;
387         }
388         if (*h < bh)
389                 *h = bh;
390         if (*w < bh)
391                 *w = bh;
392         if (resizehints || c->isfloating || !c->mon->lt[c->mon->sellt]->arrange) {
393                 /* see last two sentences in ICCCM 4.1.2.3 */
394                 baseismin = c->basew == c->minw && c->baseh == c->minh;
395                 if (!baseismin) { /* temporarily remove base dimensions */
396                         *w -= c->basew;
397                         *h -= c->baseh;
398                 }
399                 /* adjust for aspect limits */
400                 if (c->mina > 0 && c->maxa > 0) {
401                         if (c->maxa < (float)*w / *h)
402                                 *w = *h * c->maxa + 0.5;
403                         else if (c->mina < (float)*h / *w)
404                                 *h = *w * c->mina + 0.5;
405                 }
406                 if (baseismin) { /* increment calculation requires this */
407                         *w -= c->basew;
408                         *h -= c->baseh;
409                 }
410                 /* adjust for increment value */
411                 if (c->incw)
412                         *w -= *w % c->incw;
413                 if (c->inch)
414                         *h -= *h % c->inch;
415                 /* restore base dimensions */
416                 *w = MAX(*w + c->basew, c->minw);
417                 *h = MAX(*h + c->baseh, c->minh);
418                 if (c->maxw)
419                         *w = MIN(*w, c->maxw);
420                 if (c->maxh)
421                         *h = MIN(*h, c->maxh);
422         }
423         return *x != c->x || *y != c->y || *w != c->w || *h != c->h;
424 }
425
426 void
427 arrange(Monitor *m)
428 {
429         if (m)
430                 showhide(m->stack);
431         else for (m = mons; m; m = m->next)
432                 showhide(m->stack);
433         if (m) {
434                 arrangemon(m);
435                 restack(m);
436         } else for (m = mons; m; m = m->next)
437                 arrangemon(m);
438 }
439
440 void
441 arrangemon(Monitor *m)
442 {
443         strncpy(m->ltsymbol, m->lt[m->sellt]->symbol, sizeof m->ltsymbol);
444         if (m->lt[m->sellt]->arrange)
445                 m->lt[m->sellt]->arrange(m);
446 }
447
448 void
449 attach(Client *c)
450 {
451         c->next = c->mon->clients;
452         c->mon->clients = c;
453 }
454
455 void
456 attachbottom(Client *c)
457 {
458         Client **tc;
459         c->next = NULL;
460         for (tc = &c->mon->clients; *tc; tc = &(*tc)->next);
461         *tc = c;
462 }
463
464 void
465 attachstack(Client *c)
466 {
467         c->snext = c->mon->stack;
468         c->mon->stack = c;
469 }
470
471 void
472 buttonpress(XEvent *e)
473 {
474         unsigned int i, x, click;
475         Arg arg = {0};
476         Client *c;
477         Monitor *m;
478         XButtonPressedEvent *ev = &e->xbutton;
479
480         click = ClkRootWin;
481         /* focus monitor if necessary */
482         if ((m = wintomon(ev->window)) && m != selmon) {
483                 unfocus(selmon->sel, 1);
484                 selmon = m;
485                 focus(NULL);
486         }
487         if (ev->window == selmon->barwin) {
488                 i = x = 0;
489                 do
490                         x += TEXTW(tags[i]);
491                 while (ev->x >= x && ++i < LENGTH(tags));
492                 if (i < LENGTH(tags)) {
493                         click = ClkTagBar;
494                         arg.ui = 1 << i;
495                 } else if (ev->x < x + blw)
496                         click = ClkLtSymbol;
497                 else if (ev->x > selmon->ww - (int)TEXTW(stext))
498                         click = ClkStatusText;
499                 else
500                         click = ClkWinTitle;
501         } else if ((c = wintoclient(ev->window))) {
502                 focus(c);
503                 restack(selmon);
504                 XAllowEvents(dpy, ReplayPointer, CurrentTime);
505                 click = ClkClientWin;
506         }
507         for (i = 0; i < LENGTH(buttons); i++)
508                 if (click == buttons[i].click && buttons[i].func && buttons[i].button == ev->button
509                 && CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
510                         buttons[i].func(click == ClkTagBar && buttons[i].arg.i == 0 ? &arg : &buttons[i].arg);
511 }
512
513 void
514 checkotherwm(void)
515 {
516         xerrorxlib = XSetErrorHandler(xerrorstart);
517         /* this causes an error if some other window manager is running */
518         XSelectInput(dpy, DefaultRootWindow(dpy), SubstructureRedirectMask);
519         XSync(dpy, False);
520         XSetErrorHandler(xerror);
521         XSync(dpy, False);
522 }
523
524 void
525 cleanup(void)
526 {
527         Arg a = {.ui = ~0};
528         Layout foo = { "", NULL };
529         Monitor *m;
530         size_t i;
531
532         view(&a);
533         selmon->lt[selmon->sellt] = &foo;
534         for (m = mons; m; m = m->next)
535                 while (m->stack)
536                         unmanage(m->stack, 0);
537         XUngrabKey(dpy, AnyKey, AnyModifier, root);
538         while (mons)
539                 cleanupmon(mons);
540         for (i = 0; i < CurLast; i++)
541                 drw_cur_free(drw, cursor[i]);
542         for (i = 0; i < LENGTH(colors); i++)
543                 free(scheme[i]);
544         XDestroyWindow(dpy, wmcheckwin);
545         drw_free(drw);
546         XSync(dpy, False);
547         XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
548         XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
549 }
550
551 void
552 cleanupmon(Monitor *mon)
553 {
554         Monitor *m;
555
556         if (mon == mons)
557                 mons = mons->next;
558         else {
559                 for (m = mons; m && m->next != mon; m = m->next);
560                 m->next = mon->next;
561         }
562         XUnmapWindow(dpy, mon->barwin);
563         XDestroyWindow(dpy, mon->barwin);
564         free(mon);
565 }
566
567 void
568 clientmessage(XEvent *e)
569 {
570         XClientMessageEvent *cme = &e->xclient;
571         Client *c = wintoclient(cme->window);
572
573         if (!c)
574                 return;
575         if (cme->message_type == netatom[NetWMState]) {
576                 if (cme->data.l[1] == netatom[NetWMFullscreen]
577                 || cme->data.l[2] == netatom[NetWMFullscreen])
578                         setfullscreen(c, (cme->data.l[0] == 1 /* _NET_WM_STATE_ADD    */
579                                 || cme->data.l[0] == 2 /* _NET_WM_STATE_TOGGLE */));
580         } else if (cme->message_type == netatom[NetActiveWindow]) {
581                 if (c != selmon->sel && !c->isurgent)
582                         seturgent(c, 1);
583         }
584 }
585
586 void
587 configure(Client *c)
588 {
589         XConfigureEvent ce;
590
591         ce.type = ConfigureNotify;
592         ce.display = dpy;
593         ce.event = c->win;
594         ce.window = c->win;
595         ce.x = c->x;
596         ce.y = c->y;
597         ce.width = c->w;
598         ce.height = c->h;
599         ce.border_width = c->bw;
600         ce.above = None;
601         ce.override_redirect = False;
602         XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&ce);
603 }
604
605 void
606 configurenotify(XEvent *e)
607 {
608         Monitor *m;
609         XConfigureEvent *ev = &e->xconfigure;
610         int dirty;
611
612         /* TODO: updategeom handling sucks, needs to be simplified */
613         if (ev->window == root) {
614                 dirty = (sw != ev->width || sh != ev->height);
615                 sw = ev->width;
616                 sh = ev->height;
617                 if (updategeom() || dirty) {
618                         drw_resize(drw, sw, bh);
619                         updatebars();
620                         for (m = mons; m; m = m->next) {
621                                 XMoveResizeWindow(dpy, m->barwin, m->wx, m->by, m->ww, bh);
622                         }
623                         focus(NULL);
624                         arrange(NULL);
625                 }
626         }
627 }
628
629 void
630 configurerequest(XEvent *e)
631 {
632         Client *c;
633         Monitor *m;
634         XConfigureRequestEvent *ev = &e->xconfigurerequest;
635         XWindowChanges wc;
636
637         if ((c = wintoclient(ev->window))) {
638                 if (ev->value_mask & CWBorderWidth)
639                         c->bw = ev->border_width;
640                 else if (c->isfloating || !selmon->lt[selmon->sellt]->arrange) {
641                         m = c->mon;
642                         if (ev->value_mask & CWX) {
643                                 c->oldx = c->x;
644                                 c->x = m->mx + ev->x;
645                         }
646                         if (ev->value_mask & CWY) {
647                                 c->oldy = c->y;
648                                 c->y = m->my + ev->y;
649                         }
650                         if (ev->value_mask & CWWidth) {
651                                 c->oldw = c->w;
652                                 c->w = ev->width;
653                         }
654                         if (ev->value_mask & CWHeight) {
655                                 c->oldh = c->h;
656                                 c->h = ev->height;
657                         }
658                         if ((c->x + c->w) > m->mx + m->mw && c->isfloating)
659                                 c->x = m->mx + (m->mw / 2 - WIDTH(c) / 2); /* center in x direction */
660                         if ((c->y + c->h) > m->my + m->mh && c->isfloating)
661                                 c->y = m->my + (m->mh / 2 - HEIGHT(c) / 2); /* center in y direction */
662                         if ((ev->value_mask & (CWX|CWY)) && !(ev->value_mask & (CWWidth|CWHeight)))
663                                 configure(c);
664                         if (ISVISIBLE(c))
665                                 XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
666                 } else
667                         configure(c);
668         } else {
669                 wc.x = ev->x;
670                 wc.y = ev->y;
671                 wc.width = ev->width;
672                 wc.height = ev->height;
673                 wc.border_width = ev->border_width;
674                 wc.sibling = ev->above;
675                 wc.stack_mode = ev->detail;
676                 XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
677         }
678         XSync(dpy, False);
679 }
680
681 Monitor *
682 createmon(void)
683 {
684         Monitor *m;
685         unsigned int i;
686
687         m = ecalloc(1, sizeof(Monitor));
688         m->tagset[0] = m->tagset[1] = 1;
689         m->mfact = mfact;
690         m->nmaster = nmaster;
691         m->showbar = showbar;
692         m->topbar = topbar;
693         m->lt[0] = &layouts[0];
694         m->lt[1] = &layouts[1 % LENGTH(layouts)];
695         strncpy(m->ltsymbol, layouts[0].symbol, sizeof m->ltsymbol);
696         m->pertag = ecalloc(1, sizeof(Pertag));
697         m->pertag->curtag = m->pertag->prevtag = 1;
698
699         for (i = 0; i <= LENGTH(tags); i++) {
700                 m->pertag->nmasters[i] = m->nmaster;
701                 m->pertag->mfacts[i] = m->mfact;
702
703                 m->pertag->ltidxs[i][0] = m->lt[0];
704                 m->pertag->ltidxs[i][1] = m->lt[1];
705                 m->pertag->sellts[i] = m->sellt;
706
707                 m->pertag->showbars[i] = m->showbar;
708         }
709
710         return m;
711 }
712
713 void
714 destroynotify(XEvent *e)
715 {
716         Client *c;
717         XDestroyWindowEvent *ev = &e->xdestroywindow;
718
719         if ((c = wintoclient(ev->window)))
720                 unmanage(c, 1);
721 }
722
723 void
724 detach(Client *c)
725 {
726         Client **tc;
727
728         for (tc = &c->mon->clients; *tc && *tc != c; tc = &(*tc)->next);
729         *tc = c->next;
730 }
731
732 void
733 detachstack(Client *c)
734 {
735         Client **tc, *t;
736
737         for (tc = &c->mon->stack; *tc && *tc != c; tc = &(*tc)->snext);
738         *tc = c->snext;
739
740         if (c == c->mon->sel) {
741                 for (t = c->mon->stack; t && !ISVISIBLE(t); t = t->snext);
742                 c->mon->sel = t;
743         }
744 }
745
746 Monitor *
747 dirtomon(int dir)
748 {
749         Monitor *m = NULL;
750
751         if (dir > 0) {
752                 if (!(m = selmon->next))
753                         m = mons;
754         } else if (selmon == mons)
755                 for (m = mons; m->next; m = m->next);
756         else
757                 for (m = mons; m->next != selmon; m = m->next);
758         return m;
759 }
760
761 void
762 drawbar(Monitor *m)
763 {
764         int x, w, tw = 0;
765         int boxs = drw->fonts->h / 9;
766         int boxw = drw->fonts->h / 6 + 2;
767         unsigned int i, occ = 0, urg = 0;
768         Client *c;
769
770         /* draw status first so it can be overdrawn by tags later */
771         if (m == selmon) { /* status is only drawn on selected monitor */
772                 drw_setscheme(drw, scheme[SchemeNorm]);
773                 tw = TEXTW(stext) - lrpad + 2; /* 2px right padding */
774                 drw_text(drw, m->ww - tw, 0, tw, bh, 0, stext, 0);
775         }
776
777         for (c = m->clients; c; c = c->next) {
778                 occ |= c->tags;
779                 if (c->isurgent)
780                         urg |= c->tags;
781         }
782         x = 0;
783         for (i = 0; i < LENGTH(tags); i++) {
784                 w = TEXTW(tags[i]);
785                 drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? SchemeSel : SchemeNorm]);
786                 drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i);
787                 if (occ & 1 << i)
788                         drw_rect(drw, x + boxs, boxs, boxw, boxw,
789                                 m == selmon && selmon->sel && selmon->sel->tags & 1 << i,
790                                 urg & 1 << i);
791                 x += w;
792         }
793         w = blw = TEXTW(m->ltsymbol);
794         drw_setscheme(drw, scheme[SchemeNorm]);
795         x = drw_text(drw, x, 0, w, bh, lrpad / 2, m->ltsymbol, 0);
796
797         if ((w = m->ww - tw - x) > bh) {
798                 if (m->sel) {
799                         drw_setscheme(drw, scheme[m == selmon ? SchemeSel : SchemeNorm]);
800                         drw_text(drw, x, 0, w, bh, lrpad / 2, m->sel->name, 0);
801                         if (m->sel->isfloating)
802                                 drw_rect(drw, x + boxs, boxs, boxw, boxw, m->sel->isfixed, 0);
803                 } else {
804                         drw_setscheme(drw, scheme[SchemeNorm]);
805                         drw_rect(drw, x, 0, w, bh, 1, 1);
806                 }
807         }
808         drw_map(drw, m->barwin, 0, 0, m->ww, bh);
809 }
810
811 void
812 drawbars(void)
813 {
814         Monitor *m;
815
816         for (m = mons; m; m = m->next)
817                 drawbar(m);
818 }
819
820 void
821 enternotify(XEvent *e)
822 {
823         Client *c;
824         Monitor *m;
825         XCrossingEvent *ev = &e->xcrossing;
826
827         if ((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
828                 return;
829         c = wintoclient(ev->window);
830         m = c ? c->mon : wintomon(ev->window);
831         if (m != selmon) {
832                 unfocus(selmon->sel, 1);
833                 selmon = m;
834         } else if (!c || c == selmon->sel)
835                 return;
836         focus(c);
837 }
838
839 void
840 expose(XEvent *e)
841 {
842         Monitor *m;
843         XExposeEvent *ev = &e->xexpose;
844
845         if (ev->count == 0 && (m = wintomon(ev->window)))
846                 drawbar(m);
847 }
848
849 Client *
850 findbefore(Client *c)
851 {
852         Client *tmp;
853         if (c == selmon->clients)
854                 return NULL;
855         for (tmp = selmon->clients; tmp && tmp->next != c; tmp = tmp->next);
856         return tmp;
857 }
858
859 void
860 focus(Client *c)
861 {
862         if (!c || !ISVISIBLE(c))
863                 for (c = selmon->stack; c && !ISVISIBLE(c); c = c->snext);
864         if (selmon->sel && selmon->sel != c)
865                 unfocus(selmon->sel, 0);
866         if (c) {
867                 if (c->mon != selmon)
868                         selmon = c->mon;
869                 if (c->isurgent)
870                         seturgent(c, 0);
871                 detachstack(c);
872                 attachstack(c);
873                 grabbuttons(c, 1);
874                 XSetWindowBorder(dpy, c->win, scheme[SchemeSel][ColBorder].pixel);
875                 setfocus(c);
876         } else {
877                 XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
878                 XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
879         }
880         selmon->sel = c;
881         drawbars();
882 }
883
884 /* there are some broken focus acquiring clients needing extra handling */
885 void
886 focusin(XEvent *e)
887 {
888         XFocusChangeEvent *ev = &e->xfocus;
889
890         if (selmon->sel && ev->window != selmon->sel->win)
891                 setfocus(selmon->sel);
892 }
893
894 void
895 focusmon(const Arg *arg)
896 {
897         Monitor *m;
898
899         if (!mons->next)
900                 return;
901         if ((m = dirtomon(arg->i)) == selmon)
902                 return;
903         unfocus(selmon->sel, 0);
904         selmon = m;
905         focus(NULL);
906         if (selmon->sel)
907                 XWarpPointer(dpy, None, selmon->sel->win, 0, 0, 0, 0, selmon->sel->w/2, selmon->sel->h/2);
908 }
909
910 void
911 focusstack(const Arg *arg)
912 {
913         Client *c = NULL, *i;
914
915         if (!selmon->sel)
916                 return;
917         if (arg->i > 0) {
918                 for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);
919                 if (!c)
920                         for (c = selmon->clients; c && !ISVISIBLE(c); c = c->next);
921         } else {
922                 for (i = selmon->clients; i != selmon->sel; i = i->next)
923                         if (ISVISIBLE(i))
924                                 c = i;
925                 if (!c)
926                         for (; i; i = i->next)
927                                 if (ISVISIBLE(i))
928                                         c = i;
929         }
930         if (c) {
931                 focus(c);
932                 restack(selmon);
933                 XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w/2, c->h/2);
934         }
935 }
936
937 Atom
938 getatomprop(Client *c, Atom prop)
939 {
940         int di;
941         unsigned long dl;
942         unsigned char *p = NULL;
943         Atom da, atom = None;
944
945         if (XGetWindowProperty(dpy, c->win, prop, 0L, sizeof atom, False, XA_ATOM,
946                 &da, &di, &dl, &dl, &p) == Success && p) {
947                 atom = *(Atom *)p;
948                 XFree(p);
949         }
950         return atom;
951 }
952
953 int
954 getrootptr(int *x, int *y)
955 {
956         int di;
957         unsigned int dui;
958         Window dummy;
959
960         return XQueryPointer(dpy, root, &dummy, &dummy, x, y, &di, &di, &dui);
961 }
962
963 long
964 getstate(Window w)
965 {
966         int format;
967         long result = -1;
968         unsigned char *p = NULL;
969         unsigned long n, extra;
970         Atom real;
971
972         if (XGetWindowProperty(dpy, w, wmatom[WMState], 0L, 2L, False, wmatom[WMState],
973                 &real, &format, &n, &extra, (unsigned char **)&p) != Success)
974                 return -1;
975         if (n != 0)
976                 result = *p;
977         XFree(p);
978         return result;
979 }
980
981 int
982 gettextprop(Window w, Atom atom, char *text, unsigned int size)
983 {
984         char **list = NULL;
985         int n;
986         XTextProperty name;
987
988         if (!text || size == 0)
989                 return 0;
990         text[0] = '\0';
991         if (!XGetTextProperty(dpy, w, &name, atom) || !name.nitems)
992                 return 0;
993         if (name.encoding == XA_STRING)
994                 strncpy(text, (char *)name.value, size - 1);
995         else {
996                 if (XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success && n > 0 && *list) {
997                         strncpy(text, *list, size - 1);
998                         XFreeStringList(list);
999                 }
1000         }
1001         text[size - 1] = '\0';
1002         XFree(name.value);
1003         return 1;
1004 }
1005
1006 void
1007 grabbuttons(Client *c, int focused)
1008 {
1009         updatenumlockmask();
1010         {
1011                 unsigned int i, j;
1012                 unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
1013                 XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
1014                 if (!focused)
1015                         XGrabButton(dpy, AnyButton, AnyModifier, c->win, False,
1016                                 BUTTONMASK, GrabModeSync, GrabModeSync, None, None);
1017                 for (i = 0; i < LENGTH(buttons); i++)
1018                         if (buttons[i].click == ClkClientWin)
1019                                 for (j = 0; j < LENGTH(modifiers); j++)
1020                                         XGrabButton(dpy, buttons[i].button,
1021                                                 buttons[i].mask | modifiers[j],
1022                                                 c->win, False, BUTTONMASK,
1023                                                 GrabModeAsync, GrabModeSync, None, None);
1024         }
1025 }
1026
1027 void
1028 grabkeys(void)
1029 {
1030         updatenumlockmask();
1031         {
1032                 unsigned int i, j;
1033                 unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
1034                 KeyCode code;
1035
1036                 XUngrabKey(dpy, AnyKey, AnyModifier, root);
1037                 for (i = 0; i < LENGTH(keys); i++)
1038                         if ((code = XKeysymToKeycode(dpy, keys[i].keysym)))
1039                                 for (j = 0; j < LENGTH(modifiers); j++)
1040                                         XGrabKey(dpy, code, keys[i].mod | modifiers[j], root,
1041                                                 True, GrabModeAsync, GrabModeAsync);
1042         }
1043 }
1044
1045 void
1046 incnmaster(const Arg *arg)
1047 {
1048         selmon->nmaster = selmon->pertag->nmasters[selmon->pertag->curtag] = MAX(selmon->nmaster + arg->i, 0);
1049         arrange(selmon);
1050 }
1051
1052 #ifdef XINERAMA
1053 static int
1054 isuniquegeom(XineramaScreenInfo *unique, size_t n, XineramaScreenInfo *info)
1055 {
1056         while (n--)
1057                 if (unique[n].x_org == info->x_org && unique[n].y_org == info->y_org
1058                 && unique[n].width == info->width && unique[n].height == info->height)
1059                         return 0;
1060         return 1;
1061 }
1062 #endif /* XINERAMA */
1063
1064 void
1065 keypress(XEvent *e)
1066 {
1067         unsigned int i;
1068         KeySym keysym;
1069         XKeyEvent *ev;
1070
1071         ev = &e->xkey;
1072         keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
1073         for (i = 0; i < LENGTH(keys); i++)
1074                 if (keysym == keys[i].keysym
1075                 && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
1076                 && keys[i].func)
1077                         keys[i].func(&(keys[i].arg));
1078 }
1079
1080 void
1081 killclient(const Arg *arg)
1082 {
1083         if (!selmon->sel)
1084                 return;
1085         if (!sendevent(selmon->sel, wmatom[WMDelete])) {
1086                 XGrabServer(dpy);
1087                 XSetErrorHandler(xerrordummy);
1088                 XSetCloseDownMode(dpy, DestroyAll);
1089                 XKillClient(dpy, selmon->sel->win);
1090                 XSync(dpy, False);
1091                 XSetErrorHandler(xerror);
1092                 XUngrabServer(dpy);
1093         }
1094 }
1095
1096 void
1097 manage(Window w, XWindowAttributes *wa)
1098 {
1099         Client *c, *t = NULL;
1100         Window trans = None;
1101         XWindowChanges wc;
1102
1103         c = ecalloc(1, sizeof(Client));
1104         c->win = w;
1105         /* geometry */
1106         c->x = c->oldx = wa->x;
1107         c->y = c->oldy = wa->y;
1108         c->w = c->oldw = wa->width;
1109         c->h = c->oldh = wa->height;
1110         c->oldbw = wa->border_width;
1111
1112         updatetitle(c);
1113         if (XGetTransientForHint(dpy, w, &trans) && (t = wintoclient(trans))) {
1114                 c->mon = t->mon;
1115                 c->tags = t->tags;
1116         } else {
1117                 c->mon = selmon;
1118                 applyrules(c);
1119         }
1120
1121         if (c->x + WIDTH(c) > c->mon->mx + c->mon->mw)
1122                 c->x = c->mon->mx + c->mon->mw - WIDTH(c);
1123         if (c->y + HEIGHT(c) > c->mon->my + c->mon->mh)
1124                 c->y = c->mon->my + c->mon->mh - HEIGHT(c);
1125         c->x = MAX(c->x, c->mon->mx);
1126         /* only fix client y-offset, if the client center might cover the bar */
1127         c->y = MAX(c->y, ((c->mon->by == c->mon->my) && (c->x + (c->w / 2) >= c->mon->wx)
1128                 && (c->x + (c->w / 2) < c->mon->wx + c->mon->ww)) ? bh : c->mon->my);
1129         c->bw = borderpx;
1130
1131         wc.border_width = c->bw;
1132         XConfigureWindow(dpy, w, CWBorderWidth, &wc);
1133         XSetWindowBorder(dpy, w, scheme[SchemeNorm][ColBorder].pixel);
1134         configure(c); /* propagates border_width, if size doesn't change */
1135         updatewindowtype(c);
1136         updatesizehints(c);
1137         updatewmhints(c);
1138         XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
1139         grabbuttons(c, 0);
1140         if (!c->isfloating)
1141                 c->isfloating = c->oldstate = trans != None || c->isfixed;
1142         if (c->isfloating)
1143                 XRaiseWindow(dpy, c->win);
1144         attachbottom(c);
1145         attachstack(c);
1146         XChangeProperty(dpy, root, netatom[NetClientList], XA_WINDOW, 32, PropModeAppend,
1147                 (unsigned char *) &(c->win), 1);
1148         XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */
1149         setclientstate(c, NormalState);
1150         if (c->mon == selmon)
1151                 unfocus(selmon->sel, 0);
1152         c->mon->sel = c;
1153         arrange(c->mon);
1154         XMapWindow(dpy, c->win);
1155         focus(NULL);
1156 }
1157
1158 void
1159 mappingnotify(XEvent *e)
1160 {
1161         XMappingEvent *ev = &e->xmapping;
1162
1163         XRefreshKeyboardMapping(ev);
1164         if (ev->request == MappingKeyboard)
1165                 grabkeys();
1166 }
1167
1168 void
1169 maprequest(XEvent *e)
1170 {
1171         static XWindowAttributes wa;
1172         XMapRequestEvent *ev = &e->xmaprequest;
1173
1174         if (!XGetWindowAttributes(dpy, ev->window, &wa))
1175                 return;
1176         if (wa.override_redirect)
1177                 return;
1178         if (!wintoclient(ev->window))
1179                 manage(ev->window, &wa);
1180 }
1181
1182 void
1183 monocle(Monitor *m)
1184 {
1185         unsigned int n = 0;
1186         Client *c;
1187
1188         for (c = m->clients; c; c = c->next)
1189                 if (ISVISIBLE(c))
1190                         n++;
1191         if (n > 0) /* override layout symbol */
1192                 snprintf(m->ltsymbol, sizeof m->ltsymbol, "[%d]", n);
1193         for (c = nexttiled(m->clients); c; c = nexttiled(c->next))
1194                 resize(c, m->wx, m->wy, m->ww - 2 * c->bw, m->wh - 2 * c->bw, 0);
1195 }
1196
1197 void
1198 motionnotify(XEvent *e)
1199 {
1200         static Monitor *mon = NULL;
1201         Monitor *m;
1202         XMotionEvent *ev = &e->xmotion;
1203
1204         if (ev->window != root)
1205                 return;
1206         if ((m = recttomon(ev->x_root, ev->y_root, 1, 1)) != mon && mon) {
1207                 unfocus(selmon->sel, 1);
1208                 selmon = m;
1209                 focus(NULL);
1210         }
1211         mon = m;
1212 }
1213
1214 void
1215 movemouse(const Arg *arg)
1216 {
1217         int x, y, ocx, ocy, nx, ny;
1218         Client *c;
1219         Monitor *m;
1220         XEvent ev;
1221         Time lasttime = 0;
1222
1223         if (!(c = selmon->sel))
1224                 return;
1225         restack(selmon);
1226         ocx = c->x;
1227         ocy = c->y;
1228         if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
1229                 None, cursor[CurMove]->cursor, CurrentTime) != GrabSuccess)
1230                 return;
1231         if (!getrootptr(&x, &y))
1232                 return;
1233         do {
1234                 XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
1235                 switch(ev.type) {
1236                 case ConfigureRequest:
1237                 case Expose:
1238                 case MapRequest:
1239                         handler[ev.type](&ev);
1240                         break;
1241                 case MotionNotify:
1242                         if ((ev.xmotion.time - lasttime) <= (1000 / 60))
1243                                 continue;
1244                         lasttime = ev.xmotion.time;
1245
1246                         nx = ocx + (ev.xmotion.x - x);
1247                         ny = ocy + (ev.xmotion.y - y);
1248                         if (abs(selmon->wx - nx) < snap)
1249                                 nx = selmon->wx;
1250                         else if (abs((selmon->wx + selmon->ww) - (nx + WIDTH(c))) < snap)
1251                                 nx = selmon->wx + selmon->ww - WIDTH(c);
1252                         if (abs(selmon->wy - ny) < snap)
1253                                 ny = selmon->wy;
1254                         else if (abs((selmon->wy + selmon->wh) - (ny + HEIGHT(c))) < snap)
1255                                 ny = selmon->wy + selmon->wh - HEIGHT(c);
1256                         if (!c->isfloating && selmon->lt[selmon->sellt]->arrange
1257                         && (abs(nx - c->x) > snap || abs(ny - c->y) > snap))
1258                                 togglefloating(NULL);
1259                         if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
1260                                 resize(c, nx, ny, c->w, c->h, 1);
1261                         break;
1262                 }
1263         } while (ev.type != ButtonRelease);
1264         XUngrabPointer(dpy, CurrentTime);
1265         if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
1266                 sendmon(c, m);
1267                 selmon = m;
1268                 focus(NULL);
1269         }
1270 }
1271
1272 Client *
1273 nexttiled(Client *c)
1274 {
1275         for (; c && (c->isfloating || !ISVISIBLE(c)); c = c->next);
1276         return c;
1277 }
1278
1279 Client *
1280 prevtiled(Client *c) {
1281         Client *p, *r;
1282
1283         for(p = selmon->clients, r = NULL; p && p != c; p = p->next)
1284                 if(!p->isfloating && ISVISIBLE(p))
1285                         r = p;
1286         return r;
1287 }
1288
1289 void
1290 propertynotify(XEvent *e)
1291 {
1292         Client *c;
1293         Window trans;
1294         XPropertyEvent *ev = &e->xproperty;
1295
1296         if ((ev->window == root) && (ev->atom == XA_WM_NAME))
1297                 updatestatus();
1298         else if (ev->state == PropertyDelete)
1299                 return; /* ignore */
1300         else if ((c = wintoclient(ev->window))) {
1301                 switch(ev->atom) {
1302                 default: break;
1303                 case XA_WM_TRANSIENT_FOR:
1304                         if (!c->isfloating && (XGetTransientForHint(dpy, c->win, &trans)) &&
1305                                 (c->isfloating = (wintoclient(trans)) != NULL))
1306                                 arrange(c->mon);
1307                         break;
1308                 case XA_WM_NORMAL_HINTS:
1309                         updatesizehints(c);
1310                         break;
1311                 case XA_WM_HINTS:
1312                         updatewmhints(c);
1313                         drawbars();
1314                         break;
1315                 }
1316                 if (ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
1317                         updatetitle(c);
1318                         if (c == c->mon->sel)
1319                                 drawbar(c->mon);
1320                 }
1321                 if (ev->atom == netatom[NetWMWindowType])
1322                         updatewindowtype(c);
1323         }
1324 }
1325
1326 void
1327 pushdown(const Arg *arg) {
1328         Client *sel = selmon->sel, *c;
1329
1330         if(!sel || sel->isfloating)
1331                 return;
1332         if((c = nexttiled(sel->next))) {
1333                 detach(sel);
1334                 sel->next = c->next;
1335                 c->next = sel;
1336         } else {
1337                 detach(sel);
1338                 attach(sel);
1339         }
1340         focus(sel);
1341         arrange(selmon);
1342 }
1343
1344 void
1345 pushup(const Arg *arg) {
1346         Client *sel = selmon->sel, *c;
1347
1348         if(!sel || sel->isfloating)
1349                 return;
1350         if((c = prevtiled(sel))) {
1351                 detach(sel);
1352                 sel->next = c;
1353                 if(selmon->clients == c)
1354                         selmon->clients = sel;
1355                 else {
1356                         for(c = selmon->clients; c->next != sel->next; c = c->next);
1357                         c->next = sel;
1358                 }
1359         } else {
1360                 for(c = sel; c->next; c = c->next);
1361                 detach(sel);
1362                 sel->next = NULL;
1363                 c->next = sel;
1364         }
1365         focus(sel);
1366         arrange(selmon);
1367 }
1368
1369 void
1370 quit(const Arg *arg)
1371 {
1372         size_t i;
1373
1374         /* kill child processes */
1375         for (i = 0; i < autostart_len; i++) {
1376                 if (0 < autostart_pids[i]) {
1377                         kill(autostart_pids[i], SIGTERM);
1378                         waitpid(autostart_pids[i], NULL, 0);
1379                 }
1380         }
1381
1382         running = 0;
1383 }
1384
1385 Monitor *
1386 recttomon(int x, int y, int w, int h)
1387 {
1388         Monitor *m, *r = selmon;
1389         int a, area = 0;
1390
1391         for (m = mons; m; m = m->next)
1392                 if ((a = INTERSECT(x, y, w, h, m)) > area) {
1393                         area = a;
1394                         r = m;
1395                 }
1396         return r;
1397 }
1398
1399 void
1400 resize(Client *c, int x, int y, int w, int h, int interact)
1401 {
1402         if (applysizehints(c, &x, &y, &w, &h, interact))
1403                 resizeclient(c, x, y, w, h);
1404 }
1405
1406 void
1407 resizeclient(Client *c, int x, int y, int w, int h)
1408 {
1409         XWindowChanges wc;
1410
1411         c->oldx = c->x; c->x = wc.x = x;
1412         c->oldy = c->y; c->y = wc.y = y;
1413         c->oldw = c->w; c->w = wc.width = w;
1414         c->oldh = c->h; c->h = wc.height = h;
1415         wc.border_width = c->bw;
1416         XConfigureWindow(dpy, c->win, CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
1417         configure(c);
1418         XSync(dpy, False);
1419 }
1420
1421 void
1422 resizemouse(const Arg *arg)
1423 {
1424         int ocx, ocy, nw, nh;
1425         Client *c;
1426         Monitor *m;
1427         XEvent ev;
1428         Time lasttime = 0;
1429
1430         if (!(c = selmon->sel))
1431                 return;
1432         restack(selmon);
1433         ocx = c->x;
1434         ocy = c->y;
1435         if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
1436                 None, cursor[CurResize]->cursor, CurrentTime) != GrabSuccess)
1437                 return;
1438         XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
1439         do {
1440                 XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
1441                 switch(ev.type) {
1442                 case ConfigureRequest:
1443                 case Expose:
1444                 case MapRequest:
1445                         handler[ev.type](&ev);
1446                         break;
1447                 case MotionNotify:
1448                         if ((ev.xmotion.time - lasttime) <= (1000 / 60))
1449                                 continue;
1450                         lasttime = ev.xmotion.time;
1451
1452                         nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1);
1453                         nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1);
1454                         if (c->mon->wx + nw >= selmon->wx && c->mon->wx + nw <= selmon->wx + selmon->ww
1455                         && c->mon->wy + nh >= selmon->wy && c->mon->wy + nh <= selmon->wy + selmon->wh)
1456                         {
1457                                 if (!c->isfloating && selmon->lt[selmon->sellt]->arrange
1458                                 && (abs(nw - c->w) > snap || abs(nh - c->h) > snap))
1459                                         togglefloating(NULL);
1460                         }
1461                         if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
1462                                 resize(c, c->x, c->y, nw, nh, 1);
1463                         break;
1464                 }
1465         } while (ev.type != ButtonRelease);
1466         XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
1467         XUngrabPointer(dpy, CurrentTime);
1468         while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
1469         if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
1470                 sendmon(c, m);
1471                 selmon = m;
1472                 focus(NULL);
1473         }
1474 }
1475
1476 void
1477 restack(Monitor *m)
1478 {
1479         Client *c;
1480         XEvent ev;
1481         XWindowChanges wc;
1482
1483         drawbar(m);
1484         if (!m->sel)
1485                 return;
1486         if (m->sel->isfloating || !m->lt[m->sellt]->arrange)
1487                 XRaiseWindow(dpy, m->sel->win);
1488         if (m->lt[m->sellt]->arrange) {
1489                 wc.stack_mode = Below;
1490                 wc.sibling = m->barwin;
1491                 for (c = m->stack; c; c = c->snext)
1492                         if (!c->isfloating && ISVISIBLE(c)) {
1493                                 XConfigureWindow(dpy, c->win, CWSibling|CWStackMode, &wc);
1494                                 wc.sibling = c->win;
1495                         }
1496         }
1497         XSync(dpy, False);
1498         while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
1499 }
1500
1501 void
1502 run(void)
1503 {
1504         XEvent ev;
1505         /* main event loop */
1506         XSync(dpy, False);
1507         while (running && !XNextEvent(dpy, &ev))
1508                 if (handler[ev.type])
1509                         handler[ev.type](&ev); /* call handler */
1510 }
1511
1512 void
1513 scan(void)
1514 {
1515         unsigned int i, num;
1516         Window d1, d2, *wins = NULL;
1517         XWindowAttributes wa;
1518
1519         if (XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
1520                 for (i = 0; i < num; i++) {
1521                         if (!XGetWindowAttributes(dpy, wins[i], &wa)
1522                         || wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
1523                                 continue;
1524                         if (wa.map_state == IsViewable || getstate(wins[i]) == IconicState)
1525                                 manage(wins[i], &wa);
1526                 }
1527                 for (i = 0; i < num; i++) { /* now the transients */
1528                         if (!XGetWindowAttributes(dpy, wins[i], &wa))
1529                                 continue;
1530                         if (XGetTransientForHint(dpy, wins[i], &d1)
1531                         && (wa.map_state == IsViewable || getstate(wins[i]) == IconicState))
1532                                 manage(wins[i], &wa);
1533                 }
1534                 if (wins)
1535                         XFree(wins);
1536         }
1537 }
1538
1539 void
1540 sendmon(Client *c, Monitor *m)
1541 {
1542         if (c->mon == m)
1543                 return;
1544         unfocus(c, 1);
1545         detach(c);
1546         detachstack(c);
1547         c->mon = m;
1548         c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */
1549         attachbottom(c);
1550         attachstack(c);
1551         focus(NULL);
1552         arrange(NULL);
1553 }
1554
1555 void
1556 setclientstate(Client *c, long state)
1557 {
1558         long data[] = { state, None };
1559
1560         XChangeProperty(dpy, c->win, wmatom[WMState], wmatom[WMState], 32,
1561                 PropModeReplace, (unsigned char *)data, 2);
1562 }
1563
1564 int
1565 sendevent(Client *c, Atom proto)
1566 {
1567         int n;
1568         Atom *protocols;
1569         int exists = 0;
1570         XEvent ev;
1571
1572         if (XGetWMProtocols(dpy, c->win, &protocols, &n)) {
1573                 while (!exists && n--)
1574                         exists = protocols[n] == proto;
1575                 XFree(protocols);
1576         }
1577         if (exists) {
1578                 ev.type = ClientMessage;
1579                 ev.xclient.window = c->win;
1580                 ev.xclient.message_type = wmatom[WMProtocols];
1581                 ev.xclient.format = 32;
1582                 ev.xclient.data.l[0] = proto;
1583                 ev.xclient.data.l[1] = CurrentTime;
1584                 XSendEvent(dpy, c->win, False, NoEventMask, &ev);
1585         }
1586         return exists;
1587 }
1588
1589 void
1590 setfocus(Client *c)
1591 {
1592         if (!c->neverfocus) {
1593                 XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
1594                 XChangeProperty(dpy, root, netatom[NetActiveWindow],
1595                         XA_WINDOW, 32, PropModeReplace,
1596                         (unsigned char *) &(c->win), 1);
1597         }
1598         sendevent(c, wmatom[WMTakeFocus]);
1599 }
1600
1601 void
1602 setfullscreen(Client *c, int fullscreen)
1603 {
1604         if (fullscreen && !c->isfullscreen) {
1605                 XChangeProperty(dpy, c->win, netatom[NetWMState], XA_ATOM, 32,
1606                         PropModeReplace, (unsigned char*)&netatom[NetWMFullscreen], 1);
1607                 c->isfullscreen = 1;
1608         } else if (!fullscreen && c->isfullscreen){
1609                 XChangeProperty(dpy, c->win, netatom[NetWMState], XA_ATOM, 32,
1610                         PropModeReplace, (unsigned char*)0, 0);
1611                 c->isfullscreen = 0;
1612         }
1613 }
1614
1615 void
1616 setlayout(const Arg *arg)
1617 {
1618         if (!arg || !arg->v || arg->v != selmon->lt[selmon->sellt])
1619                 selmon->sellt = selmon->pertag->sellts[selmon->pertag->curtag] ^= 1;
1620         if (arg && arg->v)
1621                 selmon->lt[selmon->sellt] = selmon->pertag->ltidxs[selmon->pertag->curtag][selmon->sellt] = (Layout *)arg->v;
1622         strncpy(selmon->ltsymbol, selmon->lt[selmon->sellt]->symbol, sizeof selmon->ltsymbol);
1623         if (selmon->sel)
1624                 arrange(selmon);
1625         else
1626                 drawbar(selmon);
1627 }
1628
1629 /* arg > 1.0 will set mfact absolutely */
1630 void
1631 setmfact(const Arg *arg)
1632 {
1633         float f;
1634
1635         if (!arg || !selmon->lt[selmon->sellt]->arrange)
1636                 return;
1637         f = arg->f < 1.0 ? arg->f + selmon->mfact : arg->f - 1.0;
1638         if (f < 0.05 || f > 0.95)
1639                 return;
1640         selmon->mfact = selmon->pertag->mfacts[selmon->pertag->curtag] = f;
1641         arrange(selmon);
1642 }
1643
1644 void
1645 setup(void)
1646 {
1647         int i;
1648         XSetWindowAttributes wa;
1649         Atom utf8string;
1650
1651         /* clean up any zombies immediately */
1652         sigchld(0);
1653
1654         /* init screen */
1655         screen = DefaultScreen(dpy);
1656         sw = DisplayWidth(dpy, screen);
1657         sh = DisplayHeight(dpy, screen);
1658         root = RootWindow(dpy, screen);
1659         drw = drw_create(dpy, screen, root, sw, sh);
1660         if (!drw_fontset_create(drw, fonts, LENGTH(fonts)))
1661                 die("no fonts could be loaded.");
1662         lrpad = drw->fonts->h;
1663         bh = drw->fonts->h + 2;
1664         updategeom();
1665         /* init atoms */
1666         utf8string = XInternAtom(dpy, "UTF8_STRING", False);
1667         wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
1668         wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
1669         wmatom[WMState] = XInternAtom(dpy, "WM_STATE", False);
1670         wmatom[WMTakeFocus] = XInternAtom(dpy, "WM_TAKE_FOCUS", False);
1671         netatom[NetActiveWindow] = XInternAtom(dpy, "_NET_ACTIVE_WINDOW", False);
1672         netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
1673         netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
1674         netatom[NetWMState] = XInternAtom(dpy, "_NET_WM_STATE", False);
1675         netatom[NetWMCheck] = XInternAtom(dpy, "_NET_SUPPORTING_WM_CHECK", False);
1676         netatom[NetWMFullscreen] = XInternAtom(dpy, "_NET_WM_STATE_FULLSCREEN", False);
1677         netatom[NetWMWindowType] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE", False);
1678         netatom[NetWMWindowTypeDialog] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE_DIALOG", False);
1679         netatom[NetClientList] = XInternAtom(dpy, "_NET_CLIENT_LIST", False);
1680         /* init cursors */
1681         cursor[CurNormal] = drw_cur_create(drw, XC_left_ptr);
1682         cursor[CurResize] = drw_cur_create(drw, XC_sizing);
1683         cursor[CurMove] = drw_cur_create(drw, XC_fleur);
1684         /* init appearance */
1685         scheme = ecalloc(LENGTH(colors), sizeof(Clr *));
1686         for (i = 0; i < LENGTH(colors); i++)
1687                 scheme[i] = drw_scm_create(drw, colors[i], 3);
1688         /* init bars */
1689         updatebars();
1690         updatestatus();
1691         /* supporting window for NetWMCheck */
1692         wmcheckwin = XCreateSimpleWindow(dpy, root, 0, 0, 1, 1, 0, 0, 0);
1693         XChangeProperty(dpy, wmcheckwin, netatom[NetWMCheck], XA_WINDOW, 32,
1694                 PropModeReplace, (unsigned char *) &wmcheckwin, 1);
1695         XChangeProperty(dpy, wmcheckwin, netatom[NetWMName], utf8string, 8,
1696                 PropModeReplace, (unsigned char *) "dwm", 3);
1697         XChangeProperty(dpy, root, netatom[NetWMCheck], XA_WINDOW, 32,
1698                 PropModeReplace, (unsigned char *) &wmcheckwin, 1);
1699         /* EWMH support per view */
1700         XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
1701                 PropModeReplace, (unsigned char *) netatom, NetLast);
1702         XDeleteProperty(dpy, root, netatom[NetClientList]);
1703         /* select events */
1704         wa.cursor = cursor[CurNormal]->cursor;
1705         wa.event_mask = SubstructureRedirectMask|SubstructureNotifyMask
1706                 |ButtonPressMask|PointerMotionMask|EnterWindowMask
1707                 |LeaveWindowMask|StructureNotifyMask|PropertyChangeMask;
1708         XChangeWindowAttributes(dpy, root, CWEventMask|CWCursor, &wa);
1709         XSelectInput(dpy, root, wa.event_mask);
1710         grabkeys();
1711         focus(NULL);
1712 }
1713
1714
1715 void
1716 seturgent(Client *c, int urg)
1717 {
1718         XWMHints *wmh;
1719
1720         c->isurgent = urg;
1721         if (!(wmh = XGetWMHints(dpy, c->win)))
1722                 return;
1723         wmh->flags = urg ? (wmh->flags | XUrgencyHint) : (wmh->flags & ~XUrgencyHint);
1724         XSetWMHints(dpy, c->win, wmh);
1725         XFree(wmh);
1726 }
1727
1728 void
1729 showhide(Client *c)
1730 {
1731         if (!c)
1732                 return;
1733         if (ISVISIBLE(c)) {
1734                 /* show clients top down */
1735                 XMoveWindow(dpy, c->win, c->x, c->y);
1736                 if (!c->mon->lt[c->mon->sellt]->arrange || c->isfloating)
1737                         resize(c, c->x, c->y, c->w, c->h, 0);
1738                 showhide(c->snext);
1739         } else {
1740                 /* hide clients bottom up */
1741                 showhide(c->snext);
1742                 XMoveWindow(dpy, c->win, WIDTH(c) * -2, c->y);
1743         }
1744 }
1745
1746 void
1747 sigchld(int unused)
1748 {
1749         pid_t pid;
1750
1751         if (signal(SIGCHLD, sigchld) == SIG_ERR)
1752                 die("can't install SIGCHLD handler:");
1753         while (0 < (pid = waitpid(-1, NULL, WNOHANG))) {
1754                 pid_t *p, *lim;
1755
1756                 if (!(p = autostart_pids))
1757                         continue;
1758                 lim = &p[autostart_len];
1759
1760                 for (; p < lim; p++) {
1761                         if (*p == pid) {
1762                                 *p = -1;
1763                                 break;
1764                         }
1765                 }
1766
1767         }
1768 }
1769
1770 void
1771 spawn(const Arg *arg)
1772 {
1773         if (arg->v == dmenucmd)
1774                 dmenumon[0] = '0' + selmon->num;
1775         if (fork() == 0) {
1776                 if (dpy)
1777                         close(ConnectionNumber(dpy));
1778                 setsid();
1779                 execvp(((char **)arg->v)[0], (char **)arg->v);
1780                 fprintf(stderr, "dwm: execvp %s", ((char **)arg->v)[0]);
1781                 perror(" failed");
1782                 exit(EXIT_SUCCESS);
1783         }
1784 }
1785
1786 void
1787 tag(const Arg *arg)
1788 {
1789         if (selmon->sel && arg->ui & TAGMASK) {
1790                 selmon->sel->tags = arg->ui & TAGMASK;
1791                 focus(NULL);
1792                 arrange(selmon);
1793         }
1794 }
1795
1796 void
1797 tagmon(const Arg *arg)
1798 {
1799         if (!selmon->sel || !mons->next)
1800                 return;
1801         sendmon(selmon->sel, dirtomon(arg->i));
1802 }
1803
1804 void
1805 tile(Monitor *m)
1806 {
1807         unsigned int i, n, h, mw, my, ty;
1808         Client *c;
1809
1810         for (n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
1811         if (n == 0)
1812                 return;
1813
1814         if (n > m->nmaster)
1815                 mw = m->nmaster ? m->ww * m->mfact : 0;
1816         else
1817                 mw = m->ww;
1818         for (i = my = ty = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++)
1819                 if (i < m->nmaster) {
1820                         h = (m->wh - my) / (MIN(n, m->nmaster) - i);
1821                         resize(c, m->wx, m->wy + my, mw - (2*c->bw), h - (2*c->bw), 0);
1822                         if (my + HEIGHT(c) < m->wh)
1823                                 my += HEIGHT(c);
1824                 } else {
1825                         h = (m->wh - ty) / (n - i);
1826                         resize(c, m->wx + mw, m->wy + ty, m->ww - mw - (2*c->bw), h - (2*c->bw), 0);
1827                         if (ty + HEIGHT(c) < m->wh)
1828                                 ty += HEIGHT(c);
1829                 }
1830 }
1831
1832 void
1833 togglebar(const Arg *arg)
1834 {
1835         selmon->showbar = selmon->pertag->showbars[selmon->pertag->curtag] = !selmon->showbar;
1836         updatebarpos(selmon);
1837         XMoveResizeWindow(dpy, selmon->barwin, selmon->wx, selmon->by, selmon->ww, bh);
1838         arrange(selmon);
1839 }
1840
1841 void
1842 togglefloating(const Arg *arg)
1843 {
1844         if (!selmon->sel)
1845                 return;
1846         selmon->sel->isfloating = !selmon->sel->isfloating || selmon->sel->isfixed;
1847         if (selmon->sel->isfloating)
1848                 resize(selmon->sel, selmon->sel->x, selmon->sel->y,
1849                         selmon->sel->w, selmon->sel->h, 0);
1850         arrange(selmon);
1851 }
1852
1853 void
1854 toggletag(const Arg *arg)
1855 {
1856         unsigned int newtags;
1857
1858         if (!selmon->sel)
1859                 return;
1860         newtags = selmon->sel->tags ^ (arg->ui & TAGMASK);
1861         if (newtags) {
1862                 selmon->sel->tags = newtags;
1863                 focus(NULL);
1864                 arrange(selmon);
1865         }
1866 }
1867
1868 void
1869 toggleview(const Arg *arg)
1870 {
1871         unsigned int newtagset = selmon->tagset[selmon->seltags] ^ (arg->ui & TAGMASK);
1872         int i;
1873
1874         if (newtagset) {
1875                 selmon->tagset[selmon->seltags] = newtagset;
1876
1877                 if (newtagset == ~0) {
1878                         selmon->pertag->prevtag = selmon->pertag->curtag;
1879                         selmon->pertag->curtag = 0;
1880                 }
1881
1882                 /* test if the user did not select the same tag */
1883                 if (!(newtagset & 1 << (selmon->pertag->curtag - 1))) {
1884                         selmon->pertag->prevtag = selmon->pertag->curtag;
1885                         for (i = 0; !(newtagset & 1 << i); i++) ;
1886                         selmon->pertag->curtag = i + 1;
1887                 }
1888
1889                 /* apply settings for this view */
1890                 selmon->nmaster = selmon->pertag->nmasters[selmon->pertag->curtag];
1891                 selmon->mfact = selmon->pertag->mfacts[selmon->pertag->curtag];
1892                 selmon->sellt = selmon->pertag->sellts[selmon->pertag->curtag];
1893                 selmon->lt[selmon->sellt] = selmon->pertag->ltidxs[selmon->pertag->curtag][selmon->sellt];
1894                 selmon->lt[selmon->sellt^1] = selmon->pertag->ltidxs[selmon->pertag->curtag][selmon->sellt^1];
1895
1896                 if (selmon->showbar != selmon->pertag->showbars[selmon->pertag->curtag])
1897                         togglebar(NULL);
1898
1899                 focus(NULL);
1900                 arrange(selmon);
1901         }
1902 }
1903
1904 void
1905 unfocus(Client *c, int setfocus)
1906 {
1907         if (!c)
1908                 return;
1909         grabbuttons(c, 0);
1910         XSetWindowBorder(dpy, c->win, scheme[SchemeNorm][ColBorder].pixel);
1911         if (setfocus) {
1912                 XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
1913                 XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
1914         }
1915 }
1916
1917 void
1918 unmanage(Client *c, int destroyed)
1919 {
1920         Monitor *m = c->mon;
1921         XWindowChanges wc;
1922
1923         detach(c);
1924         detachstack(c);
1925         if (!destroyed) {
1926                 wc.border_width = c->oldbw;
1927                 XGrabServer(dpy); /* avoid race conditions */
1928                 XSetErrorHandler(xerrordummy);
1929                 XConfigureWindow(dpy, c->win, CWBorderWidth, &wc); /* restore border */
1930                 XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
1931                 setclientstate(c, WithdrawnState);
1932                 XSync(dpy, False);
1933                 XSetErrorHandler(xerror);
1934                 XUngrabServer(dpy);
1935         }
1936         free(c);
1937
1938         focus(NULL);
1939         updateclientlist();
1940         arrange(m);
1941 }
1942
1943 void
1944 unmapnotify(XEvent *e)
1945 {
1946         Client *c;
1947         XUnmapEvent *ev = &e->xunmap;
1948
1949         if ((c = wintoclient(ev->window))) {
1950                 if (ev->send_event)
1951                         setclientstate(c, WithdrawnState);
1952                 else
1953                         unmanage(c, 0);
1954         }
1955 }
1956
1957 void
1958 updatebars(void)
1959 {
1960         Monitor *m;
1961         XSetWindowAttributes wa = {
1962                 .override_redirect = True,
1963                 .background_pixmap = ParentRelative,
1964                 .event_mask = ButtonPressMask|ExposureMask
1965         };
1966         XClassHint ch = {"dwm", "dwm"};
1967         for (m = mons; m; m = m->next) {
1968                 if (m->barwin)
1969                         continue;
1970                 m->barwin = XCreateWindow(dpy, root, m->wx, m->by, m->ww, bh, 0, DefaultDepth(dpy, screen),
1971                                 CopyFromParent, DefaultVisual(dpy, screen),
1972                                 CWOverrideRedirect|CWBackPixmap|CWEventMask, &wa);
1973                 XDefineCursor(dpy, m->barwin, cursor[CurNormal]->cursor);
1974                 XMapRaised(dpy, m->barwin);
1975                 XSetClassHint(dpy, m->barwin, &ch);
1976         }
1977 }
1978
1979 void
1980 updatebarpos(Monitor *m)
1981 {
1982         m->wy = m->my;
1983         m->wh = m->mh;
1984         if (m->showbar) {
1985                 m->wh -= bh;
1986                 m->by = m->topbar ? m->wy : m->wy + m->wh;
1987                 m->wy = m->topbar ? m->wy + bh : m->wy;
1988         } else
1989                 m->by = -bh;
1990 }
1991
1992 void
1993 updateclientlist()
1994 {
1995         Client *c;
1996         Monitor *m;
1997
1998         XDeleteProperty(dpy, root, netatom[NetClientList]);
1999         for (m = mons; m; m = m->next)
2000                 for (c = m->clients; c; c = c->next)
2001                         XChangeProperty(dpy, root, netatom[NetClientList],
2002                                 XA_WINDOW, 32, PropModeAppend,
2003                                 (unsigned char *) &(c->win), 1);
2004 }
2005
2006 int
2007 updategeom(void)
2008 {
2009         int dirty = 0;
2010
2011 #ifdef XINERAMA
2012         if (XineramaIsActive(dpy)) {
2013                 int i, j, n, nn;
2014                 Client *c;
2015                 Monitor *m;
2016                 XineramaScreenInfo *info = XineramaQueryScreens(dpy, &nn);
2017                 XineramaScreenInfo *unique = NULL;
2018
2019                 for (n = 0, m = mons; m; m = m->next, n++);
2020                 /* only consider unique geometries as separate screens */
2021                 unique = ecalloc(nn, sizeof(XineramaScreenInfo));
2022                 for (i = 0, j = 0; i < nn; i++)
2023                         if (isuniquegeom(unique, j, &info[i]))
2024                                 memcpy(&unique[j++], &info[i], sizeof(XineramaScreenInfo));
2025                 XFree(info);
2026                 nn = j;
2027                 if (n <= nn) { /* new monitors available */
2028                         for (i = 0; i < (nn - n); i++) {
2029                                 for (m = mons; m && m->next; m = m->next);
2030                                 if (m)
2031                                         m->next = createmon();
2032                                 else
2033                                         mons = createmon();
2034                         }
2035                         for (i = 0, m = mons; i < nn && m; m = m->next, i++)
2036                                 if (i >= n
2037                                 || unique[i].x_org != m->mx || unique[i].y_org != m->my
2038                                 || unique[i].width != m->mw || unique[i].height != m->mh)
2039                                 {
2040                                         dirty = 1;
2041                                         m->num = i;
2042                                         m->mx = m->wx = unique[i].x_org;
2043                                         m->my = m->wy = unique[i].y_org;
2044                                         m->mw = m->ww = unique[i].width;
2045                                         m->mh = m->wh = unique[i].height;
2046                                         updatebarpos(m);
2047                                 }
2048                 } else { /* less monitors available nn < n */
2049                         for (i = nn; i < n; i++) {
2050                                 for (m = mons; m && m->next; m = m->next);
2051                                 while ((c = m->clients)) {
2052                                         dirty = 1;
2053                                         m->clients = c->next;
2054                                         detachstack(c);
2055                                         c->mon = mons;
2056                                         attachbottom(c);
2057                                         attachstack(c);
2058                                 }
2059                                 if (m == selmon)
2060                                         selmon = mons;
2061                                 cleanupmon(m);
2062                         }
2063                 }
2064                 free(unique);
2065         } else
2066 #endif /* XINERAMA */
2067         { /* default monitor setup */
2068                 if (!mons)
2069                         mons = createmon();
2070                 if (mons->mw != sw || mons->mh != sh) {
2071                         dirty = 1;
2072                         mons->mw = mons->ww = sw;
2073                         mons->mh = mons->wh = sh;
2074                         updatebarpos(mons);
2075                 }
2076         }
2077         if (dirty) {
2078                 selmon = mons;
2079                 selmon = wintomon(root);
2080         }
2081         return dirty;
2082 }
2083
2084 void
2085 updatenumlockmask(void)
2086 {
2087         unsigned int i, j;
2088         XModifierKeymap *modmap;
2089
2090         numlockmask = 0;
2091         modmap = XGetModifierMapping(dpy);
2092         for (i = 0; i < 8; i++)
2093                 for (j = 0; j < modmap->max_keypermod; j++)
2094                         if (modmap->modifiermap[i * modmap->max_keypermod + j]
2095                                 == XKeysymToKeycode(dpy, XK_Num_Lock))
2096                                 numlockmask = (1 << i);
2097         XFreeModifiermap(modmap);
2098 }
2099
2100 void
2101 updatesizehints(Client *c)
2102 {
2103         long msize;
2104         XSizeHints size;
2105
2106         if (!XGetWMNormalHints(dpy, c->win, &size, &msize))
2107                 /* size is uninitialized, ensure that size.flags aren't used */
2108                 size.flags = PSize;
2109         if (size.flags & PBaseSize) {
2110                 c->basew = size.base_width;
2111                 c->baseh = size.base_height;
2112         } else if (size.flags & PMinSize) {
2113                 c->basew = size.min_width;
2114                 c->baseh = size.min_height;
2115         } else
2116                 c->basew = c->baseh = 0;
2117         if (size.flags & PResizeInc) {
2118                 c->incw = size.width_inc;
2119                 c->inch = size.height_inc;
2120         } else
2121                 c->incw = c->inch = 0;
2122         if (size.flags & PMaxSize) {
2123                 c->maxw = size.max_width;
2124                 c->maxh = size.max_height;
2125         } else
2126                 c->maxw = c->maxh = 0;
2127         if (size.flags & PMinSize) {
2128                 c->minw = size.min_width;
2129                 c->minh = size.min_height;
2130         } else if (size.flags & PBaseSize) {
2131                 c->minw = size.base_width;
2132                 c->minh = size.base_height;
2133         } else
2134                 c->minw = c->minh = 0;
2135         if (size.flags & PAspect) {
2136                 c->mina = (float)size.min_aspect.y / size.min_aspect.x;
2137                 c->maxa = (float)size.max_aspect.x / size.max_aspect.y;
2138         } else
2139                 c->maxa = c->mina = 0.0;
2140         c->isfixed = (c->maxw && c->maxh && c->maxw == c->minw && c->maxh == c->minh);
2141 }
2142
2143 void
2144 updatestatus(void)
2145 {
2146         if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
2147                 strcpy(stext, "dwm-"VERSION);
2148         drawbar(selmon);
2149 }
2150
2151 void
2152 updatetitle(Client *c)
2153 {
2154         if (!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name))
2155                 gettextprop(c->win, XA_WM_NAME, c->name, sizeof c->name);
2156         if (c->name[0] == '\0') /* hack to mark broken clients */
2157                 strcpy(c->name, broken);
2158 }
2159
2160 void
2161 updatewindowtype(Client *c)
2162 {
2163         Atom state = getatomprop(c, netatom[NetWMState]);
2164         Atom wtype = getatomprop(c, netatom[NetWMWindowType]);
2165
2166         if (state == netatom[NetWMFullscreen])
2167                 setfullscreen(c, 1);
2168         if (wtype == netatom[NetWMWindowTypeDialog])
2169                 c->isfloating = 1;
2170 }
2171
2172 void
2173 updatewmhints(Client *c)
2174 {
2175         XWMHints *wmh;
2176
2177         if ((wmh = XGetWMHints(dpy, c->win))) {
2178                 if (c == selmon->sel && wmh->flags & XUrgencyHint) {
2179                         wmh->flags &= ~XUrgencyHint;
2180                         XSetWMHints(dpy, c->win, wmh);
2181                 } else
2182                         c->isurgent = (wmh->flags & XUrgencyHint) ? 1 : 0;
2183                 if (wmh->flags & InputHint)
2184                         c->neverfocus = !wmh->input;
2185                 else
2186                         c->neverfocus = 0;
2187                 XFree(wmh);
2188         }
2189 }
2190
2191 void
2192 view(const Arg *arg)
2193 {
2194         int i;
2195         unsigned int tmptag;
2196
2197         if ((arg->ui & TAGMASK) == selmon->tagset[selmon->seltags])
2198                 return;
2199         selmon->seltags ^= 1; /* toggle sel tagset */
2200         if (arg->ui & TAGMASK) {
2201                 selmon->tagset[selmon->seltags] = arg->ui & TAGMASK;
2202                 selmon->pertag->prevtag = selmon->pertag->curtag;
2203
2204                 if (arg->ui == ~0)
2205                         selmon->pertag->curtag = 0;
2206                 else {
2207                         for (i = 0; !(arg->ui & 1 << i); i++) ;
2208                         selmon->pertag->curtag = i + 1;
2209                 }
2210         } else {
2211                 tmptag = selmon->pertag->prevtag;
2212                 selmon->pertag->prevtag = selmon->pertag->curtag;
2213                 selmon->pertag->curtag = tmptag;
2214         }
2215
2216         selmon->nmaster = selmon->pertag->nmasters[selmon->pertag->curtag];
2217         selmon->mfact = selmon->pertag->mfacts[selmon->pertag->curtag];
2218         selmon->sellt = selmon->pertag->sellts[selmon->pertag->curtag];
2219         selmon->lt[selmon->sellt] = selmon->pertag->ltidxs[selmon->pertag->curtag][selmon->sellt];
2220         selmon->lt[selmon->sellt^1] = selmon->pertag->ltidxs[selmon->pertag->curtag][selmon->sellt^1];
2221
2222         if (selmon->showbar != selmon->pertag->showbars[selmon->pertag->curtag])
2223                 togglebar(NULL);
2224
2225         focus(NULL);
2226         arrange(selmon);
2227 }
2228
2229 Client *
2230 wintoclient(Window w)
2231 {
2232         Client *c;
2233         Monitor *m;
2234
2235         for (m = mons; m; m = m->next)
2236                 for (c = m->clients; c; c = c->next)
2237                         if (c->win == w)
2238                                 return c;
2239         return NULL;
2240 }
2241
2242 Monitor *
2243 wintomon(Window w)
2244 {
2245         int x, y;
2246         Client *c;
2247         Monitor *m;
2248
2249         if (w == root && getrootptr(&x, &y))
2250                 return recttomon(x, y, 1, 1);
2251         for (m = mons; m; m = m->next)
2252                 if (w == m->barwin)
2253                         return m;
2254         if ((c = wintoclient(w)))
2255                 return c->mon;
2256         return selmon;
2257 }
2258
2259 /* There's no way to check accesses to destroyed windows, thus those cases are
2260  * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
2261  * default error handler, which may call exit. */
2262 int
2263 xerror(Display *dpy, XErrorEvent *ee)
2264 {
2265         if (ee->error_code == BadWindow
2266         || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
2267         || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
2268         || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
2269         || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
2270         || (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
2271         || (ee->request_code == X_GrabButton && ee->error_code == BadAccess)
2272         || (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
2273         || (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
2274                 return 0;
2275         fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
2276                 ee->request_code, ee->error_code);
2277         return xerrorxlib(dpy, ee); /* may call exit */
2278 }
2279
2280 int
2281 xerrordummy(Display *dpy, XErrorEvent *ee)
2282 {
2283         return 0;
2284 }
2285
2286 /* Startup Error handler to check if another window manager
2287  * is already running. */
2288 int
2289 xerrorstart(Display *dpy, XErrorEvent *ee)
2290 {
2291         die("dwm: another window manager is already running");
2292         return -1;
2293 }
2294
2295 void
2296 zoom(const Arg *arg)
2297 {
2298         Client *c = selmon->sel;
2299         Client *at = NULL, *cold, *cprevious = NULL;
2300
2301         if (!selmon->lt[selmon->sellt]->arrange
2302         || (selmon->sel && selmon->sel->isfloating))
2303                 return;
2304         if (c == nexttiled(selmon->clients)) {
2305                 at = findbefore(prevzoom);
2306                 if (at)
2307                         cprevious = nexttiled(at->next);
2308                 if (!cprevious || cprevious != prevzoom) {
2309                         prevzoom = NULL;
2310                         if (!c || !(c = nexttiled(c->next)))
2311                                 return;
2312                 } else
2313                         c = cprevious;
2314         }
2315         cold = nexttiled(selmon->clients);
2316         if (c != cold && !at)
2317                 at = findbefore(c);
2318         detach(c);
2319         attach(c);
2320         /* swap windows instead of pushing the previous one down */
2321         if (c != cold && at) {
2322                 prevzoom = cold;
2323                 if (cold && at != cold) {
2324                         detach(cold);
2325                         cold->next = at->next;
2326                         at->next = cold;
2327                 }
2328         }
2329         focus(c);
2330         arrange(c->mon);
2331 }
2332
2333 int
2334 main(int argc, char *argv[])
2335 {
2336         if (argc == 2 && !strcmp("-v", argv[1]))
2337                 die("dwm-"VERSION);
2338         else if (argc != 1)
2339                 die("usage: dwm [-v]");
2340         if (!setlocale(LC_CTYPE, "") || !XSupportsLocale())
2341                 fputs("warning: no locale support\n", stderr);
2342         if (!(dpy = XOpenDisplay(NULL)))
2343                 die("dwm: cannot open display");
2344         checkotherwm();
2345         autostart_exec();
2346         setup();
2347 #ifdef __OpenBSD__
2348         if (pledge("stdio rpath proc exec", NULL) == -1)
2349                 die("pledge");
2350 #endif /* __OpenBSD__ */
2351         scan();
2352         run();
2353         cleanup();
2354         XCloseDisplay(dpy);
2355         return EXIT_SUCCESS;
2356 }