Xinqi Bao's Git
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 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
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) & (ShiftMask|ControlMask|Mod1Mask|Mod2Mask|Mod3Mask|Mod4Mask|Mod5Mask))
46 #define INTERSECT(x,y,w,h,m) (MAX(0, MIN((x)+(w),(m)->wx+(m)->ww) - MAX((x),(m)->wx)) \
47 * MAX(0, MIN((y)+(h),(m)->wy+(m)->wh) - MAX((y),(m)->wy)))
48 #define ISVISIBLE(C) ((C->tags & C->mon->tagset[C->mon->seltags]))
49 #define LENGTH(X) (sizeof X / sizeof X[0])
50 #define MAX(A, B) ((A) > (B) ? (A) : (B))
51 #define MIN(A, B) ((A) < (B) ? (A) : (B))
52 #define MOUSEMASK (BUTTONMASK|PointerMotionMask)
53 #define WIDTH(X) ((X)->w + 2 * (X)->bw)
54 #define HEIGHT(X) ((X)->h + 2 * (X)->bw)
55 #define TAGMASK ((1 << LENGTH(tags)) - 1)
56 #define TEXTW(X) (textnw(X, strlen(X)) + dc.font.height)
59 enum { CurNormal
, CurResize
, CurMove
, CurLast
}; /* cursor */
60 enum { ColBorder
, ColFG
, ColBG
, ColLast
}; /* color */
61 enum { NetSupported
, NetWMName
, NetWMState
,
62 NetWMFullscreen
, NetActiveWindow
, NetWMWindowType
,
63 NetWMWindowTypeDialog
, NetClientList
, NetLast
}; /* EWMH atoms */
64 enum { WMProtocols
, WMDelete
, WMState
, WMTakeFocus
, WMLast
}; /* default atoms */
65 enum { ClkTagBar
, ClkLtSymbol
, ClkStatusText
, ClkWinTitle
,
66 ClkClientWin
, ClkRootWin
, ClkLast
}; /* clicks */
79 void (*func
)(const Arg
*arg
);
83 typedef struct Monitor Monitor
;
84 typedef struct Client Client
;
89 int oldx
, oldy
, oldw
, oldh
;
90 int basew
, baseh
, incw
, inch
, maxw
, maxh
, minw
, minh
;
93 Bool isfixed
, isfloating
, isurgent
, neverfocus
, oldstate
, isfullscreen
;
102 unsigned long norm
[ColLast
];
103 unsigned long sel
[ColLast
];
113 } DC
; /* draw context */
118 void (*func
)(const Arg
*);
124 void (*arrange
)(Monitor
*);
132 int by
; /* bar geometry */
133 int mx
, my
, mw
, mh
; /* screen size */
134 int wx
, wy
, ww
, wh
; /* window area */
135 unsigned int seltags
;
137 unsigned int tagset
[2];
150 const char *instance
;
157 /* function declarations */
158 static void applyrules(Client
*c
);
159 static Bool
applysizehints(Client
*c
, int *x
, int *y
, int *w
, int *h
, Bool interact
);
160 static void arrange(Monitor
*m
);
161 static void arrangemon(Monitor
*m
);
162 static void attach(Client
*c
);
163 static void attachstack(Client
*c
);
164 static void buttonpress(XEvent
*e
);
165 static void checkotherwm(void);
166 static void cleanup(void);
167 static void cleanupmon(Monitor
*mon
);
168 static void clearurgent(Client
*c
);
169 static void clientmessage(XEvent
*e
);
170 static void configure(Client
*c
);
171 static void configurenotify(XEvent
*e
);
172 static void configurerequest(XEvent
*e
);
173 static Monitor
*createmon(void);
174 static void destroynotify(XEvent
*e
);
175 static void detach(Client
*c
);
176 static void detachstack(Client
*c
);
177 static void die(const char *errstr
, ...);
178 static Monitor
*dirtomon(int dir
);
179 static void drawbar(Monitor
*m
);
180 static void drawbars(void);
181 static void drawsquare(Bool filled
, Bool empty
, Bool invert
, unsigned long col
[ColLast
]);
182 static void drawtext(const char *text
, unsigned long col
[ColLast
], Bool invert
);
183 static void enternotify(XEvent
*e
);
184 static void expose(XEvent
*e
);
185 static void focus(Client
*c
);
186 static void focusin(XEvent
*e
);
187 static void focusmon(const Arg
*arg
);
188 static void focusstack(const Arg
*arg
);
189 static unsigned long getcolor(const char *colstr
);
190 static Bool
getrootptr(int *x
, int *y
);
191 static long getstate(Window w
);
192 static Bool
gettextprop(Window w
, Atom atom
, char *text
, unsigned int size
);
193 static void grabbuttons(Client
*c
, Bool focused
);
194 static void grabkeys(void);
195 static void incnmaster(const Arg
*arg
);
196 static void initfont(const char *fontstr
);
197 static void keypress(XEvent
*e
);
198 static void killclient(const Arg
*arg
);
199 static void manage(Window w
, XWindowAttributes
*wa
);
200 static void mappingnotify(XEvent
*e
);
201 static void maprequest(XEvent
*e
);
202 static void monocle(Monitor
*m
);
203 static void motionnotify(XEvent
*e
);
204 static void movemouse(const Arg
*arg
);
205 static Client
*nexttiled(Client
*c
);
206 static void pop(Client
*);
207 static void propertynotify(XEvent
*e
);
208 static void quit(const Arg
*arg
);
209 static Monitor
*recttomon(int x
, int y
, int w
, int h
);
210 static void resize(Client
*c
, int x
, int y
, int w
, int h
, Bool interact
);
211 static void resizeclient(Client
*c
, int x
, int y
, int w
, int h
);
212 static void resizemouse(const Arg
*arg
);
213 static void restack(Monitor
*m
);
214 static void run(void);
215 static void scan(void);
216 static Bool
sendevent(Client
*c
, Atom proto
);
217 static void sendmon(Client
*c
, Monitor
*m
);
218 static void setclientstate(Client
*c
, long state
);
219 static void setfocus(Client
*c
);
220 static void setfullscreen(Client
*c
, Bool fullscreen
);
221 static void setlayout(const Arg
*arg
);
222 static void setmfact(const Arg
*arg
);
223 static void setup(void);
224 static void showhide(Client
*c
);
225 static void sigchld(int unused
);
226 static void spawn(const Arg
*arg
);
227 static void tag(const Arg
*arg
);
228 static void tagmon(const Arg
*arg
);
229 static int textnw(const char *text
, unsigned int len
);
230 static void tile(Monitor
*);
231 static void togglebar(const Arg
*arg
);
232 static void togglefloating(const Arg
*arg
);
233 static void toggletag(const Arg
*arg
);
234 static void toggleview(const Arg
*arg
);
235 static void unfocus(Client
*c
, Bool setfocus
);
236 static void unmanage(Client
*c
, Bool destroyed
);
237 static void unmapnotify(XEvent
*e
);
238 static Bool
updategeom(void);
239 static void updatebarpos(Monitor
*m
);
240 static void updatebars(void);
241 static void updateclientlist(void);
242 static void updatenumlockmask(void);
243 static void updatesizehints(Client
*c
);
244 static void updatestatus(void);
245 static void updatewindowtype(Client
*c
);
246 static void updatetitle(Client
*c
);
247 static void updatewmhints(Client
*c
);
248 static void view(const Arg
*arg
);
249 static Client
*wintoclient(Window w
);
250 static Monitor
*wintomon(Window w
);
251 static int xerror(Display
*dpy
, XErrorEvent
*ee
);
252 static int xerrordummy(Display
*dpy
, XErrorEvent
*ee
);
253 static int xerrorstart(Display
*dpy
, XErrorEvent
*ee
);
254 static void zoom(const Arg
*arg
);
257 static const char broken
[] = "broken";
258 static char stext
[256];
260 static int sw
, sh
; /* X display screen geometry width, height */
261 static int bh
, blw
= 0; /* bar geometry */
262 static int (*xerrorxlib
)(Display
*, XErrorEvent
*);
263 static unsigned int numlockmask
= 0;
264 static void (*handler
[LASTEvent
]) (XEvent
*) = {
265 [ButtonPress
] = buttonpress
,
266 [ClientMessage
] = clientmessage
,
267 [ConfigureRequest
] = configurerequest
,
268 [ConfigureNotify
] = configurenotify
,
269 [DestroyNotify
] = destroynotify
,
270 [EnterNotify
] = enternotify
,
273 [KeyPress
] = keypress
,
274 [MappingNotify
] = mappingnotify
,
275 [MapRequest
] = maprequest
,
276 [MotionNotify
] = motionnotify
,
277 [PropertyNotify
] = propertynotify
,
278 [UnmapNotify
] = unmapnotify
280 static Atom wmatom
[WMLast
], netatom
[NetLast
];
281 static Bool running
= True
;
282 static Cursor cursor
[CurLast
];
285 static Monitor
*mons
= NULL
, *selmon
= NULL
;
288 /* configuration, allows nested code to access above variables */
291 /* compile-time check if all tags fit into an unsigned int bit array. */
292 struct NumTags
{ char limitexceeded
[LENGTH(tags
) > 31 ? -1 : 1]; };
294 /* function implementations */
296 applyrules(Client
*c
) {
297 const char *class, *instance
;
301 XClassHint ch
= { NULL
, NULL
};
304 c
->isfloating
= c
->tags
= 0;
305 XGetClassHint(dpy
, c
->win
, &ch
);
306 class = ch
.res_class
? ch
.res_class
: broken
;
307 instance
= ch
.res_name
? ch
.res_name
: broken
;
309 for(i
= 0; i
< LENGTH(rules
); i
++) {
311 if((!r
->title
|| strstr(c
->name
, r
->title
))
312 && (!r
->class || strstr(class, r
->class))
313 && (!r
->instance
|| strstr(instance
, r
->instance
)))
315 c
->isfloating
= r
->isfloating
;
317 for(m
= mons
; m
&& m
->num
!= r
->monitor
; m
= m
->next
);
326 c
->tags
= c
->tags
& TAGMASK
? c
->tags
& TAGMASK
: c
->mon
->tagset
[c
->mon
->seltags
];
330 applysizehints(Client
*c
, int *x
, int *y
, int *w
, int *h
, Bool interact
) {
334 /* set minimum possible */
342 if(*x
+ *w
+ 2 * c
->bw
< 0)
344 if(*y
+ *h
+ 2 * c
->bw
< 0)
348 if(*x
>= m
->wx
+ m
->ww
)
349 *x
= m
->wx
+ m
->ww
- WIDTH(c
);
350 if(*y
>= m
->wy
+ m
->wh
)
351 *y
= m
->wy
+ m
->wh
- HEIGHT(c
);
352 if(*x
+ *w
+ 2 * c
->bw
<= m
->wx
)
354 if(*y
+ *h
+ 2 * c
->bw
<= m
->wy
)
361 if(resizehints
|| c
->isfloating
|| !c
->mon
->lt
[c
->mon
->sellt
]->arrange
) {
362 /* see last two sentences in ICCCM 4.1.2.3 */
363 baseismin
= c
->basew
== c
->minw
&& c
->baseh
== c
->minh
;
364 if(!baseismin
) { /* temporarily remove base dimensions */
368 /* adjust for aspect limits */
369 if(c
->mina
> 0 && c
->maxa
> 0) {
370 if(c
->maxa
< (float)*w
/ *h
)
371 *w
= *h
* c
->maxa
+ 0.5;
372 else if(c
->mina
< (float)*h
/ *w
)
373 *h
= *w
* c
->mina
+ 0.5;
375 if(baseismin
) { /* increment calculation requires this */
379 /* adjust for increment value */
384 /* restore base dimensions */
385 *w
= MAX(*w
+ c
->basew
, c
->minw
);
386 *h
= MAX(*h
+ c
->baseh
, c
->minh
);
388 *w
= MIN(*w
, c
->maxw
);
390 *h
= MIN(*h
, c
->maxh
);
392 return *x
!= c
->x
|| *y
!= c
->y
|| *w
!= c
->w
|| *h
!= c
->h
;
396 arrange(Monitor
*m
) {
399 else for(m
= mons
; m
; m
= m
->next
)
404 } else for(m
= mons
; m
; m
= m
->next
)
409 arrangemon(Monitor
*m
) {
410 strncpy(m
->ltsymbol
, m
->lt
[m
->sellt
]->symbol
, sizeof m
->ltsymbol
);
411 if(m
->lt
[m
->sellt
]->arrange
)
412 m
->lt
[m
->sellt
]->arrange(m
);
417 c
->next
= c
->mon
->clients
;
422 attachstack(Client
*c
) {
423 c
->snext
= c
->mon
->stack
;
428 buttonpress(XEvent
*e
) {
429 unsigned int i
, x
, click
;
433 XButtonPressedEvent
*ev
= &e
->xbutton
;
436 /* focus monitor if necessary */
437 if((m
= wintomon(ev
->window
)) && m
!= selmon
) {
438 unfocus(selmon
->sel
, True
);
442 if(ev
->window
== selmon
->barwin
) {
446 while(ev
->x
>= x
&& ++i
< LENGTH(tags
));
447 if(i
< LENGTH(tags
)) {
451 else if(ev
->x
< x
+ blw
)
453 else if(ev
->x
> selmon
->ww
- TEXTW(stext
))
454 click
= ClkStatusText
;
458 else if((c
= wintoclient(ev
->window
))) {
460 click
= ClkClientWin
;
462 for(i
= 0; i
< LENGTH(buttons
); i
++)
463 if(click
== buttons
[i
].click
&& buttons
[i
].func
&& buttons
[i
].button
== ev
->button
464 && CLEANMASK(buttons
[i
].mask
) == CLEANMASK(ev
->state
))
465 buttons
[i
].func(click
== ClkTagBar
&& buttons
[i
].arg
.i
== 0 ? &arg
: &buttons
[i
].arg
);
470 xerrorxlib
= XSetErrorHandler(xerrorstart
);
471 /* this causes an error if some other window manager is running */
472 XSelectInput(dpy
, DefaultRootWindow(dpy
), SubstructureRedirectMask
);
474 XSetErrorHandler(xerror
);
481 Layout foo
= { "", NULL
};
485 selmon
->lt
[selmon
->sellt
] = &foo
;
486 for(m
= mons
; m
; m
= m
->next
)
488 unmanage(m
->stack
, False
);
490 XFreeFontSet(dpy
, dc
.font
.set
);
492 XFreeFont(dpy
, dc
.font
.xfont
);
493 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
494 XFreePixmap(dpy
, dc
.drawable
);
496 XFreeCursor(dpy
, cursor
[CurNormal
]);
497 XFreeCursor(dpy
, cursor
[CurResize
]);
498 XFreeCursor(dpy
, cursor
[CurMove
]);
502 XSetInputFocus(dpy
, PointerRoot
, RevertToPointerRoot
, CurrentTime
);
503 XDeleteProperty(dpy
, root
, netatom
[NetActiveWindow
]);
507 cleanupmon(Monitor
*mon
) {
513 for(m
= mons
; m
&& m
->next
!= mon
; m
= m
->next
);
516 XUnmapWindow(dpy
, mon
->barwin
);
517 XDestroyWindow(dpy
, mon
->barwin
);
522 clearurgent(Client
*c
) {
526 if(!(wmh
= XGetWMHints(dpy
, c
->win
)))
528 wmh
->flags
&= ~XUrgencyHint
;
529 XSetWMHints(dpy
, c
->win
, wmh
);
534 clientmessage(XEvent
*e
) {
535 XClientMessageEvent
*cme
= &e
->xclient
;
536 Client
*c
= wintoclient(cme
->window
);
540 if(cme
->message_type
== netatom
[NetWMState
]) {
541 if(cme
->data
.l
[1] == netatom
[NetWMFullscreen
] || cme
->data
.l
[2] == netatom
[NetWMFullscreen
])
542 setfullscreen(c
, (cme
->data
.l
[0] == 1 /* _NET_WM_STATE_ADD */
543 || (cme
->data
.l
[0] == 2 /* _NET_WM_STATE_TOGGLE */ && !c
->isfullscreen
)));
545 else if(cme
->message_type
== netatom
[NetActiveWindow
]) {
547 c
->mon
->seltags
^= 1;
548 c
->mon
->tagset
[c
->mon
->seltags
] = c
->tags
;
555 configure(Client
*c
) {
558 ce
.type
= ConfigureNotify
;
566 ce
.border_width
= c
->bw
;
568 ce
.override_redirect
= False
;
569 XSendEvent(dpy
, c
->win
, False
, StructureNotifyMask
, (XEvent
*)&ce
);
573 configurenotify(XEvent
*e
) {
575 XConfigureEvent
*ev
= &e
->xconfigure
;
578 if(ev
->window
== root
) {
579 dirty
= (sw
!= ev
->width
);
582 if(updategeom() || dirty
) {
584 XFreePixmap(dpy
, dc
.drawable
);
585 dc
.drawable
= XCreatePixmap(dpy
, root
, sw
, bh
, DefaultDepth(dpy
, screen
));
587 for(m
= mons
; m
; m
= m
->next
)
588 XMoveResizeWindow(dpy
, m
->barwin
, m
->wx
, m
->by
, m
->ww
, bh
);
596 configurerequest(XEvent
*e
) {
599 XConfigureRequestEvent
*ev
= &e
->xconfigurerequest
;
602 if((c
= wintoclient(ev
->window
))) {
603 if(ev
->value_mask
& CWBorderWidth
)
604 c
->bw
= ev
->border_width
;
605 else if(c
->isfloating
|| !selmon
->lt
[selmon
->sellt
]->arrange
) {
607 if(ev
->value_mask
& CWX
) {
609 c
->x
= m
->mx
+ ev
->x
;
611 if(ev
->value_mask
& CWY
) {
613 c
->y
= m
->my
+ ev
->y
;
615 if(ev
->value_mask
& CWWidth
) {
619 if(ev
->value_mask
& CWHeight
) {
623 if((c
->x
+ c
->w
) > m
->mx
+ m
->mw
&& c
->isfloating
)
624 c
->x
= m
->mx
+ (m
->mw
/ 2 - WIDTH(c
) / 2); /* center in x direction */
625 if((c
->y
+ c
->h
) > m
->my
+ m
->mh
&& c
->isfloating
)
626 c
->y
= m
->my
+ (m
->mh
/ 2 - HEIGHT(c
) / 2); /* center in y direction */
627 if((ev
->value_mask
& (CWX
|CWY
)) && !(ev
->value_mask
& (CWWidth
|CWHeight
)))
630 XMoveResizeWindow(dpy
, c
->win
, c
->x
, c
->y
, c
->w
, c
->h
);
638 wc
.width
= ev
->width
;
639 wc
.height
= ev
->height
;
640 wc
.border_width
= ev
->border_width
;
641 wc
.sibling
= ev
->above
;
642 wc
.stack_mode
= ev
->detail
;
643 XConfigureWindow(dpy
, ev
->window
, ev
->value_mask
, &wc
);
652 if(!(m
= (Monitor
*)calloc(1, sizeof(Monitor
))))
653 die("fatal: could not malloc() %u bytes\n", sizeof(Monitor
));
654 m
->tagset
[0] = m
->tagset
[1] = 1;
656 m
->nmaster
= nmaster
;
657 m
->showbar
= showbar
;
659 m
->lt
[0] = &layouts
[0];
660 m
->lt
[1] = &layouts
[1 % LENGTH(layouts
)];
661 strncpy(m
->ltsymbol
, layouts
[0].symbol
, sizeof m
->ltsymbol
);
666 destroynotify(XEvent
*e
) {
668 XDestroyWindowEvent
*ev
= &e
->xdestroywindow
;
670 if((c
= wintoclient(ev
->window
)))
678 for(tc
= &c
->mon
->clients
; *tc
&& *tc
!= c
; tc
= &(*tc
)->next
);
683 detachstack(Client
*c
) {
686 for(tc
= &c
->mon
->stack
; *tc
&& *tc
!= c
; tc
= &(*tc
)->snext
);
689 if(c
== c
->mon
->sel
) {
690 for(t
= c
->mon
->stack
; t
&& !ISVISIBLE(t
); t
= t
->snext
);
696 die(const char *errstr
, ...) {
699 va_start(ap
, errstr
);
700 vfprintf(stderr
, errstr
, ap
);
710 if(!(m
= selmon
->next
))
713 else if(selmon
== mons
)
714 for(m
= mons
; m
->next
; m
= m
->next
);
716 for(m
= mons
; m
->next
!= selmon
; m
= m
->next
);
721 drawbar(Monitor
*m
) {
723 unsigned int i
, occ
= 0, urg
= 0;
727 for(c
= m
->clients
; c
; c
= c
->next
) {
733 for(i
= 0; i
< LENGTH(tags
); i
++) {
734 dc
.w
= TEXTW(tags
[i
]);
735 col
= m
->tagset
[m
->seltags
] & 1 << i
? dc
.sel
: dc
.norm
;
736 drawtext(tags
[i
], col
, urg
& 1 << i
);
737 drawsquare(m
== selmon
&& selmon
->sel
&& selmon
->sel
->tags
& 1 << i
,
738 occ
& 1 << i
, urg
& 1 << i
, col
);
741 dc
.w
= blw
= TEXTW(m
->ltsymbol
);
742 drawtext(m
->ltsymbol
, dc
.norm
, False
);
745 if(m
== selmon
) { /* status is only drawn on selected monitor */
752 drawtext(stext
, dc
.norm
, False
);
756 if((dc
.w
= dc
.x
- x
) > bh
) {
759 col
= m
== selmon
? dc
.sel
: dc
.norm
;
760 drawtext(m
->sel
->name
, col
, False
);
761 drawsquare(m
->sel
->isfixed
, m
->sel
->isfloating
, False
, col
);
764 drawtext(NULL
, dc
.norm
, False
);
766 XCopyArea(dpy
, dc
.drawable
, m
->barwin
, dc
.gc
, 0, 0, m
->ww
, bh
, 0, 0);
774 for(m
= mons
; m
; m
= m
->next
)
779 drawsquare(Bool filled
, Bool empty
, Bool invert
, unsigned long col
[ColLast
]) {
782 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColBG
: ColFG
]);
783 x
= (dc
.font
.ascent
+ dc
.font
.descent
+ 2) / 4;
785 XFillRectangle(dpy
, dc
.drawable
, dc
.gc
, dc
.x
+1, dc
.y
+1, x
+1, x
+1);
787 XDrawRectangle(dpy
, dc
.drawable
, dc
.gc
, dc
.x
+1, dc
.y
+1, x
, x
);
791 drawtext(const char *text
, unsigned long col
[ColLast
], Bool invert
) {
793 int i
, x
, y
, h
, len
, olen
;
795 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColFG
: ColBG
]);
796 XFillRectangle(dpy
, dc
.drawable
, dc
.gc
, dc
.x
, dc
.y
, dc
.w
, dc
.h
);
800 h
= dc
.font
.ascent
+ dc
.font
.descent
;
801 y
= dc
.y
+ (dc
.h
/ 2) - (h
/ 2) + dc
.font
.ascent
;
803 /* shorten text if necessary */
804 for(len
= MIN(olen
, sizeof buf
); len
&& textnw(text
, len
) > dc
.w
- h
; len
--);
807 memcpy(buf
, text
, len
);
809 for(i
= len
; i
&& i
> len
- 3; buf
[--i
] = '.');
810 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColBG
: ColFG
]);
812 XmbDrawString(dpy
, dc
.drawable
, dc
.font
.set
, dc
.gc
, x
, y
, buf
, len
);
814 XDrawString(dpy
, dc
.drawable
, dc
.gc
, x
, y
, buf
, len
);
818 enternotify(XEvent
*e
) {
821 XCrossingEvent
*ev
= &e
->xcrossing
;
823 if((ev
->mode
!= NotifyNormal
|| ev
->detail
== NotifyInferior
) && ev
->window
!= root
)
825 c
= wintoclient(ev
->window
);
826 m
= c
? c
->mon
: wintomon(ev
->window
);
828 unfocus(selmon
->sel
, True
);
831 else if(!c
|| c
== selmon
->sel
)
839 XExposeEvent
*ev
= &e
->xexpose
;
841 if(ev
->count
== 0 && (m
= wintomon(ev
->window
)))
847 if(!c
|| !ISVISIBLE(c
))
848 for(c
= selmon
->stack
; c
&& !ISVISIBLE(c
); c
= c
->snext
);
849 /* was if(selmon->sel) */
850 if(selmon
->sel
&& selmon
->sel
!= c
)
851 unfocus(selmon
->sel
, False
);
859 grabbuttons(c
, True
);
860 XSetWindowBorder(dpy
, c
->win
, dc
.sel
[ColBorder
]);
864 XSetInputFocus(dpy
, root
, RevertToPointerRoot
, CurrentTime
);
865 XDeleteProperty(dpy
, root
, netatom
[NetActiveWindow
]);
872 focusin(XEvent
*e
) { /* there are some broken focus acquiring clients */
873 XFocusChangeEvent
*ev
= &e
->xfocus
;
875 if(selmon
->sel
&& ev
->window
!= selmon
->sel
->win
)
876 setfocus(selmon
->sel
);
880 focusmon(const Arg
*arg
) {
885 if((m
= dirtomon(arg
->i
)) == selmon
)
887 unfocus(selmon
->sel
, False
); /* s/True/False/ fixes input focus issues
888 in gedit and anjuta */
894 focusstack(const Arg
*arg
) {
895 Client
*c
= NULL
, *i
;
900 for(c
= selmon
->sel
->next
; c
&& !ISVISIBLE(c
); c
= c
->next
);
902 for(c
= selmon
->clients
; c
&& !ISVISIBLE(c
); c
= c
->next
);
905 for(i
= selmon
->clients
; i
!= selmon
->sel
; i
= i
->next
)
909 for(; i
; i
= i
->next
)
920 getatomprop(Client
*c
, Atom prop
) {
923 unsigned char *p
= NULL
;
924 Atom da
, atom
= None
;
926 if(XGetWindowProperty(dpy
, c
->win
, prop
, 0L, sizeof atom
, False
, XA_ATOM
,
927 &da
, &di
, &dl
, &dl
, &p
) == Success
&& p
) {
935 getcolor(const char *colstr
) {
936 Colormap cmap
= DefaultColormap(dpy
, screen
);
939 if(!XAllocNamedColor(dpy
, cmap
, colstr
, &color
, &color
))
940 die("error, cannot allocate color '%s'\n", colstr
);
945 getrootptr(int *x
, int *y
) {
950 return XQueryPointer(dpy
, root
, &dummy
, &dummy
, x
, y
, &di
, &di
, &dui
);
957 unsigned char *p
= NULL
;
958 unsigned long n
, extra
;
961 if(XGetWindowProperty(dpy
, w
, wmatom
[WMState
], 0L, 2L, False
, wmatom
[WMState
],
962 &real
, &format
, &n
, &extra
, (unsigned char **)&p
) != Success
)
971 gettextprop(Window w
, Atom atom
, char *text
, unsigned int size
) {
976 if(!text
|| size
== 0)
979 XGetTextProperty(dpy
, w
, &name
, atom
);
982 if(name
.encoding
== XA_STRING
)
983 strncpy(text
, (char *)name
.value
, size
- 1);
985 if(XmbTextPropertyToTextList(dpy
, &name
, &list
, &n
) >= Success
&& n
> 0 && *list
) {
986 strncpy(text
, *list
, size
- 1);
987 XFreeStringList(list
);
990 text
[size
- 1] = '\0';
996 grabbuttons(Client
*c
, Bool focused
) {
1000 unsigned int modifiers
[] = { 0, LockMask
, numlockmask
, numlockmask
|LockMask
};
1001 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
1003 for(i
= 0; i
< LENGTH(buttons
); i
++)
1004 if(buttons
[i
].click
== ClkClientWin
)
1005 for(j
= 0; j
< LENGTH(modifiers
); j
++)
1006 XGrabButton(dpy
, buttons
[i
].button
,
1007 buttons
[i
].mask
| modifiers
[j
],
1008 c
->win
, False
, BUTTONMASK
,
1009 GrabModeAsync
, GrabModeSync
, None
, None
);
1012 XGrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
, False
,
1013 BUTTONMASK
, GrabModeAsync
, GrabModeSync
, None
, None
);
1019 updatenumlockmask();
1022 unsigned int modifiers
[] = { 0, LockMask
, numlockmask
, numlockmask
|LockMask
};
1025 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
1026 for(i
= 0; i
< LENGTH(keys
); i
++)
1027 if((code
= XKeysymToKeycode(dpy
, keys
[i
].keysym
)))
1028 for(j
= 0; j
< LENGTH(modifiers
); j
++)
1029 XGrabKey(dpy
, code
, keys
[i
].mod
| modifiers
[j
], root
,
1030 True
, GrabModeAsync
, GrabModeAsync
);
1035 incnmaster(const Arg
*arg
) {
1036 selmon
->nmaster
= MAX(selmon
->nmaster
+ arg
->i
, 0);
1041 initfont(const char *fontstr
) {
1042 char *def
, **missing
;
1045 dc
.font
.set
= XCreateFontSet(dpy
, fontstr
, &missing
, &n
, &def
);
1048 fprintf(stderr
, "dwm: missing fontset: %s\n", missing
[n
]);
1049 XFreeStringList(missing
);
1052 XFontStruct
**xfonts
;
1055 dc
.font
.ascent
= dc
.font
.descent
= 0;
1056 XExtentsOfFontSet(dc
.font
.set
);
1057 n
= XFontsOfFontSet(dc
.font
.set
, &xfonts
, &font_names
);
1059 dc
.font
.ascent
= MAX(dc
.font
.ascent
, (*xfonts
)->ascent
);
1060 dc
.font
.descent
= MAX(dc
.font
.descent
,(*xfonts
)->descent
);
1065 if(!(dc
.font
.xfont
= XLoadQueryFont(dpy
, fontstr
))
1066 && !(dc
.font
.xfont
= XLoadQueryFont(dpy
, "fixed")))
1067 die("error, cannot load font: '%s'\n", fontstr
);
1068 dc
.font
.ascent
= dc
.font
.xfont
->ascent
;
1069 dc
.font
.descent
= dc
.font
.xfont
->descent
;
1071 dc
.font
.height
= dc
.font
.ascent
+ dc
.font
.descent
;
1076 isuniquegeom(XineramaScreenInfo
*unique
, size_t n
, XineramaScreenInfo
*info
) {
1078 if(unique
[n
].x_org
== info
->x_org
&& unique
[n
].y_org
== info
->y_org
1079 && unique
[n
].width
== info
->width
&& unique
[n
].height
== info
->height
)
1083 #endif /* XINERAMA */
1086 keypress(XEvent
*e
) {
1092 keysym
= XKeycodeToKeysym(dpy
, (KeyCode
)ev
->keycode
, 0);
1093 for(i
= 0; i
< LENGTH(keys
); i
++)
1094 if(keysym
== keys
[i
].keysym
1095 && CLEANMASK(keys
[i
].mod
) == CLEANMASK(ev
->state
)
1097 keys
[i
].func(&(keys
[i
].arg
));
1101 killclient(const Arg
*arg
) {
1104 if(!sendevent(selmon
->sel
, wmatom
[WMDelete
])) {
1106 XSetErrorHandler(xerrordummy
);
1107 XSetCloseDownMode(dpy
, DestroyAll
);
1108 XKillClient(dpy
, selmon
->sel
->win
);
1110 XSetErrorHandler(xerror
);
1116 manage(Window w
, XWindowAttributes
*wa
) {
1117 Client
*c
, *t
= NULL
;
1118 Window trans
= None
;
1121 if(!(c
= calloc(1, sizeof(Client
))))
1122 die("fatal: could not malloc() %u bytes\n", sizeof(Client
));
1125 if(XGetTransientForHint(dpy
, w
, &trans
) && (t
= wintoclient(trans
))) {
1134 c
->x
= c
->oldx
= wa
->x
;
1135 c
->y
= c
->oldy
= wa
->y
;
1136 c
->w
= c
->oldw
= wa
->width
;
1137 c
->h
= c
->oldh
= wa
->height
;
1138 c
->oldbw
= wa
->border_width
;
1140 if(c
->x
+ WIDTH(c
) > c
->mon
->mx
+ c
->mon
->mw
)
1141 c
->x
= c
->mon
->mx
+ c
->mon
->mw
- WIDTH(c
);
1142 if(c
->y
+ HEIGHT(c
) > c
->mon
->my
+ c
->mon
->mh
)
1143 c
->y
= c
->mon
->my
+ c
->mon
->mh
- HEIGHT(c
);
1144 c
->x
= MAX(c
->x
, c
->mon
->mx
);
1145 /* only fix client y-offset, if the client center might cover the bar */
1146 c
->y
= MAX(c
->y
, ((c
->mon
->by
== c
->mon
->my
) && (c
->x
+ (c
->w
/ 2) >= c
->mon
->wx
)
1147 && (c
->x
+ (c
->w
/ 2) < c
->mon
->wx
+ c
->mon
->ww
)) ? bh
: c
->mon
->my
);
1150 wc
.border_width
= c
->bw
;
1151 XConfigureWindow(dpy
, w
, CWBorderWidth
, &wc
);
1152 XSetWindowBorder(dpy
, w
, dc
.norm
[ColBorder
]);
1153 configure(c
); /* propagates border_width, if size doesn't change */
1154 updatewindowtype(c
);
1157 XSelectInput(dpy
, w
, EnterWindowMask
|FocusChangeMask
|PropertyChangeMask
|StructureNotifyMask
);
1158 grabbuttons(c
, False
);
1160 c
->isfloating
= c
->oldstate
= trans
!= None
|| c
->isfixed
;
1162 XRaiseWindow(dpy
, c
->win
);
1165 XChangeProperty(dpy
, root
, netatom
[NetClientList
], XA_WINDOW
, 32, PropModeAppend
,
1166 (unsigned char *) &(c
->win
), 1);
1167 XMoveResizeWindow(dpy
, c
->win
, c
->x
+ 2 * sw
, c
->y
, c
->w
, c
->h
); /* some windows require this */
1168 setclientstate(c
, NormalState
);
1169 if (c
->mon
== selmon
)
1170 unfocus(selmon
->sel
, False
);
1173 XMapWindow(dpy
, c
->win
);
1178 mappingnotify(XEvent
*e
) {
1179 XMappingEvent
*ev
= &e
->xmapping
;
1181 XRefreshKeyboardMapping(ev
);
1182 if(ev
->request
== MappingKeyboard
)
1187 maprequest(XEvent
*e
) {
1188 static XWindowAttributes wa
;
1189 XMapRequestEvent
*ev
= &e
->xmaprequest
;
1191 if(!XGetWindowAttributes(dpy
, ev
->window
, &wa
))
1193 if(wa
.override_redirect
)
1195 if(!wintoclient(ev
->window
))
1196 manage(ev
->window
, &wa
);
1200 monocle(Monitor
*m
) {
1204 for(c
= m
->clients
; c
; c
= c
->next
)
1207 if(n
> 0) /* override layout symbol */
1208 snprintf(m
->ltsymbol
, sizeof m
->ltsymbol
, "[%d]", n
);
1209 for(c
= nexttiled(m
->clients
); c
; c
= nexttiled(c
->next
))
1210 resize(c
, m
->wx
, m
->wy
, m
->ww
- 2 * c
->bw
, m
->wh
- 2 * c
->bw
, False
);
1214 motionnotify(XEvent
*e
) {
1215 static Monitor
*mon
= NULL
;
1217 XMotionEvent
*ev
= &e
->xmotion
;
1219 if(ev
->window
!= root
)
1221 if((m
= recttomon(ev
->x_root
, ev
->y_root
, 1, 1)) != mon
&& mon
) {
1222 unfocus(selmon
->sel
, True
);
1230 movemouse(const Arg
*arg
) {
1231 int x
, y
, ocx
, ocy
, nx
, ny
;
1236 if(!(c
= selmon
->sel
))
1241 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1242 None
, cursor
[CurMove
], CurrentTime
) != GrabSuccess
)
1244 if(!getrootptr(&x
, &y
))
1247 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1249 case ConfigureRequest
:
1252 handler
[ev
.type
](&ev
);
1255 nx
= ocx
+ (ev
.xmotion
.x
- x
);
1256 ny
= ocy
+ (ev
.xmotion
.y
- y
);
1257 if(nx
>= selmon
->wx
&& nx
<= selmon
->wx
+ selmon
->ww
1258 && ny
>= selmon
->wy
&& ny
<= selmon
->wy
+ selmon
->wh
) {
1259 if(abs(selmon
->wx
- nx
) < snap
)
1261 else if(abs((selmon
->wx
+ selmon
->ww
) - (nx
+ WIDTH(c
))) < snap
)
1262 nx
= selmon
->wx
+ selmon
->ww
- WIDTH(c
);
1263 if(abs(selmon
->wy
- ny
) < snap
)
1265 else if(abs((selmon
->wy
+ selmon
->wh
) - (ny
+ HEIGHT(c
))) < snap
)
1266 ny
= selmon
->wy
+ selmon
->wh
- HEIGHT(c
);
1267 if(!c
->isfloating
&& selmon
->lt
[selmon
->sellt
]->arrange
1268 && (abs(nx
- c
->x
) > snap
|| abs(ny
- c
->y
) > snap
))
1269 togglefloating(NULL
);
1271 if(!selmon
->lt
[selmon
->sellt
]->arrange
|| c
->isfloating
) {
1273 setfullscreen(c
, False
);
1274 resize(c
, nx
, ny
, c
->w
, c
->h
, True
);
1278 } while(ev
.type
!= ButtonRelease
);
1279 XUngrabPointer(dpy
, CurrentTime
);
1280 if((m
= recttomon(c
->x
, c
->y
, c
->w
, c
->h
)) != selmon
) {
1288 nexttiled(Client
*c
) {
1289 for(; c
&& (c
->isfloating
|| !ISVISIBLE(c
)); c
= c
->next
);
1302 propertynotify(XEvent
*e
) {
1305 XPropertyEvent
*ev
= &e
->xproperty
;
1307 if((ev
->window
== root
) && (ev
->atom
== XA_WM_NAME
))
1309 else if(ev
->state
== PropertyDelete
)
1310 return; /* ignore */
1311 else if((c
= wintoclient(ev
->window
))) {
1314 case XA_WM_TRANSIENT_FOR
:
1315 if(!c
->isfloating
&& (XGetTransientForHint(dpy
, c
->win
, &trans
)) &&
1316 (c
->isfloating
= (wintoclient(trans
)) != NULL
))
1319 case XA_WM_NORMAL_HINTS
:
1327 if(ev
->atom
== XA_WM_NAME
|| ev
->atom
== netatom
[NetWMName
]) {
1329 if(c
== c
->mon
->sel
)
1332 if(ev
->atom
== netatom
[NetWMWindowType
])
1333 updatewindowtype(c
);
1338 quit(const Arg
*arg
) {
1343 recttomon(int x
, int y
, int w
, int h
) {
1344 Monitor
*m
, *r
= selmon
;
1347 for(m
= mons
; m
; m
= m
->next
)
1348 if((a
= INTERSECT(x
, y
, w
, h
, m
)) > area
) {
1356 resize(Client
*c
, int x
, int y
, int w
, int h
, Bool interact
) {
1357 if(applysizehints(c
, &x
, &y
, &w
, &h
, interact
))
1358 resizeclient(c
, x
, y
, w
, h
);
1362 resizeclient(Client
*c
, int x
, int y
, int w
, int h
) {
1365 c
->oldx
= c
->x
; c
->x
= wc
.x
= x
;
1366 c
->oldy
= c
->y
; c
->y
= wc
.y
= y
;
1367 c
->oldw
= c
->w
; c
->w
= wc
.width
= w
;
1368 c
->oldh
= c
->h
; c
->h
= wc
.height
= h
;
1369 wc
.border_width
= c
->bw
;
1370 XConfigureWindow(dpy
, c
->win
, CWX
|CWY
|CWWidth
|CWHeight
|CWBorderWidth
, &wc
);
1376 resizemouse(const Arg
*arg
) {
1383 if(!(c
= selmon
->sel
))
1388 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1389 None
, cursor
[CurResize
], CurrentTime
) != GrabSuccess
)
1391 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1393 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1395 case ConfigureRequest
:
1398 handler
[ev
.type
](&ev
);
1401 nw
= MAX(ev
.xmotion
.x
- ocx
- 2 * c
->bw
+ 1, 1);
1402 nh
= MAX(ev
.xmotion
.y
- ocy
- 2 * c
->bw
+ 1, 1);
1403 if(c
->mon
->wx
+ nw
>= selmon
->wx
&& c
->mon
->wx
+ nw
<= selmon
->wx
+ selmon
->ww
1404 && c
->mon
->wy
+ nh
>= selmon
->wy
&& c
->mon
->wy
+ nh
<= selmon
->wy
+ selmon
->wh
)
1406 if(!c
->isfloating
&& selmon
->lt
[selmon
->sellt
]->arrange
1407 && (abs(nw
- c
->w
) > snap
|| abs(nh
- c
->h
) > snap
))
1408 togglefloating(NULL
);
1410 if(!selmon
->lt
[selmon
->sellt
]->arrange
|| c
->isfloating
) {
1412 setfullscreen(c
, False
);
1413 resize(c
, c
->x
, c
->y
, nw
, nh
, True
);
1417 } while(ev
.type
!= ButtonRelease
);
1418 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1419 XUngrabPointer(dpy
, CurrentTime
);
1420 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1421 if((m
= recttomon(c
->x
, c
->y
, c
->w
, c
->h
)) != selmon
) {
1429 restack(Monitor
*m
) {
1437 if(m
->sel
->isfloating
|| !m
->lt
[m
->sellt
]->arrange
)
1438 XRaiseWindow(dpy
, m
->sel
->win
);
1439 if(m
->lt
[m
->sellt
]->arrange
) {
1440 wc
.stack_mode
= Below
;
1441 wc
.sibling
= m
->barwin
;
1442 for(c
= m
->stack
; c
; c
= c
->snext
)
1443 if(!c
->isfloating
&& ISVISIBLE(c
)) {
1444 XConfigureWindow(dpy
, c
->win
, CWSibling
|CWStackMode
, &wc
);
1445 wc
.sibling
= c
->win
;
1449 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1455 /* main event loop */
1457 while(running
&& !XNextEvent(dpy
, &ev
))
1458 if(handler
[ev
.type
])
1459 handler
[ev
.type
](&ev
); /* call handler */
1464 unsigned int i
, num
;
1465 Window d1
, d2
, *wins
= NULL
;
1466 XWindowAttributes wa
;
1468 if(XQueryTree(dpy
, root
, &d1
, &d2
, &wins
, &num
)) {
1469 for(i
= 0; i
< num
; i
++) {
1470 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
)
1471 || wa
.override_redirect
|| XGetTransientForHint(dpy
, wins
[i
], &d1
))
1473 if(wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
)
1474 manage(wins
[i
], &wa
);
1476 for(i
= 0; i
< num
; i
++) { /* now the transients */
1477 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
))
1479 if(XGetTransientForHint(dpy
, wins
[i
], &d1
)
1480 && (wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
))
1481 manage(wins
[i
], &wa
);
1489 sendmon(Client
*c
, Monitor
*m
) {
1496 c
->tags
= m
->tagset
[m
->seltags
]; /* assign tags of target monitor */
1504 setclientstate(Client
*c
, long state
) {
1505 long data
[] = { state
, None
};
1507 XChangeProperty(dpy
, c
->win
, wmatom
[WMState
], wmatom
[WMState
], 32,
1508 PropModeReplace
, (unsigned char *)data
, 2);
1512 sendevent(Client
*c
, Atom proto
) {
1515 Bool exists
= False
;
1518 if(XGetWMProtocols(dpy
, c
->win
, &protocols
, &n
)) {
1519 while(!exists
&& n
--)
1520 exists
= protocols
[n
] == proto
;
1524 ev
.type
= ClientMessage
;
1525 ev
.xclient
.window
= c
->win
;
1526 ev
.xclient
.message_type
= wmatom
[WMProtocols
];
1527 ev
.xclient
.format
= 32;
1528 ev
.xclient
.data
.l
[0] = proto
;
1529 ev
.xclient
.data
.l
[1] = CurrentTime
;
1530 XSendEvent(dpy
, c
->win
, False
, NoEventMask
, &ev
);
1536 setfocus(Client
*c
) {
1537 if(!c
->neverfocus
) {
1538 XSetInputFocus(dpy
, c
->win
, RevertToPointerRoot
, CurrentTime
);
1539 XChangeProperty(dpy
, root
, netatom
[NetActiveWindow
],
1540 XA_WINDOW
, 32, PropModeReplace
,
1541 (unsigned char *) &(c
->win
), 1);
1543 sendevent(c
, wmatom
[WMTakeFocus
]);
1547 setfullscreen(Client
*c
, Bool fullscreen
) {
1549 XChangeProperty(dpy
, c
->win
, netatom
[NetWMState
], XA_ATOM
, 32,
1550 PropModeReplace
, (unsigned char*)&netatom
[NetWMFullscreen
], 1);
1551 c
->isfullscreen
= True
;
1552 c
->oldstate
= c
->isfloating
;
1555 c
->isfloating
= True
;
1556 resizeclient(c
, c
->mon
->mx
, c
->mon
->my
, c
->mon
->mw
, c
->mon
->mh
);
1557 XRaiseWindow(dpy
, c
->win
);
1560 XChangeProperty(dpy
, c
->win
, netatom
[NetWMState
], XA_ATOM
, 32,
1561 PropModeReplace
, (unsigned char*)0, 0);
1562 c
->isfullscreen
= False
;
1563 c
->isfloating
= c
->oldstate
;
1569 resizeclient(c
, c
->x
, c
->y
, c
->w
, c
->h
);
1575 setlayout(const Arg
*arg
) {
1576 if(!arg
|| !arg
->v
|| arg
->v
!= selmon
->lt
[selmon
->sellt
])
1579 selmon
->lt
[selmon
->sellt
] = (Layout
*)arg
->v
;
1580 strncpy(selmon
->ltsymbol
, selmon
->lt
[selmon
->sellt
]->symbol
, sizeof selmon
->ltsymbol
);
1587 /* arg > 1.0 will set mfact absolutly */
1589 setmfact(const Arg
*arg
) {
1592 if(!arg
|| !selmon
->lt
[selmon
->sellt
]->arrange
)
1594 f
= arg
->f
< 1.0 ? arg
->f
+ selmon
->mfact
: arg
->f
- 1.0;
1595 if(f
< 0.1 || f
> 0.9)
1603 XSetWindowAttributes wa
;
1605 /* clean up any zombies immediately */
1609 screen
= DefaultScreen(dpy
);
1610 root
= RootWindow(dpy
, screen
);
1612 sw
= DisplayWidth(dpy
, screen
);
1613 sh
= DisplayHeight(dpy
, screen
);
1614 bh
= dc
.h
= dc
.font
.height
+ 2;
1617 wmatom
[WMProtocols
] = XInternAtom(dpy
, "WM_PROTOCOLS", False
);
1618 wmatom
[WMDelete
] = XInternAtom(dpy
, "WM_DELETE_WINDOW", False
);
1619 wmatom
[WMState
] = XInternAtom(dpy
, "WM_STATE", False
);
1620 wmatom
[WMTakeFocus
] = XInternAtom(dpy
, "WM_TAKE_FOCUS", False
);
1621 netatom
[NetActiveWindow
] = XInternAtom(dpy
, "_NET_ACTIVE_WINDOW", False
);
1622 netatom
[NetSupported
] = XInternAtom(dpy
, "_NET_SUPPORTED", False
);
1623 netatom
[NetWMName
] = XInternAtom(dpy
, "_NET_WM_NAME", False
);
1624 netatom
[NetWMState
] = XInternAtom(dpy
, "_NET_WM_STATE", False
);
1625 netatom
[NetWMFullscreen
] = XInternAtom(dpy
, "_NET_WM_STATE_FULLSCREEN", False
);
1626 netatom
[NetWMWindowType
] = XInternAtom(dpy
, "_NET_WM_WINDOW_TYPE", False
);
1627 netatom
[NetWMWindowTypeDialog
] = XInternAtom(dpy
, "_NET_WM_WINDOW_TYPE_DIALOG", False
);
1628 netatom
[NetClientList
] = XInternAtom(dpy
, "_NET_CLIENT_LIST", False
);
1630 cursor
[CurNormal
] = XCreateFontCursor(dpy
, XC_left_ptr
);
1631 cursor
[CurResize
] = XCreateFontCursor(dpy
, XC_sizing
);
1632 cursor
[CurMove
] = XCreateFontCursor(dpy
, XC_fleur
);
1633 /* init appearance */
1634 dc
.norm
[ColBorder
] = getcolor(normbordercolor
);
1635 dc
.norm
[ColBG
] = getcolor(normbgcolor
);
1636 dc
.norm
[ColFG
] = getcolor(normfgcolor
);
1637 dc
.sel
[ColBorder
] = getcolor(selbordercolor
);
1638 dc
.sel
[ColBG
] = getcolor(selbgcolor
);
1639 dc
.sel
[ColFG
] = getcolor(selfgcolor
);
1640 dc
.drawable
= XCreatePixmap(dpy
, root
, DisplayWidth(dpy
, screen
), bh
, DefaultDepth(dpy
, screen
));
1641 dc
.gc
= XCreateGC(dpy
, root
, 0, NULL
);
1642 XSetLineAttributes(dpy
, dc
.gc
, 1, LineSolid
, CapButt
, JoinMiter
);
1644 XSetFont(dpy
, dc
.gc
, dc
.font
.xfont
->fid
);
1648 /* EWMH support per view */
1649 XChangeProperty(dpy
, root
, netatom
[NetSupported
], XA_ATOM
, 32,
1650 PropModeReplace
, (unsigned char *) netatom
, NetLast
);
1651 XDeleteProperty(dpy
, root
, netatom
[NetClientList
]);
1652 /* select for events */
1653 wa
.cursor
= cursor
[CurNormal
];
1654 wa
.event_mask
= SubstructureRedirectMask
|SubstructureNotifyMask
|ButtonPressMask
|PointerMotionMask
1655 |EnterWindowMask
|LeaveWindowMask
|StructureNotifyMask
|PropertyChangeMask
;
1656 XChangeWindowAttributes(dpy
, root
, CWEventMask
|CWCursor
, &wa
);
1657 XSelectInput(dpy
, root
, wa
.event_mask
);
1662 showhide(Client
*c
) {
1665 if(ISVISIBLE(c
)) { /* show clients top down */
1666 XMoveWindow(dpy
, c
->win
, c
->x
, c
->y
);
1667 if((!c
->mon
->lt
[c
->mon
->sellt
]->arrange
|| c
->isfloating
) && !c
->isfullscreen
)
1668 resize(c
, c
->x
, c
->y
, c
->w
, c
->h
, False
);
1671 else { /* hide clients bottom up */
1673 XMoveWindow(dpy
, c
->win
, WIDTH(c
) * -2, c
->y
);
1678 sigchld(int unused
) {
1679 if(signal(SIGCHLD
, sigchld
) == SIG_ERR
)
1680 die("Can't install SIGCHLD handler");
1681 while(0 < waitpid(-1, NULL
, WNOHANG
));
1685 spawn(const Arg
*arg
) {
1688 close(ConnectionNumber(dpy
));
1690 execvp(((char **)arg
->v
)[0], (char **)arg
->v
);
1691 fprintf(stderr
, "dwm: execvp %s", ((char **)arg
->v
)[0]);
1698 tag(const Arg
*arg
) {
1699 if(selmon
->sel
&& arg
->ui
& TAGMASK
) {
1700 selmon
->sel
->tags
= arg
->ui
& TAGMASK
;
1707 tagmon(const Arg
*arg
) {
1708 if(!selmon
->sel
|| !mons
->next
)
1710 sendmon(selmon
->sel
, dirtomon(arg
->i
));
1714 textnw(const char *text
, unsigned int len
) {
1718 XmbTextExtents(dc
.font
.set
, text
, len
, NULL
, &r
);
1721 return XTextWidth(dc
.font
.xfont
, text
, len
);
1726 unsigned int i
, n
, h
, mw
, my
, ty
;
1729 for(n
= 0, c
= nexttiled(m
->clients
); c
; c
= nexttiled(c
->next
), n
++);
1734 mw
= m
->nmaster
? m
->ww
* m
->mfact
: 0;
1737 for(i
= my
= ty
= 0, c
= nexttiled(m
->clients
); c
; c
= nexttiled(c
->next
), i
++)
1738 if(i
< m
->nmaster
) {
1739 h
= (m
->wh
- my
) / (MIN(n
, m
->nmaster
) - i
);
1740 resize(c
, m
->wx
, m
->wy
+ my
, mw
- (2*c
->bw
), h
- (2*c
->bw
), False
);
1744 h
= (m
->wh
- ty
) / (n
- i
);
1745 resize(c
, m
->wx
+ mw
, m
->wy
+ ty
, m
->ww
- mw
- (2*c
->bw
), h
- (2*c
->bw
), False
);
1751 togglebar(const Arg
*arg
) {
1752 selmon
->showbar
= !selmon
->showbar
;
1753 updatebarpos(selmon
);
1754 XMoveResizeWindow(dpy
, selmon
->barwin
, selmon
->wx
, selmon
->by
, selmon
->ww
, bh
);
1759 togglefloating(const Arg
*arg
) {
1762 selmon
->sel
->isfloating
= !selmon
->sel
->isfloating
|| selmon
->sel
->isfixed
;
1763 if(selmon
->sel
->isfloating
)
1764 resize(selmon
->sel
, selmon
->sel
->x
, selmon
->sel
->y
,
1765 selmon
->sel
->w
, selmon
->sel
->h
, False
);
1766 else if(selmon
->sel
->isfullscreen
)
1767 setfullscreen(selmon
->sel
, False
);
1772 toggletag(const Arg
*arg
) {
1773 unsigned int newtags
;
1777 newtags
= selmon
->sel
->tags
^ (arg
->ui
& TAGMASK
);
1779 selmon
->sel
->tags
= newtags
;
1786 toggleview(const Arg
*arg
) {
1787 unsigned int newtagset
= selmon
->tagset
[selmon
->seltags
] ^ (arg
->ui
& TAGMASK
);
1790 selmon
->tagset
[selmon
->seltags
] = newtagset
;
1797 unfocus(Client
*c
, Bool setfocus
) {
1800 grabbuttons(c
, False
);
1801 XSetWindowBorder(dpy
, c
->win
, dc
.norm
[ColBorder
]);
1803 XSetInputFocus(dpy
, root
, RevertToPointerRoot
, CurrentTime
);
1804 XDeleteProperty(dpy
, root
, netatom
[NetActiveWindow
]);
1809 unmanage(Client
*c
, Bool destroyed
) {
1810 Monitor
*m
= c
->mon
;
1813 /* The server grab construct avoids race conditions. */
1817 wc
.border_width
= c
->oldbw
;
1819 XSetErrorHandler(xerrordummy
);
1820 XConfigureWindow(dpy
, c
->win
, CWBorderWidth
, &wc
); /* restore border */
1821 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
1822 setclientstate(c
, WithdrawnState
);
1824 XSetErrorHandler(xerror
);
1834 unmapnotify(XEvent
*e
) {
1836 XUnmapEvent
*ev
= &e
->xunmap
;
1838 if((c
= wintoclient(ev
->window
))) {
1840 setclientstate(c
, WithdrawnState
);
1849 XSetWindowAttributes wa
= {
1850 .override_redirect
= True
,
1851 .background_pixmap
= ParentRelative
,
1852 .event_mask
= ButtonPressMask
|ExposureMask
1854 for(m
= mons
; m
; m
= m
->next
) {
1857 m
->barwin
= XCreateWindow(dpy
, root
, m
->wx
, m
->by
, m
->ww
, bh
, 0, DefaultDepth(dpy
, screen
),
1858 CopyFromParent
, DefaultVisual(dpy
, screen
),
1859 CWOverrideRedirect
|CWBackPixmap
|CWEventMask
, &wa
);
1860 XDefineCursor(dpy
, m
->barwin
, cursor
[CurNormal
]);
1861 XMapRaised(dpy
, m
->barwin
);
1866 updatebarpos(Monitor
*m
) {
1871 m
->by
= m
->topbar
? m
->wy
: m
->wy
+ m
->wh
;
1872 m
->wy
= m
->topbar
? m
->wy
+ bh
: m
->wy
;
1879 updateclientlist() {
1883 XDeleteProperty(dpy
, root
, netatom
[NetClientList
]);
1884 for(m
= mons
; m
; m
= m
->next
)
1885 for(c
= m
->clients
; c
; c
= c
->next
)
1886 XChangeProperty(dpy
, root
, netatom
[NetClientList
],
1887 XA_WINDOW
, 32, PropModeAppend
,
1888 (unsigned char *) &(c
->win
), 1);
1896 if(XineramaIsActive(dpy
)) {
1900 XineramaScreenInfo
*info
= XineramaQueryScreens(dpy
, &nn
);
1901 XineramaScreenInfo
*unique
= NULL
;
1903 for(n
= 0, m
= mons
; m
; m
= m
->next
, n
++);
1904 /* only consider unique geometries as separate screens */
1905 if(!(unique
= (XineramaScreenInfo
*)malloc(sizeof(XineramaScreenInfo
) * nn
)))
1906 die("fatal: could not malloc() %u bytes\n", sizeof(XineramaScreenInfo
) * nn
);
1907 for(i
= 0, j
= 0; i
< nn
; i
++)
1908 if(isuniquegeom(unique
, j
, &info
[i
]))
1909 memcpy(&unique
[j
++], &info
[i
], sizeof(XineramaScreenInfo
));
1913 for(i
= 0; i
< (nn
- n
); i
++) { /* new monitors available */
1914 for(m
= mons
; m
&& m
->next
; m
= m
->next
);
1916 m
->next
= createmon();
1920 for(i
= 0, m
= mons
; i
< nn
&& m
; m
= m
->next
, i
++)
1922 || (unique
[i
].x_org
!= m
->mx
|| unique
[i
].y_org
!= m
->my
1923 || unique
[i
].width
!= m
->mw
|| unique
[i
].height
!= m
->mh
))
1927 m
->mx
= m
->wx
= unique
[i
].x_org
;
1928 m
->my
= m
->wy
= unique
[i
].y_org
;
1929 m
->mw
= m
->ww
= unique
[i
].width
;
1930 m
->mh
= m
->wh
= unique
[i
].height
;
1934 else { /* less monitors available nn < n */
1935 for(i
= nn
; i
< n
; i
++) {
1936 for(m
= mons
; m
&& m
->next
; m
= m
->next
);
1940 m
->clients
= c
->next
;
1954 #endif /* XINERAMA */
1955 /* default monitor setup */
1959 if(mons
->mw
!= sw
|| mons
->mh
!= sh
) {
1961 mons
->mw
= mons
->ww
= sw
;
1962 mons
->mh
= mons
->wh
= sh
;
1968 selmon
= wintomon(root
);
1974 updatenumlockmask(void) {
1976 XModifierKeymap
*modmap
;
1979 modmap
= XGetModifierMapping(dpy
);
1980 for(i
= 0; i
< 8; i
++)
1981 for(j
= 0; j
< modmap
->max_keypermod
; j
++)
1982 if(modmap
->modifiermap
[i
* modmap
->max_keypermod
+ j
]
1983 == XKeysymToKeycode(dpy
, XK_Num_Lock
))
1984 numlockmask
= (1 << i
);
1985 XFreeModifiermap(modmap
);
1989 updatesizehints(Client
*c
) {
1993 if(!XGetWMNormalHints(dpy
, c
->win
, &size
, &msize
))
1994 /* size is uninitialized, ensure that size.flags aren't used */
1996 if(size
.flags
& PBaseSize
) {
1997 c
->basew
= size
.base_width
;
1998 c
->baseh
= size
.base_height
;
2000 else if(size
.flags
& PMinSize
) {
2001 c
->basew
= size
.min_width
;
2002 c
->baseh
= size
.min_height
;
2005 c
->basew
= c
->baseh
= 0;
2006 if(size
.flags
& PResizeInc
) {
2007 c
->incw
= size
.width_inc
;
2008 c
->inch
= size
.height_inc
;
2011 c
->incw
= c
->inch
= 0;
2012 if(size
.flags
& PMaxSize
) {
2013 c
->maxw
= size
.max_width
;
2014 c
->maxh
= size
.max_height
;
2017 c
->maxw
= c
->maxh
= 0;
2018 if(size
.flags
& PMinSize
) {
2019 c
->minw
= size
.min_width
;
2020 c
->minh
= size
.min_height
;
2022 else if(size
.flags
& PBaseSize
) {
2023 c
->minw
= size
.base_width
;
2024 c
->minh
= size
.base_height
;
2027 c
->minw
= c
->minh
= 0;
2028 if(size
.flags
& PAspect
) {
2029 c
->mina
= (float)size
.min_aspect
.y
/ size
.min_aspect
.x
;
2030 c
->maxa
= (float)size
.max_aspect
.x
/ size
.max_aspect
.y
;
2033 c
->maxa
= c
->mina
= 0.0;
2034 c
->isfixed
= (c
->maxw
&& c
->minw
&& c
->maxh
&& c
->minh
2035 && c
->maxw
== c
->minw
&& c
->maxh
== c
->minh
);
2039 updatetitle(Client
*c
) {
2040 if(!gettextprop(c
->win
, netatom
[NetWMName
], c
->name
, sizeof c
->name
))
2041 gettextprop(c
->win
, XA_WM_NAME
, c
->name
, sizeof c
->name
);
2042 if(c
->name
[0] == '\0') /* hack to mark broken clients */
2043 strcpy(c
->name
, broken
);
2047 updatestatus(void) {
2048 if(!gettextprop(root
, XA_WM_NAME
, stext
, sizeof(stext
)))
2049 strcpy(stext
, "dwm-"VERSION
);
2054 updatewindowtype(Client
*c
) {
2055 Atom state
= getatomprop(c
, netatom
[NetWMState
]);
2056 Atom wtype
= getatomprop(c
, netatom
[NetWMWindowType
]);
2058 if(state
== netatom
[NetWMFullscreen
])
2059 setfullscreen(c
, True
);
2060 if(wtype
== netatom
[NetWMWindowTypeDialog
])
2061 c
->isfloating
= True
;
2065 updatewmhints(Client
*c
) {
2068 if((wmh
= XGetWMHints(dpy
, c
->win
))) {
2069 if(c
== selmon
->sel
&& wmh
->flags
& XUrgencyHint
) {
2070 wmh
->flags
&= ~XUrgencyHint
;
2071 XSetWMHints(dpy
, c
->win
, wmh
);
2074 c
->isurgent
= (wmh
->flags
& XUrgencyHint
) ? True
: False
;
2075 if(wmh
->flags
& InputHint
)
2076 c
->neverfocus
= !wmh
->input
;
2078 c
->neverfocus
= False
;
2084 view(const Arg
*arg
) {
2085 if((arg
->ui
& TAGMASK
) == selmon
->tagset
[selmon
->seltags
])
2087 selmon
->seltags
^= 1; /* toggle sel tagset */
2088 if(arg
->ui
& TAGMASK
)
2089 selmon
->tagset
[selmon
->seltags
] = arg
->ui
& TAGMASK
;
2095 wintoclient(Window w
) {
2099 for(m
= mons
; m
; m
= m
->next
)
2100 for(c
= m
->clients
; c
; c
= c
->next
)
2107 wintomon(Window w
) {
2112 if(w
== root
&& getrootptr(&x
, &y
))
2113 return recttomon(x
, y
, 1, 1);
2114 for(m
= mons
; m
; m
= m
->next
)
2117 if((c
= wintoclient(w
)))
2122 /* There's no way to check accesses to destroyed windows, thus those cases are
2123 * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
2124 * default error handler, which may call exit. */
2126 xerror(Display
*dpy
, XErrorEvent
*ee
) {
2127 if(ee
->error_code
== BadWindow
2128 || (ee
->request_code
== X_SetInputFocus
&& ee
->error_code
== BadMatch
)
2129 || (ee
->request_code
== X_PolyText8
&& ee
->error_code
== BadDrawable
)
2130 || (ee
->request_code
== X_PolyFillRectangle
&& ee
->error_code
== BadDrawable
)
2131 || (ee
->request_code
== X_PolySegment
&& ee
->error_code
== BadDrawable
)
2132 || (ee
->request_code
== X_ConfigureWindow
&& ee
->error_code
== BadMatch
)
2133 || (ee
->request_code
== X_GrabButton
&& ee
->error_code
== BadAccess
)
2134 || (ee
->request_code
== X_GrabKey
&& ee
->error_code
== BadAccess
)
2135 || (ee
->request_code
== X_CopyArea
&& ee
->error_code
== BadDrawable
))
2137 fprintf(stderr
, "dwm: fatal error: request code=%d, error code=%d\n",
2138 ee
->request_code
, ee
->error_code
);
2139 return xerrorxlib(dpy
, ee
); /* may call exit */
2143 xerrordummy(Display
*dpy
, XErrorEvent
*ee
) {
2147 /* Startup Error handler to check if another window manager
2148 * is already running. */
2150 xerrorstart(Display
*dpy
, XErrorEvent
*ee
) {
2151 die("dwm: another window manager is already running\n");
2156 zoom(const Arg
*arg
) {
2157 Client
*c
= selmon
->sel
;
2159 if(!selmon
->lt
[selmon
->sellt
]->arrange
2160 || (selmon
->sel
&& selmon
->sel
->isfloating
))
2162 if(c
== nexttiled(selmon
->clients
))
2163 if(!c
|| !(c
= nexttiled(c
->next
)))
2169 main(int argc
, char *argv
[]) {
2170 if(argc
== 2 && !strcmp("-v", argv
[1]))
2171 die("dwm-"VERSION
", © 2006-2012 dwm engineers, see LICENSE for details\n");
2173 die("usage: dwm [-v]\n");
2174 if(!setlocale(LC_CTYPE
, "") || !XSupportsLocale())
2175 fputs("warning: no locale support\n", stderr
);
2176 if(!(dpy
= XOpenDisplay(NULL
)))
2177 die("dwm: cannot open display\n");
2184 return EXIT_SUCCESS
;