Xinqi Bao's Git
b1f77cc343d6d92b0fc640c1db2300698b6aeebb
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>
45 #define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
46 #define CLEANMASK(mask) (mask & ~(numlockmask|LockMask))
47 #define INRECT(X,Y,RX,RY,RW,RH) ((X) >= (RX) && (X) < (RX) + (RW) && (Y) >= (RY) && (Y) < (RY) + (RH))
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
, NetLast
}; /* EWMH atoms */
62 enum { WMProtocols
, WMDelete
, WMState
, WMLast
}; /* default atoms */
63 enum { ClkTagBar
, ClkLtSymbol
, ClkStatusText
, ClkWinTitle
,
64 ClkClientWin
, ClkRootWin
, ClkLast
}; /* clicks */
77 void (*func
)(const Arg
*arg
);
81 typedef struct Monitor Monitor
;
82 typedef struct Client Client
;
87 int basew
, baseh
, incw
, inch
, maxw
, maxh
, minw
, minh
;
90 Bool isfixed
, isfloating
, isurgent
;
99 unsigned long norm
[ColLast
];
100 unsigned long sel
[ColLast
];
110 } DC
; /* draw context */
115 void (*func
)(const Arg
*);
121 void (*arrange
)(Monitor
*);
128 int by
; /* bar geometry */
129 int mx
, my
, mw
, mh
; /* screen size */
130 int wx
, wy
, ww
, wh
; /* window area */
131 unsigned int seltags
;
133 unsigned int tagset
[2];
146 const char *instance
;
153 /* function declarations */
154 static void applyrules(Client
*c
);
155 static Bool
applysizehints(Client
*c
, int *x
, int *y
, int *w
, int *h
, Bool interact
);
156 static void arrange(Monitor
*m
);
157 static void arrangemon(Monitor
*m
);
158 static void attach(Client
*c
);
159 static void attachstack(Client
*c
);
160 static void buttonpress(XEvent
*e
);
161 static void checkotherwm(void);
162 static void cleanup(void);
163 static void cleanupmon(Monitor
*mon
);
164 static void clearurgent(Client
*c
);
165 static void configure(Client
*c
);
166 static void configurenotify(XEvent
*e
);
167 static void configurerequest(XEvent
*e
);
168 static Monitor
*createmon(void);
169 static void destroynotify(XEvent
*e
);
170 static void detach(Client
*c
);
171 static void detachstack(Client
*c
);
172 static void die(const char *errstr
, ...);
173 static Monitor
*dirtomon(int dir
);
174 static void drawbar(Monitor
*m
);
175 static void drawbars(void);
176 static void drawsquare(Bool filled
, Bool empty
, Bool invert
, unsigned long col
[ColLast
]);
177 static void drawtext(const char *text
, unsigned long col
[ColLast
], Bool invert
);
178 static void enternotify(XEvent
*e
);
179 static void expose(XEvent
*e
);
180 static void focus(Client
*c
);
181 static void focusin(XEvent
*e
);
182 static void focusmon(const Arg
*arg
);
183 static void focusstack(const Arg
*arg
);
184 static unsigned long getcolor(const char *colstr
);
185 static Bool
getrootptr(int *x
, int *y
);
186 static long getstate(Window w
);
187 static Bool
gettextprop(Window w
, Atom atom
, char *text
, unsigned int size
);
188 static void grabbuttons(Client
*c
, Bool focused
);
189 static void grabkeys(void);
190 static void initfont(const char *fontstr
);
191 static Bool
isprotodel(Client
*c
);
192 static void keypress(XEvent
*e
);
193 static void killclient(const Arg
*arg
);
194 static void manage(Window w
, XWindowAttributes
*wa
);
195 static void mappingnotify(XEvent
*e
);
196 static void maprequest(XEvent
*e
);
197 static void monocle(Monitor
*m
);
198 static void movemouse(const Arg
*arg
);
199 static Client
*nexttiled(Client
*c
);
200 static Monitor
*ptrtomon(int x
, int y
);
201 static void propertynotify(XEvent
*e
);
202 static void quit(const Arg
*arg
);
203 static void resize(Client
*c
, int x
, int y
, int w
, int h
, Bool interact
);
204 static void resizemouse(const Arg
*arg
);
205 static void restack(Monitor
*m
);
206 static void run(void);
207 static void scan(void);
208 static void sendmon(Client
*c
, Monitor
*m
);
209 static void setclientstate(Client
*c
, long state
);
210 static void setlayout(const Arg
*arg
);
211 static void setmfact(const Arg
*arg
);
212 static void setup(void);
213 static void showhide(Client
*c
);
214 static void sigchld(int unused
);
215 static void spawn(const Arg
*arg
);
216 static void tag(const Arg
*arg
);
217 static void tagmon(const Arg
*arg
);
218 static int textnw(const char *text
, unsigned int len
);
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
);
225 static void unmanage(Client
*c
, Bool destroyed
);
226 static void unmapnotify(XEvent
*e
);
227 static Bool
updategeom(void);
228 static void updatebarpos(Monitor
*m
);
229 static void updatebars(void);
230 static void updatenumlockmask(void);
231 static void updatesizehints(Client
*c
);
232 static void updatestatus(void);
233 static void updatetitle(Client
*c
);
234 static void updatewmhints(Client
*c
);
235 static void view(const Arg
*arg
);
236 static Client
*wintoclient(Window w
);
237 static Monitor
*wintomon(Window w
);
238 static int xerror(Display
*dpy
, XErrorEvent
*ee
);
239 static int xerrordummy(Display
*dpy
, XErrorEvent
*ee
);
240 static int xerrorstart(Display
*dpy
, XErrorEvent
*ee
);
241 static void zoom(const Arg
*arg
);
244 static const char broken
[] = "broken";
245 static char stext
[256];
247 static int sw
, sh
; /* X display screen geometry width, height */
248 static int bh
, blw
= 0; /* bar geometry */
249 static int (*xerrorxlib
)(Display
*, XErrorEvent
*);
250 static unsigned int numlockmask
= 0;
251 static void (*handler
[LASTEvent
]) (XEvent
*) = {
252 [ButtonPress
] = buttonpress
,
253 [ConfigureRequest
] = configurerequest
,
254 [ConfigureNotify
] = configurenotify
,
255 [DestroyNotify
] = destroynotify
,
256 [EnterNotify
] = enternotify
,
259 [KeyPress
] = keypress
,
260 [MappingNotify
] = mappingnotify
,
261 [MapRequest
] = maprequest
,
262 [PropertyNotify
] = propertynotify
,
263 [UnmapNotify
] = unmapnotify
265 static Atom wmatom
[WMLast
], netatom
[NetLast
];
267 static Bool running
= True
;
268 static Cursor cursor
[CurLast
];
271 static Monitor
*mons
= NULL
, *selmon
= NULL
;
274 /* configuration, allows nested code to access above variables */
277 /* compile-time check if all tags fit into an unsigned int bit array. */
278 struct NumTags
{ char limitexceeded
[LENGTH(tags
) > 31 ? -1 : 1]; };
280 /* function implementations */
282 applyrules(Client
*c
) {
283 const char *class, *instance
;
287 XClassHint ch
= { 0 };
290 c
->isfloating
= c
->tags
= 0;
291 if(XGetClassHint(dpy
, c
->win
, &ch
)) {
292 class = ch
.res_class
? ch
.res_class
: broken
;
293 instance
= ch
.res_name
? ch
.res_name
: broken
;
294 for(i
= 0; i
< LENGTH(rules
); i
++) {
296 if((!r
->title
|| strstr(c
->name
, r
->title
))
297 && (!r
->class || strstr(class, r
->class))
298 && (!r
->instance
|| strstr(instance
, r
->instance
)))
300 c
->isfloating
= r
->isfloating
;
302 for(m
= mons
; m
&& m
->num
!= r
->monitor
; m
= m
->next
);
312 c
->tags
= c
->tags
& TAGMASK
? c
->tags
& TAGMASK
: c
->mon
->tagset
[c
->mon
->seltags
];
316 applysizehints(Client
*c
, int *x
, int *y
, int *w
, int *h
, Bool interact
) {
320 /* set minimum possible */
328 if(*x
+ *w
+ 2 * c
->bw
< 0)
330 if(*y
+ *h
+ 2 * c
->bw
< 0)
334 if(*x
> m
->mx
+ m
->mw
)
335 *x
= m
->mx
+ m
->mw
- WIDTH(c
);
336 if(*y
> m
->my
+ m
->mh
)
337 *y
= m
->my
+ m
->mh
- HEIGHT(c
);
338 if(*x
+ *w
+ 2 * c
->bw
< m
->mx
)
340 if(*y
+ *h
+ 2 * c
->bw
< m
->my
)
347 if(resizehints
|| c
->isfloating
) {
348 /* see last two sentences in ICCCM 4.1.2.3 */
349 baseismin
= c
->basew
== c
->minw
&& c
->baseh
== c
->minh
;
350 if(!baseismin
) { /* temporarily remove base dimensions */
354 /* adjust for aspect limits */
355 if(c
->mina
> 0 && c
->maxa
> 0) {
356 if(c
->maxa
< (float)*w
/ *h
)
357 *w
= *h
* c
->maxa
+ 0.5;
358 else if(c
->mina
< (float)*h
/ *w
)
359 *h
= *w
* c
->mina
+ 0.5;
361 if(baseismin
) { /* increment calculation requires this */
365 /* adjust for increment value */
370 /* restore base dimensions */
373 *w
= MAX(*w
, c
->minw
);
374 *h
= MAX(*h
, c
->minh
);
376 *w
= MIN(*w
, c
->maxw
);
378 *h
= MIN(*h
, c
->maxh
);
380 return *x
!= c
->x
|| *y
!= c
->y
|| *w
!= c
->w
|| *h
!= c
->h
;
384 arrange(Monitor
*m
) {
387 else for(m
= mons
; m
; m
= m
->next
)
392 else for(m
= mons
; m
; m
= m
->next
)
397 arrangemon(Monitor
*m
) {
398 strncpy(m
->ltsymbol
, m
->lt
[m
->sellt
]->symbol
, sizeof m
->ltsymbol
);
399 if(m
->lt
[m
->sellt
]->arrange
)
400 m
->lt
[m
->sellt
]->arrange(m
);
406 c
->next
= c
->mon
->clients
;
411 attachstack(Client
*c
) {
412 c
->snext
= c
->mon
->stack
;
417 buttonpress(XEvent
*e
) {
418 unsigned int i
, x
, click
;
422 XButtonPressedEvent
*ev
= &e
->xbutton
;
425 /* focus monitor if necessary */
426 if((m
= wintomon(ev
->window
)) && m
!= selmon
) {
427 unfocus(selmon
->sel
);
431 if(ev
->window
== selmon
->barwin
) {
435 } while(ev
->x
>= x
&& ++i
< LENGTH(tags
));
436 if(i
< LENGTH(tags
)) {
440 else if(ev
->x
< x
+ blw
)
442 else if(ev
->x
> selmon
->wx
+ selmon
->ww
- TEXTW(stext
))
443 click
= ClkStatusText
;
447 else if((c
= wintoclient(ev
->window
))) {
449 click
= ClkClientWin
;
451 for(i
= 0; i
< LENGTH(buttons
); i
++)
452 if(click
== buttons
[i
].click
&& buttons
[i
].func
&& buttons
[i
].button
== ev
->button
453 && CLEANMASK(buttons
[i
].mask
) == CLEANMASK(ev
->state
))
454 buttons
[i
].func(click
== ClkTagBar
&& buttons
[i
].arg
.i
== 0 ? &arg
: &buttons
[i
].arg
);
460 xerrorxlib
= XSetErrorHandler(xerrorstart
);
461 /* this causes an error if some other window manager is running */
462 XSelectInput(dpy
, DefaultRootWindow(dpy
), SubstructureRedirectMask
);
465 die("dwm: another window manager is already running\n");
466 XSetErrorHandler(xerror
);
473 Layout foo
= { "", NULL
};
477 selmon
->lt
[selmon
->sellt
] = &foo
;
478 for(m
= mons
; m
; m
= m
->next
)
480 unmanage(m
->stack
, False
);
482 XFreeFontSet(dpy
, dc
.font
.set
);
484 XFreeFont(dpy
, dc
.font
.xfont
);
485 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
486 XFreePixmap(dpy
, dc
.drawable
);
488 XFreeCursor(dpy
, cursor
[CurNormal
]);
489 XFreeCursor(dpy
, cursor
[CurResize
]);
490 XFreeCursor(dpy
, cursor
[CurMove
]);
494 XSetInputFocus(dpy
, PointerRoot
, RevertToPointerRoot
, CurrentTime
);
498 cleanupmon(Monitor
*mon
) {
504 for(m
= mons
; m
&& m
->next
!= mon
; m
= m
->next
);
507 XUnmapWindow(dpy
, mon
->barwin
);
508 XDestroyWindow(dpy
, mon
->barwin
);
513 clearurgent(Client
*c
) {
517 if(!(wmh
= XGetWMHints(dpy
, c
->win
)))
519 wmh
->flags
&= ~XUrgencyHint
;
520 XSetWMHints(dpy
, c
->win
, wmh
);
525 configure(Client
*c
) {
528 ce
.type
= ConfigureNotify
;
536 ce
.border_width
= c
->bw
;
538 ce
.override_redirect
= False
;
539 XSendEvent(dpy
, c
->win
, False
, StructureNotifyMask
, (XEvent
*)&ce
);
543 configurenotify(XEvent
*e
) {
545 XConfigureEvent
*ev
= &e
->xconfigure
;
547 if(ev
->window
== root
) {
552 XFreePixmap(dpy
, dc
.drawable
);
553 dc
.drawable
= XCreatePixmap(dpy
, root
, sw
, bh
, DefaultDepth(dpy
, screen
));
555 for(m
= mons
; m
; m
= m
->next
)
556 XMoveResizeWindow(dpy
, m
->barwin
, m
->wx
, m
->by
, m
->ww
, bh
);
563 configurerequest(XEvent
*e
) {
566 XConfigureRequestEvent
*ev
= &e
->xconfigurerequest
;
569 if((c
= wintoclient(ev
->window
))) {
570 if(ev
->value_mask
& CWBorderWidth
)
571 c
->bw
= ev
->border_width
;
572 else if(c
->isfloating
|| !selmon
->lt
[selmon
->sellt
]->arrange
) {
574 if(ev
->value_mask
& CWX
)
575 c
->x
= m
->mx
+ ev
->x
;
576 if(ev
->value_mask
& CWY
)
577 c
->y
= m
->my
+ ev
->y
;
578 if(ev
->value_mask
& CWWidth
)
580 if(ev
->value_mask
& CWHeight
)
582 if((c
->x
+ c
->w
) > m
->mx
+ m
->mw
&& c
->isfloating
)
583 c
->x
= m
->mx
+ (m
->mw
/ 2 - c
->w
/ 2); /* center in x direction */
584 if((c
->y
+ c
->h
) > m
->my
+ m
->mh
&& c
->isfloating
)
585 c
->y
= m
->my
+ (m
->mh
/ 2 - c
->h
/ 2); /* center in y direction */
586 if((ev
->value_mask
& (CWX
|CWY
)) && !(ev
->value_mask
& (CWWidth
|CWHeight
)))
589 XMoveResizeWindow(dpy
, c
->win
, c
->x
, c
->y
, c
->w
, c
->h
);
597 wc
.width
= ev
->width
;
598 wc
.height
= ev
->height
;
599 wc
.border_width
= ev
->border_width
;
600 wc
.sibling
= ev
->above
;
601 wc
.stack_mode
= ev
->detail
;
602 XConfigureWindow(dpy
, ev
->window
, ev
->value_mask
, &wc
);
611 if(!(m
= (Monitor
*)calloc(1, sizeof(Monitor
))))
612 die("fatal: could not malloc() %u bytes\n", sizeof(Monitor
));
613 m
->tagset
[0] = m
->tagset
[1] = 1;
615 m
->showbar
= showbar
;
617 m
->lt
[0] = &layouts
[0];
618 m
->lt
[1] = &layouts
[1 % LENGTH(layouts
)];
619 strncpy(m
->ltsymbol
, layouts
[0].symbol
, sizeof m
->ltsymbol
);
624 destroynotify(XEvent
*e
) {
626 XDestroyWindowEvent
*ev
= &e
->xdestroywindow
;
628 if((c
= wintoclient(ev
->window
)))
636 for(tc
= &c
->mon
->clients
; *tc
&& *tc
!= c
; tc
= &(*tc
)->next
);
641 detachstack(Client
*c
) {
644 for(tc
= &c
->mon
->stack
; *tc
&& *tc
!= c
; tc
= &(*tc
)->snext
);
647 if(c
== c
->mon
->sel
) {
648 for(t
= c
->mon
->stack
; t
&& !ISVISIBLE(t
); t
= t
->snext
);
654 die(const char *errstr
, ...) {
657 va_start(ap
, errstr
);
658 vfprintf(stderr
, errstr
, ap
);
668 if(!(m
= selmon
->next
))
673 for(m
= mons
; m
->next
; m
= m
->next
);
675 for(m
= mons
; m
->next
!= selmon
; m
= m
->next
);
681 drawbar(Monitor
*m
) {
683 unsigned int i
, occ
= 0, urg
= 0;
687 for(c
= m
->clients
; c
; c
= c
->next
) {
693 for(i
= 0; i
< LENGTH(tags
); i
++) {
694 dc
.w
= TEXTW(tags
[i
]);
695 col
= m
->tagset
[m
->seltags
] & 1 << i
? dc
.sel
: dc
.norm
;
696 drawtext(tags
[i
], col
, urg
& 1 << i
);
697 drawsquare(m
== selmon
&& selmon
->sel
&& selmon
->sel
->tags
& 1 << i
,
698 occ
& 1 << i
, urg
& 1 << i
, col
);
701 dc
.w
= blw
= TEXTW(m
->ltsymbol
);
702 drawtext(m
->ltsymbol
, dc
.norm
, False
);
705 if(m
== selmon
) { /* status is only drawn on selected monitor */
712 drawtext(stext
, dc
.norm
, False
);
716 if((dc
.w
= dc
.x
- x
) > bh
) {
719 col
= m
== selmon
? dc
.sel
: dc
.norm
;
720 drawtext(m
->sel
->name
, col
, False
);
721 drawsquare(m
->sel
->isfixed
, m
->sel
->isfloating
, False
, col
);
724 drawtext(NULL
, dc
.norm
, False
);
726 XCopyArea(dpy
, dc
.drawable
, m
->barwin
, dc
.gc
, 0, 0, m
->ww
, bh
, 0, 0);
734 for(m
= mons
; m
; m
= m
->next
)
739 drawsquare(Bool filled
, Bool empty
, Bool invert
, unsigned long col
[ColLast
]) {
742 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
744 gcv
.foreground
= col
[invert
? ColBG
: ColFG
];
745 XChangeGC(dpy
, dc
.gc
, GCForeground
, &gcv
);
746 x
= (dc
.font
.ascent
+ dc
.font
.descent
+ 2) / 4;
750 r
.width
= r
.height
= x
+ 1;
751 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
754 r
.width
= r
.height
= x
;
755 XDrawRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
760 drawtext(const char *text
, unsigned long col
[ColLast
], Bool invert
) {
762 int i
, x
, y
, h
, len
, olen
;
763 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
765 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColFG
: ColBG
]);
766 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
770 h
= dc
.font
.ascent
+ dc
.font
.descent
;
771 y
= dc
.y
+ (dc
.h
/ 2) - (h
/ 2) + dc
.font
.ascent
;
773 /* shorten text if necessary */
774 for(len
= MIN(olen
, sizeof buf
); len
&& textnw(text
, len
) > dc
.w
- h
; len
--);
777 memcpy(buf
, text
, len
);
779 for(i
= len
; i
&& i
> len
- 3; buf
[--i
] = '.');
780 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColBG
: ColFG
]);
782 XmbDrawString(dpy
, dc
.drawable
, dc
.font
.set
, dc
.gc
, x
, y
, buf
, len
);
784 XDrawString(dpy
, dc
.drawable
, dc
.gc
, x
, y
, buf
, len
);
788 enternotify(XEvent
*e
) {
791 XCrossingEvent
*ev
= &e
->xcrossing
;
793 if((ev
->mode
!= NotifyNormal
|| ev
->detail
== NotifyInferior
) && ev
->window
!= root
)
795 if((m
= wintomon(ev
->window
)) && m
!= selmon
) {
796 unfocus(selmon
->sel
);
799 if((c
= wintoclient(ev
->window
)))
808 XExposeEvent
*ev
= &e
->xexpose
;
810 if(ev
->count
== 0 && (m
= wintomon(ev
->window
)))
816 if(!c
|| !ISVISIBLE(c
))
817 for(c
= selmon
->stack
; c
&& !ISVISIBLE(c
); c
= c
->snext
);
818 if(c
&& c
== selmon
->sel
) {
819 D
fprintf(stderr
, "focus, optimising focus away\n");
823 unfocus(selmon
->sel
);
831 grabbuttons(c
, True
);
832 XSetWindowBorder(dpy
, c
->win
, dc
.sel
[ColBorder
]);
833 XSetInputFocus(dpy
, c
->win
, RevertToPointerRoot
, CurrentTime
);
836 XSetInputFocus(dpy
, root
, RevertToPointerRoot
, CurrentTime
);
842 focusin(XEvent
*e
) { /* there are some broken focus acquiring clients */
843 XFocusChangeEvent
*ev
= &e
->xfocus
;
845 if(selmon
->sel
&& ev
->window
!= selmon
->sel
->win
)
846 XSetInputFocus(dpy
, selmon
->sel
->win
, RevertToPointerRoot
, CurrentTime
);
850 focusmon(const Arg
*arg
) {
855 if((m
= dirtomon(arg
->i
)) == selmon
)
857 unfocus(selmon
->sel
);
863 focusstack(const Arg
*arg
) {
864 Client
*c
= NULL
, *i
;
869 for(c
= selmon
->sel
->next
; c
&& !ISVISIBLE(c
); c
= c
->next
);
871 for(c
= selmon
->clients
; c
&& !ISVISIBLE(c
); c
= c
->next
);
874 for(i
= selmon
->clients
; i
!= selmon
->sel
; i
= i
->next
)
878 for(; i
; i
= i
->next
)
889 getcolor(const char *colstr
) {
890 Colormap cmap
= DefaultColormap(dpy
, screen
);
893 if(!XAllocNamedColor(dpy
, cmap
, colstr
, &color
, &color
))
894 die("error, cannot allocate color '%s'\n", colstr
);
899 getrootptr(int *x
, int *y
) {
904 return XQueryPointer(dpy
, root
, &dummy
, &dummy
, x
, y
, &di
, &di
, &dui
);
911 unsigned char *p
= NULL
;
912 unsigned long n
, extra
;
915 status
= XGetWindowProperty(dpy
, w
, wmatom
[WMState
], 0L, 2L, False
, wmatom
[WMState
],
916 &real
, &format
, &n
, &extra
, (unsigned char **)&p
);
917 if(status
!= Success
)
926 gettextprop(Window w
, Atom atom
, char *text
, unsigned int size
) {
931 if(!text
|| size
== 0)
934 XGetTextProperty(dpy
, w
, &name
, atom
);
937 if(name
.encoding
== XA_STRING
)
938 strncpy(text
, (char *)name
.value
, size
- 1);
940 if(XmbTextPropertyToTextList(dpy
, &name
, &list
, &n
) >= Success
&& n
> 0 && *list
) {
941 strncpy(text
, *list
, size
- 1);
942 XFreeStringList(list
);
945 text
[size
- 1] = '\0';
951 grabbuttons(Client
*c
, Bool focused
) {
955 unsigned int modifiers
[] = { 0, LockMask
, numlockmask
, numlockmask
|LockMask
};
956 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
958 for(i
= 0; i
< LENGTH(buttons
); i
++)
959 if(buttons
[i
].click
== ClkClientWin
)
960 for(j
= 0; j
< LENGTH(modifiers
); j
++)
961 XGrabButton(dpy
, buttons
[i
].button
,
962 buttons
[i
].mask
| modifiers
[j
],
963 c
->win
, False
, BUTTONMASK
,
964 GrabModeAsync
, GrabModeSync
, None
, None
);
967 XGrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
, False
,
968 BUTTONMASK
, GrabModeAsync
, GrabModeSync
, None
, None
);
977 unsigned int modifiers
[] = { 0, LockMask
, numlockmask
, numlockmask
|LockMask
};
980 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
981 for(i
= 0; i
< LENGTH(keys
); i
++) {
982 if((code
= XKeysymToKeycode(dpy
, keys
[i
].keysym
)))
983 for(j
= 0; j
< LENGTH(modifiers
); j
++)
984 XGrabKey(dpy
, code
, keys
[i
].mod
| modifiers
[j
], root
,
985 True
, GrabModeAsync
, GrabModeAsync
);
991 initfont(const char *fontstr
) {
992 char *def
, **missing
;
996 dc
.font
.set
= XCreateFontSet(dpy
, fontstr
, &missing
, &n
, &def
);
999 fprintf(stderr
, "dwm: missing fontset: %s\n", missing
[n
]);
1000 XFreeStringList(missing
);
1003 XFontSetExtents
*font_extents
;
1004 XFontStruct
**xfonts
;
1007 dc
.font
.ascent
= dc
.font
.descent
= 0;
1008 font_extents
= XExtentsOfFontSet(dc
.font
.set
);
1009 n
= XFontsOfFontSet(dc
.font
.set
, &xfonts
, &font_names
);
1010 for(i
= 0, dc
.font
.ascent
= 0, dc
.font
.descent
= 0; i
< n
; i
++) {
1011 dc
.font
.ascent
= MAX(dc
.font
.ascent
, (*xfonts
)->ascent
);
1012 dc
.font
.descent
= MAX(dc
.font
.descent
,(*xfonts
)->descent
);
1017 if(!(dc
.font
.xfont
= XLoadQueryFont(dpy
, fontstr
))
1018 && !(dc
.font
.xfont
= XLoadQueryFont(dpy
, "fixed")))
1019 die("error, cannot load font: '%s'\n", fontstr
);
1020 dc
.font
.ascent
= dc
.font
.xfont
->ascent
;
1021 dc
.font
.descent
= dc
.font
.xfont
->descent
;
1023 dc
.font
.height
= dc
.font
.ascent
+ dc
.font
.descent
;
1027 isprotodel(Client
*c
) {
1032 if(XGetWMProtocols(dpy
, c
->win
, &protocols
, &n
)) {
1033 for(i
= 0; !ret
&& i
< n
; i
++)
1034 if(protocols
[i
] == wmatom
[WMDelete
])
1043 isuniquegeom(XineramaScreenInfo
*unique
, size_t len
, XineramaScreenInfo
*info
) {
1046 for(i
= 0; i
< len
; i
++)
1047 if(unique
[i
].x_org
== info
->x_org
&& unique
[i
].y_org
== info
->y_org
1048 && unique
[i
].width
== info
->width
&& unique
[i
].height
== info
->height
)
1052 #endif /* XINERAMA */
1055 keypress(XEvent
*e
) {
1061 keysym
= XKeycodeToKeysym(dpy
, (KeyCode
)ev
->keycode
, 0);
1062 for(i
= 0; i
< LENGTH(keys
); i
++)
1063 if(keysym
== keys
[i
].keysym
1064 && CLEANMASK(keys
[i
].mod
) == CLEANMASK(ev
->state
)
1066 keys
[i
].func(&(keys
[i
].arg
));
1070 killclient(const Arg
*arg
) {
1075 if(isprotodel(selmon
->sel
)) {
1076 ev
.type
= ClientMessage
;
1077 ev
.xclient
.window
= selmon
->sel
->win
;
1078 ev
.xclient
.message_type
= wmatom
[WMProtocols
];
1079 ev
.xclient
.format
= 32;
1080 ev
.xclient
.data
.l
[0] = wmatom
[WMDelete
];
1081 ev
.xclient
.data
.l
[1] = CurrentTime
;
1082 XSendEvent(dpy
, selmon
->sel
->win
, False
, NoEventMask
, &ev
);
1086 XSetErrorHandler(xerrordummy
);
1087 XSetCloseDownMode(dpy
, DestroyAll
);
1088 XKillClient(dpy
, selmon
->sel
->win
);
1090 XSetErrorHandler(xerror
);
1096 manage(Window w
, XWindowAttributes
*wa
) {
1098 Client
*c
, *t
= NULL
;
1099 Window trans
= None
;
1102 if(!(c
= malloc(sizeof(Client
))))
1103 die("fatal: could not malloc() %u bytes\n", sizeof(Client
));
1107 if(XGetTransientForHint(dpy
, w
, &trans
))
1108 t
= wintoclient(trans
);
1118 c
->x
= wa
->x
+ c
->mon
->wx
;
1119 c
->y
= wa
->y
+ c
->mon
->wy
;
1122 c
->oldbw
= wa
->border_width
;
1123 if(c
->w
== c
->mon
->mw
&& c
->h
== c
->mon
->mh
) {
1129 if(c
->x
+ WIDTH(c
) > c
->mon
->mx
+ c
->mon
->mw
)
1130 c
->x
= c
->mon
->mx
+ c
->mon
->mw
- WIDTH(c
);
1131 if(c
->y
+ HEIGHT(c
) > c
->mon
->my
+ c
->mon
->mh
)
1132 c
->y
= c
->mon
->my
+ c
->mon
->mh
- HEIGHT(c
);
1133 c
->x
= MAX(c
->x
, c
->mon
->mx
);
1134 /* only fix client y-offset, if the client center might cover the bar */
1135 c
->y
= MAX(c
->y
, ((c
->mon
->by
== 0) && (c
->x
+ (c
->w
/ 2) >= c
->mon
->wx
)
1136 && (c
->x
+ (c
->w
/ 2) < c
->mon
->wx
+ c
->mon
->ww
)) ? bh
: c
->mon
->my
);
1139 wc
.border_width
= c
->bw
;
1140 XConfigureWindow(dpy
, w
, CWBorderWidth
, &wc
);
1141 XSetWindowBorder(dpy
, w
, dc
.norm
[ColBorder
]);
1142 configure(c
); /* propagates border_width, if size doesn't change */
1144 XSelectInput(dpy
, w
, EnterWindowMask
|FocusChangeMask
|PropertyChangeMask
|StructureNotifyMask
);
1145 grabbuttons(c
, False
);
1147 c
->isfloating
= trans
!= None
|| c
->isfixed
;
1149 XRaiseWindow(dpy
, c
->win
);
1152 XMoveResizeWindow(dpy
, c
->win
, c
->x
+ 2 * sw
, c
->y
, c
->w
, c
->h
); /* some windows require this */
1153 XMapWindow(dpy
, c
->win
);
1154 setclientstate(c
, NormalState
);
1159 mappingnotify(XEvent
*e
) {
1160 XMappingEvent
*ev
= &e
->xmapping
;
1162 XRefreshKeyboardMapping(ev
);
1163 if(ev
->request
== MappingKeyboard
)
1168 maprequest(XEvent
*e
) {
1169 static XWindowAttributes wa
;
1170 XMapRequestEvent
*ev
= &e
->xmaprequest
;
1172 if(!XGetWindowAttributes(dpy
, ev
->window
, &wa
))
1174 if(wa
.override_redirect
)
1176 if(!wintoclient(ev
->window
))
1177 manage(ev
->window
, &wa
);
1181 monocle(Monitor
*m
) {
1185 for(c
= m
->clients
; c
; c
= c
->next
)
1188 if(n
> 0) /* override layout symbol */
1189 snprintf(m
->ltsymbol
, sizeof m
->ltsymbol
, "[%d]", n
);
1190 for(c
= nexttiled(m
->clients
); c
; c
= nexttiled(c
->next
))
1191 resize(c
, m
->wx
, m
->wy
, m
->ww
- 2 * c
->bw
, m
->wh
- 2 * c
->bw
, False
);
1195 movemouse(const Arg
*arg
) {
1196 int x
, y
, ocx
, ocy
, nx
, ny
;
1201 if(!(c
= selmon
->sel
))
1206 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1207 None
, cursor
[CurMove
], CurrentTime
) != GrabSuccess
)
1209 if(!getrootptr(&x
, &y
))
1212 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1214 case ConfigureRequest
:
1217 handler
[ev
.type
](&ev
);
1220 nx
= ocx
+ (ev
.xmotion
.x
- x
);
1221 ny
= ocy
+ (ev
.xmotion
.y
- y
);
1222 if(snap
&& nx
>= selmon
->wx
&& nx
<= selmon
->wx
+ selmon
->ww
1223 && ny
>= selmon
->wy
&& ny
<= selmon
->wy
+ selmon
->wh
) {
1224 if(abs(selmon
->wx
- nx
) < snap
)
1226 else if(abs((selmon
->wx
+ selmon
->ww
) - (nx
+ WIDTH(c
))) < snap
)
1227 nx
= selmon
->wx
+ selmon
->ww
- WIDTH(c
);
1228 if(abs(selmon
->wy
- ny
) < snap
)
1230 else if(abs((selmon
->wy
+ selmon
->wh
) - (ny
+ HEIGHT(c
))) < snap
)
1231 ny
= selmon
->wy
+ selmon
->wh
- HEIGHT(c
);
1232 if(!c
->isfloating
&& selmon
->lt
[selmon
->sellt
]->arrange
1233 && (abs(nx
- c
->x
) > snap
|| abs(ny
- c
->y
) > snap
))
1234 togglefloating(NULL
);
1236 if(!selmon
->lt
[selmon
->sellt
]->arrange
|| c
->isfloating
)
1237 resize(c
, nx
, ny
, c
->w
, c
->h
, True
);
1240 } while(ev
.type
!= ButtonRelease
);
1241 XUngrabPointer(dpy
, CurrentTime
);
1242 if((m
= ptrtomon(c
->x
+ c
->w
/ 2, c
->y
+ c
->h
/ 2)) != selmon
) {
1250 nexttiled(Client
*c
) {
1251 for(; c
&& (c
->isfloating
|| !ISVISIBLE(c
)); c
= c
->next
);
1256 ptrtomon(int x
, int y
) {
1259 for(m
= mons
; m
; m
= m
->next
)
1260 if(INRECT(x
, y
, m
->wx
, m
->wy
, m
->ww
, m
->wh
))
1266 propertynotify(XEvent
*e
) {
1269 XPropertyEvent
*ev
= &e
->xproperty
;
1271 if((ev
->window
== root
) && (ev
->atom
== XA_WM_NAME
))
1273 else if(ev
->state
== PropertyDelete
)
1274 return; /* ignore */
1275 else if((c
= wintoclient(ev
->window
))) {
1278 case XA_WM_TRANSIENT_FOR
:
1279 XGetTransientForHint(dpy
, c
->win
, &trans
);
1280 if(!c
->isfloating
&& (c
->isfloating
= (wintoclient(trans
) != NULL
)))
1283 case XA_WM_NORMAL_HINTS
:
1291 if(ev
->atom
== XA_WM_NAME
|| ev
->atom
== netatom
[NetWMName
]) {
1293 if(c
== c
->mon
->sel
)
1300 quit(const Arg
*arg
) {
1305 resize(Client
*c
, int x
, int y
, int w
, int h
, Bool interact
) {
1308 if(applysizehints(c
, &x
, &y
, &w
, &h
, interact
)) {
1311 c
->w
= wc
.width
= w
;
1312 c
->h
= wc
.height
= h
;
1313 wc
.border_width
= c
->bw
;
1314 XConfigureWindow(dpy
, c
->win
, CWX
|CWY
|CWWidth
|CWHeight
|CWBorderWidth
, &wc
);
1321 resizemouse(const Arg
*arg
) {
1328 if(!(c
= selmon
->sel
))
1333 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1334 None
, cursor
[CurResize
], CurrentTime
) != GrabSuccess
)
1336 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1338 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1340 case ConfigureRequest
:
1343 handler
[ev
.type
](&ev
);
1346 nw
= MAX(ev
.xmotion
.x
- ocx
- 2 * c
->bw
+ 1, 1);
1347 nh
= MAX(ev
.xmotion
.y
- ocy
- 2 * c
->bw
+ 1, 1);
1348 if(snap
&& nw
>= selmon
->wx
&& nw
<= selmon
->wx
+ selmon
->ww
1349 && nh
>= selmon
->wy
&& nh
<= selmon
->wy
+ selmon
->wh
)
1351 if(!c
->isfloating
&& selmon
->lt
[selmon
->sellt
]->arrange
1352 && (abs(nw
- c
->w
) > snap
|| abs(nh
- c
->h
) > snap
))
1353 togglefloating(NULL
);
1355 if(!selmon
->lt
[selmon
->sellt
]->arrange
|| c
->isfloating
)
1356 resize(c
, c
->x
, c
->y
, nw
, nh
, True
);
1359 } while(ev
.type
!= ButtonRelease
);
1360 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1361 XUngrabPointer(dpy
, CurrentTime
);
1362 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1363 if((m
= ptrtomon(c
->x
+ c
->w
/ 2, c
->y
+ c
->h
/ 2)) != selmon
) {
1371 restack(Monitor
*m
) {
1379 if(m
->sel
->isfloating
|| !m
->lt
[m
->sellt
]->arrange
)
1380 XRaiseWindow(dpy
, m
->sel
->win
);
1381 if(m
->lt
[m
->sellt
]->arrange
) {
1382 wc
.stack_mode
= Below
;
1383 wc
.sibling
= m
->barwin
;
1384 for(c
= m
->stack
; c
; c
= c
->snext
)
1385 if(!c
->isfloating
&& ISVISIBLE(c
)) {
1386 XConfigureWindow(dpy
, c
->win
, CWSibling
|CWStackMode
, &wc
);
1387 wc
.sibling
= c
->win
;
1391 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1397 static const char *evname
[LASTEvent
] = {
1398 [ButtonPress
] = "buttonpress",
1399 [ConfigureRequest
] = "configurerequest",
1400 [ConfigureNotify
] = "configurenotify",
1401 [DestroyNotify
] = "destroynotify",
1402 [EnterNotify
] = "enternotify",
1403 [Expose
] = "expose",
1404 [FocusIn
] = "focusin",
1405 [KeyPress
] = "keypress",
1406 [MappingNotify
] = "mappingnotify",
1407 [MapRequest
] = "maprequest",
1408 [PropertyNotify
] = "propertynotify",
1409 [UnmapNotify
] = "unmapnotify"
1411 /* main event loop */
1413 while(running
&& !XNextEvent(dpy
, &ev
)) {
1414 D
fprintf(stderr
, "run event %s %ld\n", evname
[ev
.type
], ev
.xany
.window
);
1415 if(handler
[ev
.type
])
1416 handler
[ev
.type
](&ev
); /* call handler */
1422 unsigned int i
, num
;
1423 Window d1
, d2
, *wins
= NULL
;
1424 XWindowAttributes wa
;
1426 if(XQueryTree(dpy
, root
, &d1
, &d2
, &wins
, &num
)) {
1427 for(i
= 0; i
< num
; i
++) {
1428 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
)
1429 || wa
.override_redirect
|| XGetTransientForHint(dpy
, wins
[i
], &d1
))
1431 if(wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
)
1432 manage(wins
[i
], &wa
);
1434 for(i
= 0; i
< num
; i
++) { /* now the transients */
1435 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
))
1437 if(XGetTransientForHint(dpy
, wins
[i
], &d1
)
1438 && (wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
))
1439 manage(wins
[i
], &wa
);
1447 sendmon(Client
*c
, Monitor
*m
) {
1454 c
->tags
= m
->tagset
[m
->seltags
]; /* assign tags of target monitor */
1462 setclientstate(Client
*c
, long state
) {
1463 long data
[] = { state
, None
};
1465 XChangeProperty(dpy
, c
->win
, wmatom
[WMState
], wmatom
[WMState
], 32,
1466 PropModeReplace
, (unsigned char *)data
, 2);
1470 setlayout(const Arg
*arg
) {
1471 if(!arg
|| !arg
->v
|| arg
->v
!= selmon
->lt
[selmon
->sellt
])
1474 selmon
->lt
[selmon
->sellt
] = (Layout
*)arg
->v
;
1475 strncpy(selmon
->ltsymbol
, selmon
->lt
[selmon
->sellt
]->symbol
, sizeof selmon
->ltsymbol
);
1482 /* arg > 1.0 will set mfact absolutly */
1484 setmfact(const Arg
*arg
) {
1487 if(!arg
|| !selmon
->lt
[selmon
->sellt
]->arrange
)
1489 f
= arg
->f
< 1.0 ? arg
->f
+ selmon
->mfact
: arg
->f
- 1.0;
1490 if(f
< 0.1 || f
> 0.9)
1498 XSetWindowAttributes wa
;
1500 /* clean up any zombies immediately */
1504 screen
= DefaultScreen(dpy
);
1505 root
= RootWindow(dpy
, screen
);
1507 sw
= DisplayWidth(dpy
, screen
);
1508 sh
= DisplayHeight(dpy
, screen
);
1509 bh
= dc
.h
= dc
.font
.height
+ 2;
1512 wmatom
[WMProtocols
] = XInternAtom(dpy
, "WM_PROTOCOLS", False
);
1513 wmatom
[WMDelete
] = XInternAtom(dpy
, "WM_DELETE_WINDOW", False
);
1514 wmatom
[WMState
] = XInternAtom(dpy
, "WM_STATE", False
);
1515 netatom
[NetSupported
] = XInternAtom(dpy
, "_NET_SUPPORTED", False
);
1516 netatom
[NetWMName
] = XInternAtom(dpy
, "_NET_WM_NAME", False
);
1518 cursor
[CurNormal
] = XCreateFontCursor(dpy
, XC_left_ptr
);
1519 cursor
[CurResize
] = XCreateFontCursor(dpy
, XC_sizing
);
1520 cursor
[CurMove
] = XCreateFontCursor(dpy
, XC_fleur
);
1521 /* init appearance */
1522 dc
.norm
[ColBorder
] = getcolor(normbordercolor
);
1523 dc
.norm
[ColBG
] = getcolor(normbgcolor
);
1524 dc
.norm
[ColFG
] = getcolor(normfgcolor
);
1525 dc
.sel
[ColBorder
] = getcolor(selbordercolor
);
1526 dc
.sel
[ColBG
] = getcolor(selbgcolor
);
1527 dc
.sel
[ColFG
] = getcolor(selfgcolor
);
1528 dc
.drawable
= XCreatePixmap(dpy
, root
, DisplayWidth(dpy
, screen
), bh
, DefaultDepth(dpy
, screen
));
1529 dc
.gc
= XCreateGC(dpy
, root
, 0, NULL
);
1530 XSetLineAttributes(dpy
, dc
.gc
, 1, LineSolid
, CapButt
, JoinMiter
);
1532 XSetFont(dpy
, dc
.gc
, dc
.font
.xfont
->fid
);
1536 /* EWMH support per view */
1537 XChangeProperty(dpy
, root
, netatom
[NetSupported
], XA_ATOM
, 32,
1538 PropModeReplace
, (unsigned char *) netatom
, NetLast
);
1539 /* select for events */
1540 wa
.cursor
= cursor
[CurNormal
];
1541 wa
.event_mask
= SubstructureRedirectMask
|SubstructureNotifyMask
|ButtonPressMask
1542 |EnterWindowMask
|LeaveWindowMask
|StructureNotifyMask
1543 |PropertyChangeMask
;
1544 XChangeWindowAttributes(dpy
, root
, CWEventMask
|CWCursor
, &wa
);
1545 XSelectInput(dpy
, root
, wa
.event_mask
);
1550 showhide(Client
*c
) {
1553 if(ISVISIBLE(c
)) { /* show clients top down */
1554 XMoveWindow(dpy
, c
->win
, c
->x
, c
->y
);
1555 if(!c
->mon
->lt
[c
->mon
->sellt
]->arrange
|| c
->isfloating
)
1556 resize(c
, c
->x
, c
->y
, c
->w
, c
->h
, False
);
1559 else { /* hide clients bottom up */
1561 XMoveWindow(dpy
, c
->win
, c
->x
+ 2 * sw
, c
->y
);
1567 sigchld(int unused
) {
1568 if(signal(SIGCHLD
, sigchld
) == SIG_ERR
)
1569 die("Can't install SIGCHLD handler");
1570 while(0 < waitpid(-1, NULL
, WNOHANG
));
1574 spawn(const Arg
*arg
) {
1577 close(ConnectionNumber(dpy
));
1579 execvp(((char **)arg
->v
)[0], (char **)arg
->v
);
1580 fprintf(stderr
, "dwm: execvp %s", ((char **)arg
->v
)[0]);
1587 tag(const Arg
*arg
) {
1588 if(selmon
->sel
&& arg
->ui
& TAGMASK
) {
1589 selmon
->sel
->tags
= arg
->ui
& TAGMASK
;
1595 tagmon(const Arg
*arg
) {
1596 if(!selmon
->sel
|| !mons
->next
)
1598 sendmon(selmon
->sel
, dirtomon(arg
->i
));
1602 textnw(const char *text
, unsigned int len
) {
1606 XmbTextExtents(dc
.font
.set
, text
, len
, NULL
, &r
);
1609 return XTextWidth(dc
.font
.xfont
, text
, len
);
1618 for(n
= 0, c
= nexttiled(m
->clients
); c
; c
= nexttiled(c
->next
), n
++);
1622 c
= nexttiled(m
->clients
);
1623 mw
= m
->mfact
* m
->ww
;
1624 resize(c
, m
->wx
, m
->wy
, (n
== 1 ? m
->ww
: mw
) - 2 * c
->bw
, m
->wh
- 2 * c
->bw
, False
);
1628 x
= (m
->wx
+ mw
> c
->x
+ c
->w
) ? c
->x
+ c
->w
+ 2 * c
->bw
: m
->wx
+ mw
;
1630 w
= (m
->wx
+ mw
> c
->x
+ c
->w
) ? m
->wx
+ m
->ww
- x
: m
->ww
- mw
;
1634 for(i
= 0, c
= nexttiled(c
->next
); c
; c
= nexttiled(c
->next
), i
++) {
1635 resize(c
, x
, y
, w
- 2 * c
->bw
, /* remainder */ ((i
+ 1 == n
)
1636 ? m
->wy
+ m
->wh
- y
- 2 * c
->bw
: h
- 2 * c
->bw
), False
);
1638 y
= c
->y
+ HEIGHT(c
);
1643 togglebar(const Arg
*arg
) {
1644 selmon
->showbar
= !selmon
->showbar
;
1645 updatebarpos(selmon
);
1646 XMoveResizeWindow(dpy
, selmon
->barwin
, selmon
->wx
, selmon
->by
, selmon
->ww
, bh
);
1651 togglefloating(const Arg
*arg
) {
1654 selmon
->sel
->isfloating
= !selmon
->sel
->isfloating
|| selmon
->sel
->isfixed
;
1655 if(selmon
->sel
->isfloating
)
1656 resize(selmon
->sel
, selmon
->sel
->x
, selmon
->sel
->y
,
1657 selmon
->sel
->w
, selmon
->sel
->h
, False
);
1662 toggletag(const Arg
*arg
) {
1663 unsigned int newtags
;
1667 newtags
= selmon
->sel
->tags
^ (arg
->ui
& TAGMASK
);
1669 selmon
->sel
->tags
= newtags
;
1675 toggleview(const Arg
*arg
) {
1676 unsigned int newtagset
= selmon
->tagset
[selmon
->seltags
] ^ (arg
->ui
& TAGMASK
);
1679 selmon
->tagset
[selmon
->seltags
] = newtagset
;
1685 unfocus(Client
*c
) {
1688 grabbuttons(c
, False
);
1689 XSetWindowBorder(dpy
, c
->win
, dc
.norm
[ColBorder
]);
1690 XSetInputFocus(dpy
, root
, RevertToPointerRoot
, CurrentTime
);
1694 unmanage(Client
*c
, Bool destroyed
) {
1695 Monitor
*m
= c
->mon
;
1698 /* The server grab construct avoids race conditions. */
1702 wc
.border_width
= c
->oldbw
;
1704 XSetErrorHandler(xerrordummy
);
1705 XConfigureWindow(dpy
, c
->win
, CWBorderWidth
, &wc
); /* restore border */
1706 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
1707 setclientstate(c
, WithdrawnState
);
1709 XSetErrorHandler(xerror
);
1718 unmapnotify(XEvent
*e
) {
1720 XUnmapEvent
*ev
= &e
->xunmap
;
1722 if((c
= wintoclient(ev
->window
)))
1729 XSetWindowAttributes wa
;
1731 wa
.override_redirect
= True
;
1732 wa
.background_pixmap
= ParentRelative
;
1733 wa
.event_mask
= ButtonPressMask
|ExposureMask
;
1734 for(m
= mons
; m
; m
= m
->next
) {
1735 m
->barwin
= XCreateWindow(dpy
, root
, m
->wx
, m
->by
, m
->ww
, bh
, 0, DefaultDepth(dpy
, screen
),
1736 CopyFromParent
, DefaultVisual(dpy
, screen
),
1737 CWOverrideRedirect
|CWBackPixmap
|CWEventMask
, &wa
);
1738 XDefineCursor(dpy
, m
->barwin
, cursor
[CurNormal
]);
1739 XMapRaised(dpy
, m
->barwin
);
1744 updatebarpos(Monitor
*m
) {
1749 m
->by
= m
->topbar
? m
->wy
: m
->wy
+ m
->wh
;
1750 m
->wy
= m
->topbar
? m
->wy
+ bh
: m
->wy
;
1761 if(XineramaIsActive(dpy
)) {
1765 XineramaScreenInfo
*info
= XineramaQueryScreens(dpy
, &nn
);
1766 XineramaScreenInfo
*unique
= NULL
;
1768 info
= XineramaQueryScreens(dpy
, &nn
);
1769 for(n
= 0, m
= mons
; m
; m
= m
->next
, n
++);
1770 /* only consider unique geometries as separate screens */
1771 if(!(unique
= (XineramaScreenInfo
*)malloc(sizeof(XineramaScreenInfo
) * nn
)))
1772 die("fatal: could not malloc() %u bytes\n", sizeof(XineramaScreenInfo
) * nn
);
1773 for(i
= 0, j
= 0; i
< nn
; i
++)
1774 if(isuniquegeom(unique
, j
, &info
[i
]))
1775 memcpy(&unique
[j
++], &info
[i
], sizeof(XineramaScreenInfo
));
1779 for(i
= 0; i
< (nn
- n
); i
++) { /* new monitors available */
1780 for(m
= mons
; m
&& m
->next
; m
= m
->next
);
1782 m
->next
= createmon();
1786 for(i
= 0, m
= mons
; i
< nn
&& m
; m
= m
->next
, i
++)
1788 || (unique
[i
].x_org
!= m
->mx
|| unique
[i
].y_org
!= m
->my
1789 || unique
[i
].width
!= m
->mw
|| unique
[i
].height
!= m
->mh
))
1793 m
->mx
= m
->wx
= unique
[i
].x_org
;
1794 m
->my
= m
->wy
= unique
[i
].y_org
;
1795 m
->mw
= m
->ww
= unique
[i
].width
;
1796 m
->mh
= m
->wh
= unique
[i
].height
;
1800 else { /* less monitors available nn < n */
1801 for(i
= nn
; i
< n
; i
++) {
1802 for(m
= mons
; m
&& m
->next
; m
= m
->next
);
1806 m
->clients
= c
->next
;
1820 #endif /* XINERAMA */
1821 /* default monitor setup */
1825 if(mons
->mw
!= sw
|| mons
->mh
!= sh
) {
1827 mons
->mw
= mons
->ww
= sw
;
1828 mons
->mh
= mons
->wh
= sh
;
1834 selmon
= wintomon(root
);
1840 updatenumlockmask(void) {
1842 XModifierKeymap
*modmap
;
1845 modmap
= XGetModifierMapping(dpy
);
1846 for(i
= 0; i
< 8; i
++)
1847 for(j
= 0; j
< modmap
->max_keypermod
; j
++)
1848 if(modmap
->modifiermap
[i
* modmap
->max_keypermod
+ j
]
1849 == XKeysymToKeycode(dpy
, XK_Num_Lock
))
1850 numlockmask
= (1 << i
);
1851 XFreeModifiermap(modmap
);
1855 updatesizehints(Client
*c
) {
1859 if(!XGetWMNormalHints(dpy
, c
->win
, &size
, &msize
))
1860 /* size is uninitialized, ensure that size.flags aren't used */
1862 if(size
.flags
& PBaseSize
) {
1863 c
->basew
= size
.base_width
;
1864 c
->baseh
= size
.base_height
;
1866 else if(size
.flags
& PMinSize
) {
1867 c
->basew
= size
.min_width
;
1868 c
->baseh
= size
.min_height
;
1871 c
->basew
= c
->baseh
= 0;
1872 if(size
.flags
& PResizeInc
) {
1873 c
->incw
= size
.width_inc
;
1874 c
->inch
= size
.height_inc
;
1877 c
->incw
= c
->inch
= 0;
1878 if(size
.flags
& PMaxSize
) {
1879 c
->maxw
= size
.max_width
;
1880 c
->maxh
= size
.max_height
;
1883 c
->maxw
= c
->maxh
= 0;
1884 if(size
.flags
& PMinSize
) {
1885 c
->minw
= size
.min_width
;
1886 c
->minh
= size
.min_height
;
1888 else if(size
.flags
& PBaseSize
) {
1889 c
->minw
= size
.base_width
;
1890 c
->minh
= size
.base_height
;
1893 c
->minw
= c
->minh
= 0;
1894 if(size
.flags
& PAspect
) {
1895 c
->mina
= (float)size
.min_aspect
.y
/ size
.min_aspect
.x
;
1896 c
->maxa
= (float)size
.max_aspect
.x
/ size
.max_aspect
.y
;
1899 c
->maxa
= c
->mina
= 0.0;
1900 c
->isfixed
= (c
->maxw
&& c
->minw
&& c
->maxh
&& c
->minh
1901 && c
->maxw
== c
->minw
&& c
->maxh
== c
->minh
);
1905 updatetitle(Client
*c
) {
1906 if(!gettextprop(c
->win
, netatom
[NetWMName
], c
->name
, sizeof c
->name
))
1907 gettextprop(c
->win
, XA_WM_NAME
, c
->name
, sizeof c
->name
);
1908 if(c
->name
[0] == '\0') /* hack to mark broken clients */
1909 strcpy(c
->name
, broken
);
1913 updatestatus(void) {
1914 if(!gettextprop(root
, XA_WM_NAME
, stext
, sizeof(stext
)))
1915 strcpy(stext
, "dwm-"VERSION
);
1920 updatewmhints(Client
*c
) {
1923 if((wmh
= XGetWMHints(dpy
, c
->win
))) {
1924 if(c
== selmon
->sel
&& wmh
->flags
& XUrgencyHint
) {
1925 wmh
->flags
&= ~XUrgencyHint
;
1926 XSetWMHints(dpy
, c
->win
, wmh
);
1929 c
->isurgent
= (wmh
->flags
& XUrgencyHint
) ? True
: False
;
1935 view(const Arg
*arg
) {
1936 if((arg
->ui
& TAGMASK
) == selmon
->tagset
[selmon
->seltags
])
1938 selmon
->seltags
^= 1; /* toggle sel tagset */
1939 if(arg
->ui
& TAGMASK
)
1940 selmon
->tagset
[selmon
->seltags
] = arg
->ui
& TAGMASK
;
1945 wintoclient(Window w
) {
1949 for(m
= mons
; m
; m
= m
->next
)
1950 for(c
= m
->clients
; c
; c
= c
->next
)
1957 wintomon(Window w
) {
1962 if(w
== root
&& getrootptr(&x
, &y
))
1963 return ptrtomon(x
, y
);
1964 for(m
= mons
; m
; m
= m
->next
)
1967 if((c
= wintoclient(w
)))
1972 /* There's no way to check accesses to destroyed windows, thus those cases are
1973 * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
1974 * default error handler, which may call exit. */
1976 xerror(Display
*dpy
, XErrorEvent
*ee
) {
1977 if(ee
->error_code
== BadWindow
1978 || (ee
->request_code
== X_SetInputFocus
&& ee
->error_code
== BadMatch
)
1979 || (ee
->request_code
== X_PolyText8
&& ee
->error_code
== BadDrawable
)
1980 || (ee
->request_code
== X_PolyFillRectangle
&& ee
->error_code
== BadDrawable
)
1981 || (ee
->request_code
== X_PolySegment
&& ee
->error_code
== BadDrawable
)
1982 || (ee
->request_code
== X_ConfigureWindow
&& ee
->error_code
== BadMatch
)
1983 || (ee
->request_code
== X_GrabButton
&& ee
->error_code
== BadAccess
)
1984 || (ee
->request_code
== X_GrabKey
&& ee
->error_code
== BadAccess
)
1985 || (ee
->request_code
== X_CopyArea
&& ee
->error_code
== BadDrawable
))
1987 fprintf(stderr
, "dwm: fatal error: request code=%d, error code=%d\n",
1988 ee
->request_code
, ee
->error_code
);
1989 return xerrorxlib(dpy
, ee
); /* may call exit */
1993 xerrordummy(Display
*dpy
, XErrorEvent
*ee
) {
1997 /* Startup Error handler to check if another window manager
1998 * is already running. */
2000 xerrorstart(Display
*dpy
, XErrorEvent
*ee
) {
2006 zoom(const Arg
*arg
) {
2007 Client
*c
= selmon
->sel
;
2009 if(!selmon
->lt
[selmon
->sellt
]->arrange
2010 || selmon
->lt
[selmon
->sellt
]->arrange
== monocle
2011 || (selmon
->sel
&& selmon
->sel
->isfloating
))
2013 if(c
== nexttiled(selmon
->clients
))
2014 if(!c
|| !(c
= nexttiled(c
->next
)))
2023 main(int argc
, char *argv
[]) {
2024 if(argc
== 2 && !strcmp("-v", argv
[1]))
2025 die("dwm-"VERSION
", © 2006-2009 dwm engineers, see LICENSE for details\n");
2027 die("usage: dwm [-v]\n");
2028 if(!setlocale(LC_CTYPE
, "") || !XSupportsLocale())
2029 fputs("warning: no locale support\n", stderr
);
2030 if(!(dpy
= XOpenDisplay(NULL
)))
2031 die("dwm: cannot open display\n");