Xinqi Bao's Git
f20861e13c3cc0c97f061ef67330c5aecfb2c35d
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 * 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
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 global
15 * linked client list, the focus history is remembered through a global
16 * stack list. Each client contains a bit array to indicate the tags of a
19 * Keys and tagging rules are organized as arrays and defined in config.h.
21 * To understand everything else, start reading main().
31 #include <sys/types.h>
33 #include <X11/cursorfont.h>
34 #include <X11/keysym.h>
35 #include <X11/Xatom.h>
37 #include <X11/Xproto.h>
38 #include <X11/Xutil.h>
40 #include <X11/extensions/Xinerama.h>
44 #define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
45 #define CLEANMASK(mask) (mask & ~(numlockmask|LockMask))
46 #define INRECT(X,Y,RX,RY,RW,RH) ((X) >= (RX) && (X) < (RX) + (RW) && (Y) >= (RY) && (Y) < (RY) + (RH))
47 #define ISVISIBLE(C) ((C->tags & C->mon->tagset[C->mon->seltags]))
48 #define LENGTH(X) (sizeof X / sizeof X[0])
49 #define MAX(A, B) ((A) > (B) ? (A) : (B))
50 #define MIN(A, B) ((A) < (B) ? (A) : (B))
51 #define MOUSEMASK (BUTTONMASK|PointerMotionMask)
52 #define WIDTH(X) ((X)->w + 2 * (X)->bw)
53 #define HEIGHT(X) ((X)->h + 2 * (X)->bw)
54 #define TAGMASK ((int)((1LL << LENGTH(tags)) - 1))
55 #define TEXTW(X) (textnw(X, strlen(X)) + dc.font.height)
58 enum { CurNormal
, CurResize
, CurMove
, CurLast
}; /* cursor */
59 enum { ColBorder
, ColFG
, ColBG
, ColLast
}; /* color */
60 enum { NetSupported
, NetWMName
, NetLast
}; /* EWMH atoms */
61 enum { WMProtocols
, WMDelete
, WMState
, WMLast
}; /* default atoms */
62 enum { ClkTagBar
, ClkLtSymbol
, ClkStatusText
, ClkWinTitle
,
63 ClkClientWin
, ClkRootWin
, ClkLast
}; /* clicks */
76 void (*func
)(const Arg
*arg
);
80 typedef struct Monitor Monitor
;
81 typedef struct Client Client
;
86 int basew
, baseh
, incw
, inch
, maxw
, maxh
, minw
, minh
;
89 Bool isfixed
, isfloating
, isurgent
;
98 unsigned long norm
[ColLast
];
99 unsigned long sel
[ColLast
];
109 } DC
; /* draw context */
114 void (*func
)(const Arg
*);
120 void (*arrange
)(Monitor
*);
126 int by
, btx
; /* bar geometry */
127 int mx
, my
, mw
, mh
; /* screen size */
128 int wx
, wy
, ww
, wh
; /* window area */
129 unsigned int seltags
;
131 unsigned int tagset
[2];
143 const char *instance
;
149 /* function declarations */
150 static void applyrules(Client
*c
);
151 static Bool
applysizehints(Client
*c
, int *x
, int *y
, int *w
, int *h
);
152 static void arrange(void);
153 static void attach(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 cleanupmons(void);
159 static void clearurgent(Client
*c
);
160 static void configure(Client
*c
);
161 static void configurenotify(XEvent
*e
);
162 static void configurerequest(XEvent
*e
);
163 static void destroynotify(XEvent
*e
);
164 static void detach(Client
*c
);
165 static void detachstack(Client
*c
);
166 static void die(const char *errstr
, ...);
167 static void drawbar(Monitor
*m
);
168 static void drawbars(void);
169 static void drawsquare(Bool filled
, Bool empty
, Bool invert
, unsigned long col
[ColLast
]);
170 static void drawtext(const char *text
, unsigned long col
[ColLast
], Bool invert
);
171 static void enternotify(XEvent
*e
);
172 static void expose(XEvent
*e
);
173 static void focus(Client
*c
);
174 static void focusin(XEvent
*e
);
175 static void focusstack(const Arg
*arg
);
176 static unsigned long getcolor(const char *colstr
);
177 static Bool
getrootpointer(int *x
, int *y
);
178 static long getstate(Window w
);
179 static Bool
gettextprop(Window w
, Atom atom
, char *text
, unsigned int size
);
180 static void grabbuttons(Client
*c
, Bool focused
);
181 static void grabkeys(void);
182 static Monitor
*idxtomon(unsigned int n
);
183 static void initfont(const char *fontstr
);
184 static Bool
isprotodel(Client
*c
);
185 static void keypress(XEvent
*e
);
186 static void killclient(const Arg
*arg
);
187 static void manage(Window w
, XWindowAttributes
*wa
);
188 static void mappingnotify(XEvent
*e
);
189 static void maprequest(XEvent
*e
);
190 static void monocle(Monitor
*m
);
191 static void movemouse(const Arg
*arg
);
192 static Client
*nexttiled(Client
*c
);
193 static Monitor
*pointertomon(int x
, int y
);
194 static void propertynotify(XEvent
*e
);
195 static void quit(const Arg
*arg
);
196 static void resize(Client
*c
, int x
, int y
, int w
, int h
);
197 static void resizemouse(const Arg
*arg
);
198 static void restack(Monitor
*m
);
199 static void run(void);
200 static void scan(void);
201 static void sendmon(Client
*c
, Monitor
*m
);
202 static void setclientstate(Client
*c
, long state
);
203 static void setlayout(const Arg
*arg
);
204 static void setmfact(const Arg
*arg
);
205 static void setup(void);
206 static void showhide(Client
*c
);
207 static void sigchld(int signal
);
208 static void spawn(const Arg
*arg
);
209 static void tag(const Arg
*arg
);
210 static int textnw(const char *text
, unsigned int len
);
211 static void tile(Monitor
*);
212 static void togglebar(const Arg
*arg
);
213 static void togglefloating(const Arg
*arg
);
214 static void toggletag(const Arg
*arg
);
215 static void toggleview(const Arg
*arg
);
216 static void unfocus(Client
*c
);
217 static void unmanage(Client
*c
);
218 static void unmapnotify(XEvent
*e
);
219 static void updategeom(void);
220 static void updatebarpos(Monitor
*m
);
221 static void updatebars(void);
222 static void updatenumlockmask(void);
223 static void updatesizehints(Client
*c
);
224 static void updatestatus(void);
225 static void updatetitle(Client
*c
);
226 static void updatewmhints(Client
*c
);
227 static void view(const Arg
*arg
);
228 static Client
*wintoclient(Window w
);
229 static Monitor
*wintomon(Window w
);
230 static int xerror(Display
*dpy
, XErrorEvent
*ee
);
231 static int xerrordummy(Display
*dpy
, XErrorEvent
*ee
);
232 static int xerrorstart(Display
*dpy
, XErrorEvent
*ee
);
233 static void zoom(const Arg
*arg
);
235 static void focusmon(const Arg
*arg
);
236 static void tagmon(const Arg
*arg
);
237 #endif /* XINERAMA */
240 static char stext
[256];
242 static int sx
, sy
, sw
, sh
; /* X display screen geometry x, y, width, height */
243 static int bh
, blw
= 0; /* bar geometry */
244 static int (*xerrorxlib
)(Display
*, XErrorEvent
*);
245 static unsigned int numlockmask
= 0;
246 static void (*handler
[LASTEvent
]) (XEvent
*) = {
247 [ButtonPress
] = buttonpress
,
248 [ConfigureRequest
] = configurerequest
,
249 [ConfigureNotify
] = configurenotify
,
250 [DestroyNotify
] = destroynotify
,
251 [EnterNotify
] = enternotify
,
254 [KeyPress
] = keypress
,
255 [MappingNotify
] = mappingnotify
,
256 [MapRequest
] = maprequest
,
257 [PropertyNotify
] = propertynotify
,
258 [UnmapNotify
] = unmapnotify
260 static Atom wmatom
[WMLast
], netatom
[NetLast
];
262 static Bool running
= True
;
263 static Cursor cursor
[CurLast
];
266 static Layout
*lt
[] = { NULL
, NULL
};
267 static Monitor
*mons
= NULL
, *selmon
= NULL
;
269 /* configuration, allows nested code to access above variables */
272 /* compile-time check if all tags fit into an unsigned int bit array. */
273 struct NumTags
{ char limitexceeded
[sizeof(unsigned int) * 8 < LENGTH(tags
) ? -1 : 1]; };
275 /* function implementations */
277 applyrules(Client
*c
) {
280 XClassHint ch
= { 0 };
283 c
->isfloating
= c
->tags
= 0;
284 if(XGetClassHint(dpy
, c
->win
, &ch
)) {
285 for(i
= 0; i
< LENGTH(rules
); i
++) {
287 if((!r
->title
|| strstr(c
->name
, r
->title
))
288 && (!r
->class || (ch
.res_class
&& strstr(ch
.res_class
, r
->class)))
289 && (!r
->instance
|| (ch
.res_name
&& strstr(ch
.res_name
, r
->instance
)))) {
290 c
->isfloating
= r
->isfloating
;
299 c
->tags
= c
->tags
& TAGMASK
? c
->tags
& TAGMASK
: c
->mon
->tagset
[c
->mon
->seltags
];
303 applysizehints(Client
*c
, int *x
, int *y
, int *w
, int *h
) {
306 /* set minimum possible */
314 if(*x
+ *w
+ 2 * c
->bw
< sx
)
316 if(*y
+ *h
+ 2 * c
->bw
< sy
)
323 if(resizehints
|| c
->isfloating
) {
324 /* see last two sentences in ICCCM 4.1.2.3 */
325 baseismin
= c
->basew
== c
->minw
&& c
->baseh
== c
->minh
;
327 if(!baseismin
) { /* temporarily remove base dimensions */
332 /* adjust for aspect limits */
333 if(c
->mina
> 0 && c
->maxa
> 0) {
334 if(c
->maxa
< (float)*w
/ *h
)
336 else if(c
->mina
< (float)*h
/ *w
)
340 if(baseismin
) { /* increment calculation requires this */
345 /* adjust for increment value */
351 /* restore base dimensions */
355 *w
= MAX(*w
, c
->minw
);
356 *h
= MAX(*h
, c
->minh
);
359 *w
= MIN(*w
, c
->maxw
);
362 *h
= MIN(*h
, c
->maxh
);
364 return *x
!= c
->x
|| *y
!= c
->y
|| *w
!= c
->w
|| *h
!= c
->h
;
371 /* optimise two loops into one, check focus(NULL) */
372 for(m
= mons
; m
; m
= m
->next
)
375 for(m
= mons
; m
; m
= m
->next
) {
376 if(lt
[m
->sellt
]->arrange
)
377 lt
[m
->sellt
]->arrange(m
);
384 c
->next
= c
->mon
->clients
;
389 attachstack(Client
*c
) {
390 c
->snext
= c
->mon
->stack
;
395 buttonpress(XEvent
*e
) {
396 unsigned int i
, x
, click
;
400 XButtonPressedEvent
*ev
= &e
->xbutton
;
403 /* focus monitor if necessary */
404 if((m
= wintomon(ev
->window
)) && m
!= selmon
) {
405 unfocus(selmon
->sel
);
409 if(ev
->window
== selmon
->barwin
&& ev
->x
>= selmon
->btx
) {
414 while(ev
->x
>= x
&& ++i
< LENGTH(tags
));
415 if(i
< LENGTH(tags
)) {
419 else if(ev
->x
< x
+ blw
)
421 else if(ev
->x
> selmon
->wx
+ selmon
->ww
- TEXTW(stext
))
422 click
= ClkStatusText
;
426 else if((c
= wintoclient(ev
->window
))) {
428 click
= ClkClientWin
;
431 for(i
= 0; i
< LENGTH(buttons
); i
++)
432 if(click
== buttons
[i
].click
&& buttons
[i
].func
&& buttons
[i
].button
== ev
->button
433 && CLEANMASK(buttons
[i
].mask
) == CLEANMASK(ev
->state
))
434 buttons
[i
].func(click
== ClkTagBar
&& buttons
[i
].arg
.i
== 0 ? &arg
: &buttons
[i
].arg
);
440 xerrorxlib
= XSetErrorHandler(xerrorstart
);
442 /* this causes an error if some other window manager is running */
443 XSelectInput(dpy
, DefaultRootWindow(dpy
), SubstructureRedirectMask
);
446 die("dwm: another window manager is already running\n");
447 XSetErrorHandler(xerror
);
454 Layout foo
= { "", NULL
};
458 lt
[selmon
->sellt
] = &foo
;
459 for(m
= mons
; m
; m
= m
->next
)
463 XFreeFontSet(dpy
, dc
.font
.set
);
465 XFreeFont(dpy
, dc
.font
.xfont
);
466 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
467 XFreePixmap(dpy
, dc
.drawable
);
469 XFreeCursor(dpy
, cursor
[CurNormal
]);
470 XFreeCursor(dpy
, cursor
[CurResize
]);
471 XFreeCursor(dpy
, cursor
[CurMove
]);
474 XSetInputFocus(dpy
, PointerRoot
, RevertToPointerRoot
, CurrentTime
);
483 XUnmapWindow(dpy
, mons
->barwin
);
484 XDestroyWindow(dpy
, mons
->barwin
);
491 clearurgent(Client
*c
) {
495 if(!(wmh
= XGetWMHints(dpy
, c
->win
)))
497 wmh
->flags
&= ~XUrgencyHint
;
498 XSetWMHints(dpy
, c
->win
, wmh
);
503 configure(Client
*c
) {
506 ce
.type
= ConfigureNotify
;
514 ce
.border_width
= c
->bw
;
516 ce
.override_redirect
= False
;
517 XSendEvent(dpy
, c
->win
, False
, StructureNotifyMask
, (XEvent
*)&ce
);
521 configurenotify(XEvent
*e
) {
523 XConfigureEvent
*ev
= &e
->xconfigure
;
525 if(ev
->window
== root
&& (ev
->width
!= sw
|| ev
->height
!= sh
)) {
530 XFreePixmap(dpy
, dc
.drawable
);
531 dc
.drawable
= XCreatePixmap(dpy
, root
, sw
, bh
, DefaultDepth(dpy
, screen
));
533 for(m
= mons
; m
; m
= m
->next
)
534 XMoveResizeWindow(dpy
, m
->barwin
, m
->wx
, m
->by
, m
->ww
, bh
);
540 configurerequest(XEvent
*e
) {
543 XConfigureRequestEvent
*ev
= &e
->xconfigurerequest
;
546 if((c
= wintoclient(ev
->window
))) {
547 if(ev
->value_mask
& CWBorderWidth
)
548 c
->bw
= ev
->border_width
;
549 else if(c
->isfloating
|| !lt
[selmon
->sellt
]->arrange
) {
551 if(ev
->value_mask
& CWX
)
552 c
->x
= m
->mx
+ ev
->x
;
553 if(ev
->value_mask
& CWY
)
554 c
->y
= m
->my
+ ev
->y
;
555 if(ev
->value_mask
& CWWidth
)
557 if(ev
->value_mask
& CWHeight
)
559 if((c
->x
- m
->mx
+ c
->w
) > m
->mw
&& c
->isfloating
)
560 c
->x
= m
->mx
+ (m
->mw
/ 2 - c
->w
/ 2); /* center in x direction */
561 if((c
->y
- m
->my
+ c
->h
) > m
->mh
&& c
->isfloating
)
562 c
->y
= m
->my
+ (m
->mh
/ 2 - c
->h
/ 2); /* center in y direction */
563 if((ev
->value_mask
& (CWX
|CWY
)) && !(ev
->value_mask
& (CWWidth
|CWHeight
)))
566 XMoveResizeWindow(dpy
, c
->win
, c
->x
, c
->y
, c
->w
, c
->h
);
574 wc
.width
= ev
->width
;
575 wc
.height
= ev
->height
;
576 wc
.border_width
= ev
->border_width
;
577 wc
.sibling
= ev
->above
;
578 wc
.stack_mode
= ev
->detail
;
579 XConfigureWindow(dpy
, ev
->window
, ev
->value_mask
, &wc
);
585 destroynotify(XEvent
*e
) {
587 XDestroyWindowEvent
*ev
= &e
->xdestroywindow
;
589 if((c
= wintoclient(ev
->window
)))
597 for(tc
= &c
->mon
->clients
; *tc
&& *tc
!= c
; tc
= &(*tc
)->next
);
602 detachstack(Client
*c
) {
605 for(tc
= &c
->mon
->stack
; *tc
&& *tc
!= c
; tc
= &(*tc
)->snext
);
608 if(c
== c
->mon
->sel
) {
609 for(t
= c
->mon
->stack
; t
&& !ISVISIBLE(t
); t
= t
->snext
);
615 die(const char *errstr
, ...) {
618 va_start(ap
, errstr
);
619 vfprintf(stderr
, errstr
, ap
);
625 drawbar(Monitor
*m
) {
627 unsigned int i
, occ
= 0, urg
= 0;
631 for(c
= m
->clients
; c
; c
= c
->next
) {
639 if(mons
->next
) { /* more than a single monitor */
641 buf
[0] = m
->screen_number
+ '0';
644 drawtext(buf
, selmon
== m
? dc
.sel
: dc
.norm
, True
);
647 #endif /* XINERAMA */
649 for(i
= 0; i
< LENGTH(tags
); i
++) {
650 dc
.w
= TEXTW(tags
[i
]);
651 col
= m
->tagset
[m
->seltags
] & 1 << i
? dc
.sel
: dc
.norm
;
652 drawtext(tags
[i
], col
, urg
& 1 << i
);
653 drawsquare(m
== selmon
&& selmon
->sel
&& selmon
->sel
->tags
& 1 << i
,
654 occ
& 1 << i
, urg
& 1 << i
, col
);
659 drawtext(lt
[m
->sellt
]->symbol
, dc
.norm
, False
);
664 if(m
== selmon
) { /* status is only drawn on selected monitor */
671 drawtext(stext
, dc
.norm
, False
);
676 if((dc
.w
= dc
.x
- x
) > bh
) {
679 col
= m
== selmon
? dc
.sel
: dc
.norm
;
680 drawtext(m
->sel
->name
, col
, False
);
681 drawsquare(m
->sel
->isfixed
, m
->sel
->isfloating
, False
, col
);
684 drawtext(NULL
, dc
.norm
, False
);
686 XCopyArea(dpy
, dc
.drawable
, m
->barwin
, dc
.gc
, 0, 0, m
->ww
, bh
, 0, 0);
694 for(m
= mons
; m
; m
= m
->next
)
699 drawsquare(Bool filled
, Bool empty
, Bool invert
, unsigned long col
[ColLast
]) {
702 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
704 gcv
.foreground
= col
[invert
? ColBG
: ColFG
];
705 XChangeGC(dpy
, dc
.gc
, GCForeground
, &gcv
);
706 x
= (dc
.font
.ascent
+ dc
.font
.descent
+ 2) / 4;
710 r
.width
= r
.height
= x
+ 1;
711 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
714 r
.width
= r
.height
= x
;
715 XDrawRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
720 drawtext(const char *text
, unsigned long col
[ColLast
], Bool invert
) {
722 int i
, x
, y
, h
, len
, olen
;
723 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
725 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColFG
: ColBG
]);
726 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
730 h
= dc
.font
.ascent
+ dc
.font
.descent
;
731 y
= dc
.y
+ (dc
.h
/ 2) - (h
/ 2) + dc
.font
.ascent
;
733 /* shorten text if necessary */
734 for(len
= MIN(olen
, sizeof buf
); len
&& textnw(text
, len
) > dc
.w
- h
; len
--);
737 memcpy(buf
, text
, len
);
739 for(i
= len
; i
&& i
> len
- 3; buf
[--i
] = '.');
740 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColBG
: ColFG
]);
742 XmbDrawString(dpy
, dc
.drawable
, dc
.font
.set
, dc
.gc
, x
, y
, buf
, len
);
744 XDrawString(dpy
, dc
.drawable
, dc
.gc
, x
, y
, buf
, len
);
748 enternotify(XEvent
*e
) {
751 XCrossingEvent
*ev
= &e
->xcrossing
;
753 if((ev
->mode
!= NotifyNormal
|| ev
->detail
== NotifyInferior
) && ev
->window
!= root
)
755 if((m
= wintomon(ev
->window
)) && m
!= selmon
) {
756 unfocus(selmon
->sel
);
759 if((c
= wintoclient(ev
->window
)))
768 XExposeEvent
*ev
= &e
->xexpose
;
770 if(ev
->count
== 0 && (m
= wintomon(ev
->window
)))
776 if(!c
|| !ISVISIBLE(c
))
777 for(c
= selmon
->stack
; c
&& !ISVISIBLE(c
); c
= c
->snext
);
779 unfocus(selmon
->sel
);
787 grabbuttons(c
, True
);
788 XSetWindowBorder(dpy
, c
->win
, dc
.sel
[ColBorder
]);
789 XSetInputFocus(dpy
, c
->win
, RevertToPointerRoot
, CurrentTime
);
792 XSetInputFocus(dpy
, root
, RevertToPointerRoot
, CurrentTime
);
798 focusin(XEvent
*e
) { /* there are some broken focus acquiring clients */
799 XFocusChangeEvent
*ev
= &e
->xfocus
;
801 if(selmon
->sel
&& ev
->window
!= selmon
->sel
->win
)
802 XSetInputFocus(dpy
, selmon
->sel
->win
, RevertToPointerRoot
, CurrentTime
);
807 focusmon(const Arg
*arg
) {
810 if(!(m
= idxtomon(arg
->ui
)) || m
== selmon
)
812 unfocus(selmon
->sel
);
816 #endif /* XINERAMA */
819 focusstack(const Arg
*arg
) {
820 Client
*c
= NULL
, *i
;
825 for(c
= selmon
->sel
->next
; c
&& !ISVISIBLE(c
); c
= c
->next
);
827 for(c
= selmon
->clients
; c
&& !ISVISIBLE(c
); c
= c
->next
);
830 for(i
= selmon
->clients
; i
!= selmon
->sel
; i
= i
->next
)
834 for(; i
; i
= i
->next
)
845 getcolor(const char *colstr
) {
846 Colormap cmap
= DefaultColormap(dpy
, screen
);
849 if(!XAllocNamedColor(dpy
, cmap
, colstr
, &color
, &color
))
850 die("error, cannot allocate color '%s'\n", colstr
);
855 getrootpointer(int *x
, int *y
) {
859 return XQueryPointer(dpy
, root
, &dummy
, &dummy
, x
, y
, &di
, &di
, &dui
);
866 unsigned char *p
= NULL
;
867 unsigned long n
, extra
;
870 status
= XGetWindowProperty(dpy
, w
, wmatom
[WMState
], 0L, 2L, False
, wmatom
[WMState
],
871 &real
, &format
, &n
, &extra
, (unsigned char **)&p
);
872 if(status
!= Success
)
881 gettextprop(Window w
, Atom atom
, char *text
, unsigned int size
) {
886 if(!text
|| size
== 0)
889 XGetTextProperty(dpy
, w
, &name
, atom
);
892 if(name
.encoding
== XA_STRING
)
893 strncpy(text
, (char *)name
.value
, size
- 1);
895 if(XmbTextPropertyToTextList(dpy
, &name
, &list
, &n
) >= Success
897 strncpy(text
, *list
, size
- 1);
898 XFreeStringList(list
);
901 text
[size
- 1] = '\0';
907 grabbuttons(Client
*c
, Bool focused
) {
911 unsigned int modifiers
[] = { 0, LockMask
, numlockmask
, numlockmask
|LockMask
};
912 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
914 for(i
= 0; i
< LENGTH(buttons
); i
++)
915 if(buttons
[i
].click
== ClkClientWin
)
916 for(j
= 0; j
< LENGTH(modifiers
); j
++)
917 XGrabButton(dpy
, buttons
[i
].button
,
918 buttons
[i
].mask
| modifiers
[j
],
919 c
->win
, False
, BUTTONMASK
,
920 GrabModeAsync
, GrabModeSync
, None
, None
);
922 XGrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
, False
,
923 BUTTONMASK
, GrabModeAsync
, GrabModeSync
, None
, None
);
932 unsigned int modifiers
[] = { 0, LockMask
, numlockmask
, numlockmask
|LockMask
};
935 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
936 for(i
= 0; i
< LENGTH(keys
); i
++) {
937 if((code
= XKeysymToKeycode(dpy
, keys
[i
].keysym
)))
938 for(j
= 0; j
< LENGTH(modifiers
); j
++)
939 XGrabKey(dpy
, code
, keys
[i
].mod
| modifiers
[j
], root
,
940 True
, GrabModeAsync
, GrabModeAsync
);
946 idxtomon(unsigned int n
) {
950 for(m
= mons
, i
= 0; m
&& i
!= n
; m
= m
->next
, i
++);
955 initfont(const char *fontstr
) {
956 char *def
, **missing
;
960 dc
.font
.set
= XCreateFontSet(dpy
, fontstr
, &missing
, &n
, &def
);
963 fprintf(stderr
, "dwm: missing fontset: %s\n", missing
[n
]);
964 XFreeStringList(missing
);
967 XFontSetExtents
*font_extents
;
968 XFontStruct
**xfonts
;
970 dc
.font
.ascent
= dc
.font
.descent
= 0;
971 font_extents
= XExtentsOfFontSet(dc
.font
.set
);
972 n
= XFontsOfFontSet(dc
.font
.set
, &xfonts
, &font_names
);
973 for(i
= 0, dc
.font
.ascent
= 0, dc
.font
.descent
= 0; i
< n
; i
++) {
974 dc
.font
.ascent
= MAX(dc
.font
.ascent
, (*xfonts
)->ascent
);
975 dc
.font
.descent
= MAX(dc
.font
.descent
,(*xfonts
)->descent
);
980 if(!(dc
.font
.xfont
= XLoadQueryFont(dpy
, fontstr
))
981 && !(dc
.font
.xfont
= XLoadQueryFont(dpy
, "fixed")))
982 die("error, cannot load font: '%s'\n", fontstr
);
983 dc
.font
.ascent
= dc
.font
.xfont
->ascent
;
984 dc
.font
.descent
= dc
.font
.xfont
->descent
;
986 dc
.font
.height
= dc
.font
.ascent
+ dc
.font
.descent
;
990 isprotodel(Client
*c
) {
995 if(XGetWMProtocols(dpy
, c
->win
, &protocols
, &n
)) {
996 for(i
= 0; !ret
&& i
< n
; i
++)
997 if(protocols
[i
] == wmatom
[WMDelete
])
1005 keypress(XEvent
*e
) {
1011 keysym
= XKeycodeToKeysym(dpy
, (KeyCode
)ev
->keycode
, 0);
1012 for(i
= 0; i
< LENGTH(keys
); i
++)
1013 if(keysym
== keys
[i
].keysym
1014 && CLEANMASK(keys
[i
].mod
) == CLEANMASK(ev
->state
)
1016 keys
[i
].func(&(keys
[i
].arg
));
1020 killclient(const Arg
*arg
) {
1025 if(isprotodel(selmon
->sel
)) {
1026 ev
.type
= ClientMessage
;
1027 ev
.xclient
.window
= selmon
->sel
->win
;
1028 ev
.xclient
.message_type
= wmatom
[WMProtocols
];
1029 ev
.xclient
.format
= 32;
1030 ev
.xclient
.data
.l
[0] = wmatom
[WMDelete
];
1031 ev
.xclient
.data
.l
[1] = CurrentTime
;
1032 XSendEvent(dpy
, selmon
->sel
->win
, False
, NoEventMask
, &ev
);
1035 XKillClient(dpy
, selmon
->sel
->win
);
1039 manage(Window w
, XWindowAttributes
*wa
) {
1041 Client
*c
, *t
= NULL
;
1042 Window trans
= None
;
1045 if(!(c
= malloc(sizeof(Client
))))
1046 die("fatal: could not malloc() %u bytes\n", sizeof(Client
));
1050 if(XGetTransientForHint(dpy
, w
, &trans
))
1051 t
= wintoclient(trans
);
1062 c
->x
= wa
->x
+ c
->mon
->wx
;
1063 c
->y
= wa
->y
+ c
->mon
->wy
;
1066 c
->oldbw
= wa
->border_width
;
1067 if(c
->w
== c
->mon
->mw
&& c
->h
== c
->mon
->mh
) {
1073 if(c
->x
+ WIDTH(c
) > c
->mon
->mx
+ c
->mon
->mw
)
1074 c
->x
= c
->mon
->mx
+ c
->mon
->mw
- WIDTH(c
);
1075 if(c
->y
+ HEIGHT(c
) > c
->mon
->my
+ c
->mon
->mh
)
1076 c
->y
= c
->mon
->my
+ c
->mon
->mh
- HEIGHT(c
);
1077 c
->x
= MAX(c
->x
, c
->mon
->mx
);
1078 /* only fix client y-offset, if the client center might cover the bar */
1079 c
->y
= MAX(c
->y
, ((c
->mon
->by
== 0) && (c
->x
+ (c
->w
/ 2) >= c
->mon
->wx
)
1080 && (c
->x
+ (c
->w
/ 2) < c
->mon
->wx
+ c
->mon
->ww
)) ? bh
: c
->mon
->my
);
1084 wc
.border_width
= c
->bw
;
1085 XConfigureWindow(dpy
, w
, CWBorderWidth
, &wc
);
1086 XSetWindowBorder(dpy
, w
, dc
.norm
[ColBorder
]);
1087 configure(c
); /* propagates border_width, if size doesn't change */
1089 XSelectInput(dpy
, w
, EnterWindowMask
|FocusChangeMask
|PropertyChangeMask
|StructureNotifyMask
);
1090 grabbuttons(c
, False
);
1093 c
->isfloating
= trans
!= None
|| c
->isfixed
;
1095 XRaiseWindow(dpy
, c
->win
);
1098 XMoveResizeWindow(dpy
, c
->win
, c
->x
+ 2 * sw
, c
->y
, c
->w
, c
->h
); /* some windows require this */
1099 XMapWindow(dpy
, c
->win
);
1100 setclientstate(c
, NormalState
);
1105 mappingnotify(XEvent
*e
) {
1106 XMappingEvent
*ev
= &e
->xmapping
;
1108 XRefreshKeyboardMapping(ev
);
1109 if(ev
->request
== MappingKeyboard
)
1114 maprequest(XEvent
*e
) {
1115 static XWindowAttributes wa
;
1116 XMapRequestEvent
*ev
= &e
->xmaprequest
;
1118 if(!XGetWindowAttributes(dpy
, ev
->window
, &wa
))
1120 if(wa
.override_redirect
)
1122 if(!wintoclient(ev
->window
))
1123 manage(ev
->window
, &wa
);
1127 monocle(Monitor
*m
) {
1130 for(c
= nexttiled(m
->clients
); c
; c
= nexttiled(c
->next
))
1131 resize(c
, m
->wx
, m
->wy
, m
->ww
- 2 * c
->bw
, m
->wh
- 2 * c
->bw
);
1135 movemouse(const Arg
*arg
) {
1136 int x
, y
, ocx
, ocy
, nx
, ny
;
1141 if(!(c
= selmon
->sel
))
1146 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1147 None
, cursor
[CurMove
], CurrentTime
) != GrabSuccess
)
1149 if(!getrootpointer(&x
, &y
))
1152 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1154 case ConfigureRequest
:
1157 handler
[ev
.type
](&ev
);
1160 nx
= ocx
+ (ev
.xmotion
.x
- x
);
1161 ny
= ocy
+ (ev
.xmotion
.y
- y
);
1162 if(snap
&& nx
>= selmon
->wx
&& nx
<= selmon
->wx
+ selmon
->ww
1163 && ny
>= selmon
->wy
&& ny
<= selmon
->wy
+ selmon
->wh
) {
1164 if(abs(selmon
->wx
- nx
) < snap
)
1166 else if(abs((selmon
->wx
+ selmon
->ww
) - (nx
+ WIDTH(c
))) < snap
)
1167 nx
= selmon
->wx
+ selmon
->ww
- WIDTH(c
);
1168 if(abs(selmon
->wy
- ny
) < snap
)
1170 else if(abs((selmon
->wy
+ selmon
->wh
) - (ny
+ HEIGHT(c
))) < snap
)
1171 ny
= selmon
->wy
+ selmon
->wh
- HEIGHT(c
);
1172 if(!c
->isfloating
&& lt
[selmon
->sellt
]->arrange
1173 && (abs(nx
- c
->x
) > snap
|| abs(ny
- c
->y
) > snap
))
1174 togglefloating(NULL
);
1176 if(!lt
[selmon
->sellt
]->arrange
|| c
->isfloating
)
1177 resize(c
, nx
, ny
, c
->w
, c
->h
);
1181 while(ev
.type
!= ButtonRelease
);
1182 XUngrabPointer(dpy
, CurrentTime
);
1183 if((m
= pointertomon(c
->x
+ c
->w
/ 2, c
->y
+ c
->h
/ 2)) != selmon
) {
1191 nexttiled(Client
*c
) {
1192 for(; c
&& (c
->isfloating
|| !ISVISIBLE(c
)); c
= c
->next
);
1197 pointertomon(int x
, int y
) {
1200 for(m
= mons
; m
; m
= m
->next
)
1201 if(INRECT(x
, y
, m
->wx
, m
->wy
, m
->ww
, m
->wh
))
1207 propertynotify(XEvent
*e
) {
1210 XPropertyEvent
*ev
= &e
->xproperty
;
1212 if((ev
->window
== root
) && (ev
->atom
== XA_WM_NAME
))
1214 else if(ev
->state
== PropertyDelete
)
1215 return; /* ignore */
1216 else if((c
= wintoclient(ev
->window
))) {
1219 case XA_WM_TRANSIENT_FOR
:
1220 XGetTransientForHint(dpy
, c
->win
, &trans
);
1221 if(!c
->isfloating
&& (c
->isfloating
= (wintoclient(trans
) != NULL
)))
1224 case XA_WM_NORMAL_HINTS
:
1232 if(ev
->atom
== XA_WM_NAME
|| ev
->atom
== netatom
[NetWMName
]) {
1234 if(c
== selmon
->sel
)
1241 quit(const Arg
*arg
) {
1246 resize(Client
*c
, int x
, int y
, int w
, int h
) {
1249 if(applysizehints(c
, &x
, &y
, &w
, &h
)) {
1252 c
->w
= wc
.width
= w
;
1253 c
->h
= wc
.height
= h
;
1254 wc
.border_width
= c
->bw
;
1255 XConfigureWindow(dpy
, c
->win
, CWX
|CWY
|CWWidth
|CWHeight
|CWBorderWidth
, &wc
);
1262 resizemouse(const Arg
*arg
) {
1269 if(!(c
= selmon
->sel
))
1274 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1275 None
, cursor
[CurResize
], CurrentTime
) != GrabSuccess
)
1277 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1279 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1281 case ConfigureRequest
:
1284 handler
[ev
.type
](&ev
);
1287 nw
= MAX(ev
.xmotion
.x
- ocx
- 2 * c
->bw
+ 1, 1);
1288 nh
= MAX(ev
.xmotion
.y
- ocy
- 2 * c
->bw
+ 1, 1);
1290 if(snap
&& nw
>= selmon
->wx
&& nw
<= selmon
->wx
+ selmon
->ww
1291 && nh
>= selmon
->wy
&& nh
<= selmon
->wy
+ selmon
->wh
) {
1292 if(!c
->isfloating
&& lt
[selmon
->sellt
]->arrange
1293 && (abs(nw
- c
->w
) > snap
|| abs(nh
- c
->h
) > snap
))
1294 togglefloating(NULL
);
1296 if(!lt
[selmon
->sellt
]->arrange
|| c
->isfloating
)
1297 resize(c
, c
->x
, c
->y
, nw
, nh
);
1301 while(ev
.type
!= ButtonRelease
);
1302 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1303 XUngrabPointer(dpy
, CurrentTime
);
1304 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1305 if((m
= pointertomon(c
->x
+ c
->w
/ 2, c
->y
+ c
->h
/ 2)) != selmon
) {
1313 restack(Monitor
*m
) {
1321 if(m
->sel
->isfloating
|| !lt
[m
->sellt
]->arrange
)
1322 XRaiseWindow(dpy
, m
->sel
->win
);
1323 if(lt
[m
->sellt
]->arrange
) {
1324 wc
.stack_mode
= Below
;
1325 wc
.sibling
= m
->barwin
;
1326 for(c
= m
->stack
; c
; c
= c
->snext
)
1327 if(!c
->isfloating
&& ISVISIBLE(c
)) {
1328 XConfigureWindow(dpy
, c
->win
, CWSibling
|CWStackMode
, &wc
);
1329 wc
.sibling
= c
->win
;
1333 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1340 /* main event loop */
1342 while(running
&& !XNextEvent(dpy
, &ev
)) {
1343 if(handler
[ev
.type
])
1344 (handler
[ev
.type
])(&ev
); /* call handler */
1350 unsigned int i
, num
;
1351 Window d1
, d2
, *wins
= NULL
;
1352 XWindowAttributes wa
;
1354 if(XQueryTree(dpy
, root
, &d1
, &d2
, &wins
, &num
)) {
1355 for(i
= 0; i
< num
; i
++) {
1356 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
)
1357 || wa
.override_redirect
|| XGetTransientForHint(dpy
, wins
[i
], &d1
))
1359 if(wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
)
1360 manage(wins
[i
], &wa
);
1362 for(i
= 0; i
< num
; i
++) { /* now the transients */
1363 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
))
1365 if(XGetTransientForHint(dpy
, wins
[i
], &d1
)
1366 && (wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
))
1367 manage(wins
[i
], &wa
);
1375 sendmon(Client
*c
, Monitor
*m
) {
1381 c
->tags
= m
->tagset
[m
->seltags
]; /* assign tags of target monitor */
1389 setclientstate(Client
*c
, long state
) {
1390 long data
[] = {state
, None
};
1392 XChangeProperty(dpy
, c
->win
, wmatom
[WMState
], wmatom
[WMState
], 32,
1393 PropModeReplace
, (unsigned char *)data
, 2);
1397 setlayout(const Arg
*arg
) {
1398 if(!arg
|| !arg
->v
|| arg
->v
!= lt
[selmon
->sellt
])
1401 lt
[selmon
->sellt
] = (Layout
*)arg
->v
;
1408 /* arg > 1.0 will set mfact absolutly */
1410 setmfact(const Arg
*arg
) {
1413 if(!arg
|| !lt
[selmon
->sellt
]->arrange
)
1415 f
= arg
->f
< 1.0 ? arg
->f
+ selmon
->mfact
: arg
->f
- 1.0;
1416 if(f
< 0.1 || f
> 0.9)
1426 XSetWindowAttributes wa
;
1429 screen
= DefaultScreen(dpy
);
1430 root
= RootWindow(dpy
, screen
);
1434 sw
= DisplayWidth(dpy
, screen
);
1435 sh
= DisplayHeight(dpy
, screen
);
1436 bh
= dc
.h
= dc
.font
.height
+ 2;
1437 lt
[0] = &layouts
[0];
1438 lt
[1] = &layouts
[1 % LENGTH(layouts
)];
1442 wmatom
[WMProtocols
] = XInternAtom(dpy
, "WM_PROTOCOLS", False
);
1443 wmatom
[WMDelete
] = XInternAtom(dpy
, "WM_DELETE_WINDOW", False
);
1444 wmatom
[WMState
] = XInternAtom(dpy
, "WM_STATE", False
);
1445 netatom
[NetSupported
] = XInternAtom(dpy
, "_NET_SUPPORTED", False
);
1446 netatom
[NetWMName
] = XInternAtom(dpy
, "_NET_WM_NAME", False
);
1449 cursor
[CurNormal
] = XCreateFontCursor(dpy
, XC_left_ptr
);
1450 cursor
[CurResize
] = XCreateFontCursor(dpy
, XC_sizing
);
1451 cursor
[CurMove
] = XCreateFontCursor(dpy
, XC_fleur
);
1453 /* init appearance */
1454 dc
.norm
[ColBorder
] = getcolor(normbordercolor
);
1455 dc
.norm
[ColBG
] = getcolor(normbgcolor
);
1456 dc
.norm
[ColFG
] = getcolor(normfgcolor
);
1457 dc
.sel
[ColBorder
] = getcolor(selbordercolor
);
1458 dc
.sel
[ColBG
] = getcolor(selbgcolor
);
1459 dc
.sel
[ColFG
] = getcolor(selfgcolor
);
1460 dc
.drawable
= XCreatePixmap(dpy
, root
, DisplayWidth(dpy
, screen
), bh
, DefaultDepth(dpy
, screen
));
1461 dc
.gc
= XCreateGC(dpy
, root
, 0, NULL
);
1462 XSetLineAttributes(dpy
, dc
.gc
, 1, LineSolid
, CapButt
, JoinMiter
);
1464 XSetFont(dpy
, dc
.gc
, dc
.font
.xfont
->fid
);
1467 for(blw
= i
= 0; LENGTH(layouts
) > 1 && i
< LENGTH(layouts
); i
++) {
1468 w
= TEXTW(layouts
[i
].symbol
);
1474 /* EWMH support per view */
1475 XChangeProperty(dpy
, root
, netatom
[NetSupported
], XA_ATOM
, 32,
1476 PropModeReplace
, (unsigned char *) netatom
, NetLast
);
1478 /* select for events */
1479 wa
.cursor
= cursor
[CurNormal
];
1480 wa
.event_mask
= SubstructureRedirectMask
|SubstructureNotifyMask
|ButtonPressMask
1481 |EnterWindowMask
|LeaveWindowMask
|StructureNotifyMask
1482 |PropertyChangeMask
;
1483 XChangeWindowAttributes(dpy
, root
, CWEventMask
|CWCursor
, &wa
);
1484 XSelectInput(dpy
, root
, wa
.event_mask
);
1490 showhide(Client
*c
) {
1493 if(ISVISIBLE(c
)) { /* show clients top down */
1494 XMoveWindow(dpy
, c
->win
, c
->x
, c
->y
);
1495 if(!lt
[c
->mon
->sellt
]->arrange
|| c
->isfloating
)
1496 resize(c
, c
->x
, c
->y
, c
->w
, c
->h
);
1499 else { /* hide clients bottom up */
1501 XMoveWindow(dpy
, c
->win
, c
->x
+ 2 * sw
, c
->y
);
1507 sigchld(int signal
) {
1508 while(0 < waitpid(-1, NULL
, WNOHANG
));
1512 spawn(const Arg
*arg
) {
1513 signal(SIGCHLD
, sigchld
);
1516 close(ConnectionNumber(dpy
));
1518 execvp(((char **)arg
->v
)[0], (char **)arg
->v
);
1519 fprintf(stderr
, "dwm: execvp %s", ((char **)arg
->v
)[0]);
1526 tag(const Arg
*arg
) {
1527 if(selmon
->sel
&& arg
->ui
& TAGMASK
) {
1528 selmon
->sel
->tags
= arg
->ui
& TAGMASK
;
1535 tagmon(const Arg
*arg
) {
1538 if(!selmon
->sel
|| !(m
= idxtomon(arg
->ui
)))
1540 sendmon(selmon
->sel
, m
);
1542 #endif /* XINERAMA */
1545 textnw(const char *text
, unsigned int len
) {
1549 XmbTextExtents(dc
.font
.set
, text
, len
, NULL
, &r
);
1552 return XTextWidth(dc
.font
.xfont
, text
, len
);
1561 for(n
= 0, c
= nexttiled(m
->clients
); c
; c
= nexttiled(c
->next
), n
++);
1566 c
= nexttiled(m
->clients
);
1567 mw
= m
->mfact
* m
->ww
;
1568 resize(c
, m
->wx
, m
->wy
, (n
== 1 ? m
->ww
: mw
) - 2 * c
->bw
, m
->wh
- 2 * c
->bw
);
1574 x
= (m
->wx
+ mw
> c
->x
+ c
->w
) ? c
->x
+ c
->w
+ 2 * c
->bw
: m
->wx
+ mw
;
1576 w
= (m
->wx
+ mw
> c
->x
+ c
->w
) ? m
->wx
+ m
->ww
- x
: m
->ww
- mw
;
1581 for(i
= 0, c
= nexttiled(c
->next
); c
; c
= nexttiled(c
->next
), i
++) {
1582 resize(c
, x
, y
, w
- 2 * c
->bw
, /* remainder */ ((i
+ 1 == n
)
1583 ? m
->wy
+ m
->wh
- y
- 2 * c
->bw
: h
- 2 * c
->bw
));
1585 y
= c
->y
+ HEIGHT(c
);
1590 togglebar(const Arg
*arg
) {
1591 selmon
->showbar
= !selmon
->showbar
;
1592 updatebarpos(selmon
);
1593 XMoveResizeWindow(dpy
, selmon
->barwin
, selmon
->wx
, selmon
->by
, selmon
->ww
, bh
);
1598 togglefloating(const Arg
*arg
) {
1601 selmon
->sel
->isfloating
= !selmon
->sel
->isfloating
|| selmon
->sel
->isfixed
;
1602 if(selmon
->sel
->isfloating
)
1603 resize(selmon
->sel
, selmon
->sel
->x
, selmon
->sel
->y
, selmon
->sel
->w
, selmon
->sel
->h
);
1608 toggletag(const Arg
*arg
) {
1614 mask
= selmon
->sel
->tags
^ (arg
->ui
& TAGMASK
);
1616 selmon
->sel
->tags
= mask
;
1622 toggleview(const Arg
*arg
) {
1623 unsigned int mask
= selmon
->tagset
[selmon
->seltags
] ^ (arg
->ui
& TAGMASK
);
1626 selmon
->tagset
[selmon
->seltags
] = mask
;
1632 unfocus(Client
*c
) {
1635 grabbuttons(c
, False
);
1636 XSetWindowBorder(dpy
, c
->win
, dc
.norm
[ColBorder
]);
1637 XSetInputFocus(dpy
, root
, RevertToPointerRoot
, CurrentTime
);
1641 unmanage(Client
*c
) {
1644 wc
.border_width
= c
->oldbw
;
1645 /* The server grab construct avoids race conditions. */
1647 XSetErrorHandler(xerrordummy
);
1648 XConfigureWindow(dpy
, c
->win
, CWBorderWidth
, &wc
); /* restore border */
1651 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
1652 setclientstate(c
, WithdrawnState
);
1655 XSetErrorHandler(xerror
);
1662 unmapnotify(XEvent
*e
) {
1664 XUnmapEvent
*ev
= &e
->xunmap
;
1666 if((c
= wintoclient(ev
->window
)))
1673 XSetWindowAttributes wa
;
1675 wa
.override_redirect
= True
;
1676 wa
.background_pixmap
= ParentRelative
;
1677 wa
.event_mask
= ButtonPressMask
|ExposureMask
;
1679 for(m
= mons
; m
; m
= m
->next
) {
1680 m
->barwin
= XCreateWindow(dpy
, root
, m
->wx
, m
->by
, m
->ww
, bh
, 0, DefaultDepth(dpy
, screen
),
1682 CopyFromParent
, DefaultVisual(dpy
, screen
),
1683 CWOverrideRedirect
|CWBackPixmap
|CWEventMask
, &wa
);
1684 XDefineCursor(dpy
, m
->barwin
, cursor
[CurNormal
]);
1685 XMapRaised(dpy
, m
->barwin
);
1690 updatebarpos(Monitor
*m
) {
1695 m
->by
= m
->topbar
? m
->wy
: m
->wy
+ m
->wh
;
1696 m
->wy
= m
->topbar
? m
->wy
+ bh
: m
->wy
;
1706 Monitor
*newmons
= NULL
, *m
, *tm
;
1709 XineramaScreenInfo
*info
= NULL
;
1711 if(XineramaIsActive(dpy
))
1712 info
= XineramaQueryScreens(dpy
, &n
);
1713 #endif /* XINERAMA */
1714 /* allocate monitor(s) for the new geometry setup */
1715 for(i
= 0; i
< n
; i
++) {
1716 m
= (Monitor
*)malloc(sizeof(Monitor
));
1721 /* initialise monitor(s) */
1723 if(XineramaIsActive(dpy
)) {
1724 for(i
= 0, m
= newmons
; m
; m
= m
->next
, i
++) {
1725 m
->screen_number
= info
[i
].screen_number
;
1726 m
->mx
= m
->wx
= info
[i
].x_org
;
1727 m
->my
= m
->wy
= info
[i
].y_org
;
1728 m
->mw
= m
->ww
= info
[i
].width
;
1729 m
->mh
= m
->wh
= info
[i
].height
;
1734 #endif /* XINERAMA */
1735 /* default monitor setup */
1737 m
->screen_number
= 0;
1744 /* bar geometry setup */
1745 for(m
= newmons
; m
; m
= m
->next
) {
1746 m
->sel
= m
->stack
= m
->clients
= NULL
;
1749 m
->tagset
[0] = m
->tagset
[1] = 1;
1751 m
->showbar
= SHOWBAR
;
1756 /* reassign left over clients of disappeared monitors */
1757 for(tm
= mons
; tm
; tm
= tm
->next
)
1758 while(tm
->clients
) {
1760 tm
->clients
= c
->next
;
1767 /* select focused monitor */
1770 selmon
= wintomon(root
);
1774 updatenumlockmask(void) {
1776 XModifierKeymap
*modmap
;
1779 modmap
= XGetModifierMapping(dpy
);
1780 for(i
= 0; i
< 8; i
++)
1781 for(j
= 0; j
< modmap
->max_keypermod
; j
++)
1782 if(modmap
->modifiermap
[i
* modmap
->max_keypermod
+ j
]
1783 == XKeysymToKeycode(dpy
, XK_Num_Lock
))
1784 numlockmask
= (1 << i
);
1785 XFreeModifiermap(modmap
);
1789 updatesizehints(Client
*c
) {
1793 if(!XGetWMNormalHints(dpy
, c
->win
, &size
, &msize
))
1794 /* size is uninitialized, ensure that size.flags aren't used */
1796 if(size
.flags
& PBaseSize
) {
1797 c
->basew
= size
.base_width
;
1798 c
->baseh
= size
.base_height
;
1800 else if(size
.flags
& PMinSize
) {
1801 c
->basew
= size
.min_width
;
1802 c
->baseh
= size
.min_height
;
1805 c
->basew
= c
->baseh
= 0;
1806 if(size
.flags
& PResizeInc
) {
1807 c
->incw
= size
.width_inc
;
1808 c
->inch
= size
.height_inc
;
1811 c
->incw
= c
->inch
= 0;
1812 if(size
.flags
& PMaxSize
) {
1813 c
->maxw
= size
.max_width
;
1814 c
->maxh
= size
.max_height
;
1817 c
->maxw
= c
->maxh
= 0;
1818 if(size
.flags
& PMinSize
) {
1819 c
->minw
= size
.min_width
;
1820 c
->minh
= size
.min_height
;
1822 else if(size
.flags
& PBaseSize
) {
1823 c
->minw
= size
.base_width
;
1824 c
->minh
= size
.base_height
;
1827 c
->minw
= c
->minh
= 0;
1828 if(size
.flags
& PAspect
) {
1829 c
->mina
= (float)size
.min_aspect
.y
/ (float)size
.min_aspect
.x
;
1830 c
->maxa
= (float)size
.max_aspect
.x
/ (float)size
.max_aspect
.y
;
1833 c
->maxa
= c
->mina
= 0.0;
1834 c
->isfixed
= (c
->maxw
&& c
->minw
&& c
->maxh
&& c
->minh
1835 && c
->maxw
== c
->minw
&& c
->maxh
== c
->minh
);
1839 updatetitle(Client
*c
) {
1840 if(!gettextprop(c
->win
, netatom
[NetWMName
], c
->name
, sizeof c
->name
))
1841 gettextprop(c
->win
, XA_WM_NAME
, c
->name
, sizeof c
->name
);
1845 updatestatus(void) {
1846 if(!gettextprop(root
, XA_WM_NAME
, stext
, sizeof(stext
)))
1847 strcpy(stext
, "dwm-"VERSION
);
1852 updatewmhints(Client
*c
) {
1855 if((wmh
= XGetWMHints(dpy
, c
->win
))) {
1856 if(c
== selmon
->sel
&& wmh
->flags
& XUrgencyHint
) {
1857 wmh
->flags
&= ~XUrgencyHint
;
1858 XSetWMHints(dpy
, c
->win
, wmh
);
1861 c
->isurgent
= (wmh
->flags
& XUrgencyHint
) ? True
: False
;
1868 view(const Arg
*arg
) {
1869 if((arg
->ui
& TAGMASK
) == selmon
->tagset
[selmon
->seltags
])
1871 selmon
->seltags
^= 1; /* toggle sel tagset */
1872 if(arg
->ui
& TAGMASK
)
1873 selmon
->tagset
[selmon
->seltags
] = arg
->ui
& TAGMASK
;
1878 wintoclient(Window w
) {
1882 for(m
= mons
; m
; m
= m
->next
)
1883 for(c
= m
->clients
; c
; c
= c
->next
)
1890 wintomon(Window w
) {
1895 if(w
== root
&& getrootpointer(&x
, &y
))
1896 return pointertomon(x
, y
);
1897 for(m
= mons
; m
; m
= m
->next
)
1900 if((c
= wintoclient(w
)))
1905 /* There's no way to check accesses to destroyed windows, thus those cases are
1906 * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
1907 * default error handler, which may call exit. */
1909 xerror(Display
*dpy
, XErrorEvent
*ee
) {
1910 if(ee
->error_code
== BadWindow
1911 || (ee
->request_code
== X_SetInputFocus
&& ee
->error_code
== BadMatch
)
1912 || (ee
->request_code
== X_PolyText8
&& ee
->error_code
== BadDrawable
)
1913 || (ee
->request_code
== X_PolyFillRectangle
&& ee
->error_code
== BadDrawable
)
1914 || (ee
->request_code
== X_PolySegment
&& ee
->error_code
== BadDrawable
)
1915 || (ee
->request_code
== X_ConfigureWindow
&& ee
->error_code
== BadMatch
)
1916 || (ee
->request_code
== X_GrabButton
&& ee
->error_code
== BadAccess
)
1917 || (ee
->request_code
== X_GrabKey
&& ee
->error_code
== BadAccess
)
1918 || (ee
->request_code
== X_CopyArea
&& ee
->error_code
== BadDrawable
))
1920 fprintf(stderr
, "dwm: fatal error: request code=%d, error code=%d\n",
1921 ee
->request_code
, ee
->error_code
);
1922 return xerrorxlib(dpy
, ee
); /* may call exit */
1926 xerrordummy(Display
*dpy
, XErrorEvent
*ee
) {
1930 /* Startup Error handler to check if another window manager
1931 * is already running. */
1933 xerrorstart(Display
*dpy
, XErrorEvent
*ee
) {
1939 zoom(const Arg
*arg
) {
1940 Client
*c
= selmon
->sel
;
1942 if(!lt
[selmon
->sellt
]->arrange
|| lt
[selmon
->sellt
]->arrange
== monocle
|| (selmon
->sel
&& selmon
->sel
->isfloating
))
1944 if(c
== nexttiled(selmon
->clients
))
1945 if(!c
|| !(c
= nexttiled(c
->next
)))
1954 main(int argc
, char *argv
[]) {
1955 if(argc
== 2 && !strcmp("-v", argv
[1]))
1956 die("dwm-"VERSION
", © 2006-2009 dwm engineers, see LICENSE for details\n");
1958 die("usage: dwm [-v]\n");
1960 if(!setlocale(LC_CTYPE
, "") || !XSupportsLocale())
1961 fputs("warning: no locale support\n", stderr
);
1963 if(!(dpy
= XOpenDisplay(NULL
)))
1964 die("dwm: cannot open display\n");