Xinqi Bao's Git
4153f416e979087c31d8bf7fb50c28c434d42f68
1 /* See LICENSE file for copyright and license details.
3 * dynamic window manager is designed like any other X client as well. It is
4 * driven through handling X events. In contrast to other X clients, a window
5 * manager selects for SubstructureRedirectMask on the root window, to receive
6 * events about window (dis-)appearance. Only one X connection at a time is
7 * allowed to select for this event mask.
9 * Calls to fetch an X event from the event queue are blocking. Due reading
10 * status text from standard input, a select()-driven main loop has been
11 * implemented which selects for reads on the X connection and STDIN_FILENO to
12 * handle all data smoothly. The event handlers of dwm are organized in an
13 * array which is accessed whenever a new event has been fetched. This allows
14 * event dispatching in O(1) time.
16 * Each child of the root window is called a client, except windows which have
17 * set the override_redirect flag. Clients are organized in a global
18 * doubly-linked client list, the focus history is remembered through a global
19 * stack list. Each client contains a bit array to indicate the tags of a
22 * Keys and tagging rules are organized as arrays and defined in config.h.
24 * To understand everything else, start reading main().
33 #include <sys/select.h>
34 #include <sys/types.h>
36 #include <X11/cursorfont.h>
37 #include <X11/keysym.h>
38 #include <X11/Xatom.h>
40 #include <X11/Xproto.h>
41 #include <X11/Xutil.h>
43 #include <X11/extensions/Xinerama.h>
47 #define MAX(a, b) ((a) > (b) ? (a) : (b))
48 #define MIN(a, b) ((a) < (b) ? (a) : (b))
49 #define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
50 #define CLEANMASK(mask) (mask & ~(numlockmask|LockMask))
51 #define LENGTH(x) (sizeof x / sizeof x[0])
53 #define MOUSEMASK (BUTTONMASK|PointerMotionMask)
54 #define TAGMASK ((int)((1LL << LENGTH(tags)) - 1))
55 #define TEXTW(x) (textnw(x, strlen(x)) + dc.font.height)
58 enum { CurNormal
, CurResize
, CurMove
, CurLast
}; /* cursor */
59 enum { ColBorder
, ColFG
, ColBG
, ColLast
}; /* color */
60 enum { NetSupported
, NetWMName
, NetLast
}; /* EWMH atoms */
61 enum { WMProtocols
, WMDelete
, WMName
, WMState
, WMLast
};/* default atoms */
62 enum { ClkLtSymbol
= -1, ClkStatusText
= -2, ClkWinTitle
= -3,
63 ClkClientWin
= -4, ClkRootWin
= -5, ClkLast
= -6};/* clicks */
66 typedef unsigned int uint
;
67 typedef unsigned long ulong
;
80 void (*func
)(const Arg
*arg
);
84 typedef struct Client Client
;
88 int basew
, baseh
, incw
, inch
, maxw
, maxh
, minw
, minh
;
91 Bool isbanned
, isfixed
, isfloating
, ismoved
, isurgent
;
111 } DC
; /* draw context */
116 void (*func
)(const Arg
*);
122 void (*arrange
)(void);
127 const char *instance
;
133 /* function declarations */
134 static void applyrules(Client
*c
);
135 static void arrange(void);
136 static void attach(Client
*c
);
137 static void attachstack(Client
*c
);
138 static void buttonpress(XEvent
*e
);
139 static void checkotherwm(void);
140 static void cleanup(void);
141 static void configure(Client
*c
);
142 static void configurenotify(XEvent
*e
);
143 static void configurerequest(XEvent
*e
);
144 static void destroynotify(XEvent
*e
);
145 static void detach(Client
*c
);
146 static void detachstack(Client
*c
);
147 static void drawbar(void);
148 static void drawsquare(Bool filled
, Bool empty
, Bool invert
, ulong col
[ColLast
]);
149 static void drawtext(const char *text
, ulong col
[ColLast
], Bool invert
);
150 static void enternotify(XEvent
*e
);
151 static void eprint(const char *errstr
, ...);
152 static void expose(XEvent
*e
);
153 static void focus(Client
*c
);
154 static void focusin(XEvent
*e
);
155 static void focusstack(const Arg
*arg
);
156 static Client
*getclient(Window w
);
157 static ulong
getcolor(const char *colstr
);
158 static long getstate(Window w
);
159 static Bool
gettextprop(Window w
, Atom atom
, char *text
, uint size
);
160 static void grabbuttons(Client
*c
, Bool focused
);
161 static void grabkeys(void);
162 static void initfont(const char *fontstr
);
163 static Bool
isoccupied(uint t
);
164 static Bool
isprotodel(Client
*c
);
165 static Bool
isurgent(uint t
);
166 static void keypress(XEvent
*e
);
167 static void killclient(const Arg
*arg
);
168 static void manage(Window w
, XWindowAttributes
*wa
);
169 static void mappingnotify(XEvent
*e
);
170 static void maprequest(XEvent
*e
);
171 static void movemouse(const Arg
*arg
);
172 static Client
*nexttiled(Client
*c
);
173 static void propertynotify(XEvent
*e
);
174 static void quit(const Arg
*arg
);
175 static void resize(Client
*c
, int x
, int y
, int w
, int h
, Bool sizehints
);
176 static void resizemouse(const Arg
*arg
);
177 static void restack(void);
178 static void run(void);
179 static void scan(void);
180 static void setclientstate(Client
*c
, long state
);
181 static void setmfact(const Arg
*arg
);
182 static void setup(void);
183 static void spawn(const Arg
*arg
);
184 static void tag(const Arg
*arg
);
185 static int textnw(const char *text
, uint len
);
186 static void tile(void);
187 static void togglebar(const Arg
*arg
);
188 static void togglefloating(const Arg
*arg
);
189 static void togglelayout(const Arg
*arg
);
190 static void togglemax(const Arg
*arg
);
191 static void toggletag(const Arg
*arg
);
192 static void toggleview(const Arg
*arg
);
193 static void unmanage(Client
*c
);
194 static void unmapnotify(XEvent
*e
);
195 static void updatebar(void);
196 static void updategeom(void);
197 static void updatesizehints(Client
*c
);
198 static void updatetitle(Client
*c
);
199 static void updatewmhints(Client
*c
);
200 static void view(const Arg
*arg
);
201 static int xerror(Display
*dpy
, XErrorEvent
*ee
);
202 static int xerrordummy(Display
*dpy
, XErrorEvent
*ee
);
203 static int xerrorstart(Display
*dpy
, XErrorEvent
*ee
);
204 static void zoom(const Arg
*arg
);
207 static char stext
[256];
208 static int screen
, sx
, sy
, sw
, sh
;
209 static int by
, bh
, blw
, wx
, wy
, ww
, wh
;
210 static uint seltags
= 0;
211 static int (*xerrorxlib
)(Display
*, XErrorEvent
*);
212 static uint numlockmask
= 0;
213 static void (*handler
[LASTEvent
]) (XEvent
*) = {
214 [ButtonPress
] = buttonpress
,
215 [ConfigureRequest
] = configurerequest
,
216 [ConfigureNotify
] = configurenotify
,
217 [DestroyNotify
] = destroynotify
,
218 [EnterNotify
] = enternotify
,
221 [KeyPress
] = keypress
,
222 [MappingNotify
] = mappingnotify
,
223 [MapRequest
] = maprequest
,
224 [PropertyNotify
] = propertynotify
,
225 [UnmapNotify
] = unmapnotify
227 static Atom wmatom
[WMLast
], netatom
[NetLast
];
228 static Bool ismax
= False
;
229 static Bool otherwm
, readin
;
230 static Bool running
= True
;
231 static uint tagset
[] = {1, 1}; /* after start, first tag is selected */
232 static Client
*clients
= NULL
;
233 static Client
*sel
= NULL
;
234 static Client
*stack
= NULL
;
235 static Cursor cursor
[CurLast
];
238 static Layout
*lt
= NULL
;
239 static Window root
, barwin
;
240 /* configuration, allows nested code to access above variables */
243 /* compile-time check if all tags fit into an uint bit array. */
244 struct NumTags
{ char limitexceeded
[sizeof(uint
) * 8 < LENGTH(tags
) ? -1 : 1]; };
246 /* function implementations */
248 applyrules(Client
*c
) {
251 XClassHint ch
= { 0 };
254 XGetClassHint(dpy
, c
->win
, &ch
);
255 for(i
= 0; i
< LENGTH(rules
); i
++) {
257 if((!r
->title
|| strstr(c
->name
, r
->title
))
258 && (!r
->class || (ch
.res_class
&& strstr(ch
.res_class
, r
->class)))
259 && (!r
->instance
|| (ch
.res_name
&& strstr(ch
.res_name
, r
->instance
)))) {
260 c
->isfloating
= r
->isfloating
;
261 c
->tags
|= r
->tags
& TAGMASK
;
269 c
->tags
= tagset
[seltags
];
276 for(c
= clients
; c
; c
= c
->next
)
277 if(c
->tags
& tagset
[seltags
]) { /* is visible */
278 if(ismax
&& !c
->isfixed
) {
279 XMoveResizeWindow(dpy
, c
->win
, wx
, wy
, ww
- 2 * c
->bw
, wh
- 2 * c
->bw
);
282 else if(!lt
->arrange
|| c
->isfloating
)
283 resize(c
, c
->x
, c
->y
, c
->w
, c
->h
, True
);
286 else if(!c
->isbanned
) {
287 XMoveWindow(dpy
, c
->win
, c
->x
+ 2 * sw
, c
->y
);
288 c
->isbanned
= c
->ismoved
= True
;
292 if(lt
->arrange
&& !ismax
)
304 attachstack(Client
*c
) {
310 buttonpress(XEvent
*e
) {
313 XButtonPressedEvent
*ev
= &e
->xbutton
;
316 if(ev
->window
== barwin
) {
318 for(i
= 0; i
< LENGTH(tags
) && ev
->x
>= x
; i
++) {
320 if(i
< LENGTH(tags
) || ev
->x
<= x
)
322 else if(ev
->x
< x
+ blw
)
324 else if(ev
->x
> wx
+ ww
- TEXTW(stext
))
325 click
= ClkStatusText
;
330 else if((c
= getclient(ev
->window
)))
331 click
= ClkClientWin
;
333 for(i
= 0; i
< LENGTH(buttons
); i
++)
334 if(click
== buttons
[i
].click
&& buttons
[i
].func
&& buttons
[i
].button
== ev
->button
&& CLEANMASK(buttons
[i
].mask
) == CLEANMASK(ev
->state
))
335 buttons
[i
].func(&buttons
[i
].arg
);
341 XSetErrorHandler(xerrorstart
);
343 /* this causes an error if some other window manager is running */
344 XSelectInput(dpy
, DefaultRootWindow(dpy
), SubstructureRedirectMask
);
347 eprint("dwm: another window manager is already running\n");
348 XSetErrorHandler(NULL
);
349 xerrorxlib
= XSetErrorHandler(xerror
);
356 Layout foo
= { "", NULL
};
364 XFreeFontSet(dpy
, dc
.font
.set
);
366 XFreeFont(dpy
, dc
.font
.xfont
);
367 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
368 XFreePixmap(dpy
, dc
.drawable
);
370 XFreeCursor(dpy
, cursor
[CurNormal
]);
371 XFreeCursor(dpy
, cursor
[CurResize
]);
372 XFreeCursor(dpy
, cursor
[CurMove
]);
373 XDestroyWindow(dpy
, barwin
);
375 XSetInputFocus(dpy
, PointerRoot
, RevertToPointerRoot
, CurrentTime
);
379 configure(Client
*c
) {
382 ce
.type
= ConfigureNotify
;
390 ce
.border_width
= c
->bw
;
392 ce
.override_redirect
= False
;
393 XSendEvent(dpy
, c
->win
, False
, StructureNotifyMask
, (XEvent
*)&ce
);
397 configurenotify(XEvent
*e
) {
398 XConfigureEvent
*ev
= &e
->xconfigure
;
400 if(ev
->window
== root
&& (ev
->width
!= sw
|| ev
->height
!= sh
)) {
410 configurerequest(XEvent
*e
) {
412 XConfigureRequestEvent
*ev
= &e
->xconfigurerequest
;
415 if((c
= getclient(ev
->window
))) {
416 if(ev
->value_mask
& CWBorderWidth
)
417 c
->bw
= ev
->border_width
;
418 if(ismax
&& !c
->isbanned
&& !c
->isfixed
)
419 XMoveResizeWindow(dpy
, c
->win
, wx
, wy
, ww
- 2 * c
->bw
, wh
+ 2 * c
->bw
);
420 else if(c
->isfloating
|| !lt
->arrange
) {
421 if(ev
->value_mask
& CWX
)
423 if(ev
->value_mask
& CWY
)
425 if(ev
->value_mask
& CWWidth
)
427 if(ev
->value_mask
& CWHeight
)
429 if((c
->x
- sx
+ c
->w
) > sw
&& c
->isfloating
)
430 c
->x
= sx
+ (sw
/ 2 - c
->w
/ 2); /* center in x direction */
431 if((c
->y
- sy
+ c
->h
) > sh
&& c
->isfloating
)
432 c
->y
= sy
+ (sh
/ 2 - c
->h
/ 2); /* center in y direction */
433 if((ev
->value_mask
& (CWX
|CWY
))
434 && !(ev
->value_mask
& (CWWidth
|CWHeight
)))
437 XMoveResizeWindow(dpy
, c
->win
, c
->x
, c
->y
, c
->w
, c
->h
);
445 wc
.width
= ev
->width
;
446 wc
.height
= ev
->height
;
447 wc
.border_width
= ev
->border_width
;
448 wc
.sibling
= ev
->above
;
449 wc
.stack_mode
= ev
->detail
;
450 XConfigureWindow(dpy
, ev
->window
, ev
->value_mask
, &wc
);
456 destroynotify(XEvent
*e
) {
458 XDestroyWindowEvent
*ev
= &e
->xdestroywindow
;
460 if((c
= getclient(ev
->window
)))
469 for(i
= clients
; i
->next
!= c
; i
= i
->next
);
479 detachstack(Client
*c
) {
482 for(tc
= &stack
; *tc
&& *tc
!= c
; tc
= &(*tc
)->snext
);
492 for(c
= stack
; c
&& c
->isbanned
; c
= c
->snext
);
493 for(i
= 0; i
< LENGTH(tags
); i
++) {
494 dc
.w
= TEXTW(tags
[i
]);
495 if(tagset
[seltags
] & 1 << i
) {
496 drawtext(tags
[i
], dc
.sel
, isurgent(i
));
497 drawsquare(c
&& c
->tags
& 1 << i
, isoccupied(i
), isurgent(i
), dc
.sel
);
500 drawtext(tags
[i
], dc
.norm
, isurgent(i
));
501 drawsquare(c
&& c
->tags
& 1 << i
, isoccupied(i
), isurgent(i
), dc
.norm
);
507 drawtext(lt
->symbol
, dc
.norm
, ismax
);
518 drawtext(stext
, dc
.norm
, False
);
519 if((dc
.w
= dc
.x
- x
) > bh
) {
522 drawtext(c
->name
, dc
.sel
, False
);
523 drawsquare(c
->isfixed
, c
->isfloating
, False
, dc
.sel
);
526 drawtext(NULL
, dc
.norm
, False
);
528 XCopyArea(dpy
, dc
.drawable
, barwin
, dc
.gc
, 0, 0, ww
, bh
, 0, 0);
533 drawsquare(Bool filled
, Bool empty
, Bool invert
, ulong col
[ColLast
]) {
536 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
538 gcv
.foreground
= col
[invert
? ColBG
: ColFG
];
539 XChangeGC(dpy
, dc
.gc
, GCForeground
, &gcv
);
540 x
= (dc
.font
.ascent
+ dc
.font
.descent
+ 2) / 4;
544 r
.width
= r
.height
= x
+ 1;
545 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
548 r
.width
= r
.height
= x
;
549 XDrawRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
554 drawtext(const char *text
, ulong col
[ColLast
], Bool invert
) {
555 int i
, x
, y
, h
, len
, olen
;
556 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
559 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColFG
: ColBG
]);
560 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
564 len
= MIN(olen
, sizeof buf
);
565 memcpy(buf
, text
, len
);
566 h
= dc
.font
.ascent
+ dc
.font
.descent
;
567 y
= dc
.y
+ (dc
.h
/ 2) - (h
/ 2) + dc
.font
.ascent
;
569 /* shorten text if necessary */
570 for(; len
&& (i
= textnw(buf
, len
)) > dc
.w
- h
; len
--);
574 for(i
= len
; i
&& i
> len
- 3; buf
[--i
] = '.');
575 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColBG
: ColFG
]);
577 XmbDrawString(dpy
, dc
.drawable
, dc
.font
.set
, dc
.gc
, x
, y
, buf
, len
);
579 XDrawString(dpy
, dc
.drawable
, dc
.gc
, x
, y
, buf
, len
);
583 enternotify(XEvent
*e
) {
585 XCrossingEvent
*ev
= &e
->xcrossing
;
587 if((ev
->mode
!= NotifyNormal
|| ev
->detail
== NotifyInferior
) && ev
->window
!= root
)
589 if((c
= getclient(ev
->window
)))
596 eprint(const char *errstr
, ...) {
599 va_start(ap
, errstr
);
600 vfprintf(stderr
, errstr
, ap
);
607 XExposeEvent
*ev
= &e
->xexpose
;
609 if(ev
->count
== 0 && (ev
->window
== barwin
))
615 if(!c
|| c
->isbanned
)
616 for(c
= stack
; c
&& c
->isbanned
; c
= c
->snext
);
617 if(sel
&& sel
!= c
) {
618 grabbuttons(sel
, False
);
619 XSetWindowBorder(dpy
, sel
->win
, dc
.norm
[ColBorder
]);
624 grabbuttons(c
, True
);
625 XSetWindowBorder(dpy
, c
->win
, dc
.sel
[ColBorder
]);
626 XSetInputFocus(dpy
, c
->win
, RevertToPointerRoot
, CurrentTime
);
629 XSetInputFocus(dpy
, root
, RevertToPointerRoot
, CurrentTime
);
635 focusin(XEvent
*e
) { /* there are some broken focus acquiring clients */
636 XFocusChangeEvent
*ev
= &e
->xfocus
;
638 if(sel
&& ev
->window
!= sel
->win
)
639 XSetInputFocus(dpy
, sel
->win
, RevertToPointerRoot
, CurrentTime
);
643 focusstack(const Arg
*arg
) {
644 Client
*c
= NULL
, *i
;
649 for(c
= sel
->next
; c
&& c
->isbanned
; c
= c
->next
);
651 for(c
= clients
; c
&& c
->isbanned
; c
= c
->next
);
654 for(i
= clients
; i
!= sel
; i
= i
->next
)
658 for(; i
; i
= i
->next
)
669 getclient(Window w
) {
672 for(c
= clients
; c
&& c
->win
!= w
; c
= c
->next
);
677 getcolor(const char *colstr
) {
678 Colormap cmap
= DefaultColormap(dpy
, screen
);
681 if(!XAllocNamedColor(dpy
, cmap
, colstr
, &color
, &color
))
682 eprint("error, cannot allocate color '%s'\n", colstr
);
690 unsigned char *p
= NULL
;
694 status
= XGetWindowProperty(dpy
, w
, wmatom
[WMState
], 0L, 2L, False
, wmatom
[WMState
],
695 &real
, &format
, &n
, &extra
, (unsigned char **)&p
);
696 if(status
!= Success
)
705 gettextprop(Window w
, Atom atom
, char *text
, uint size
) {
710 if(!text
|| size
== 0)
713 XGetTextProperty(dpy
, w
, &name
, atom
);
716 if(name
.encoding
== XA_STRING
)
717 strncpy(text
, (char *)name
.value
, size
- 1);
719 if(XmbTextPropertyToTextList(dpy
, &name
, &list
, &n
) >= Success
721 strncpy(text
, *list
, size
- 1);
722 XFreeStringList(list
);
725 text
[size
- 1] = '\0';
731 grabbuttons(Client
*c
, Bool focused
) {
733 uint buttons
[] = { Button1
, Button2
, Button3
};
734 uint modifiers
[] = { MODKEY
, MODKEY
|LockMask
, MODKEY
|numlockmask
, MODKEY
|numlockmask
|LockMask
};
736 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
738 for(i
= 0; i
< LENGTH(buttons
); i
++)
739 for(j
= 0; j
< LENGTH(modifiers
); j
++)
740 XGrabButton(dpy
, buttons
[i
], modifiers
[j
], c
->win
, False
,
741 BUTTONMASK
, GrabModeAsync
, GrabModeSync
, None
, None
);
743 XGrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
, False
,
744 BUTTONMASK
, GrabModeAsync
, GrabModeSync
, None
, None
);
751 XModifierKeymap
*modmap
;
753 /* init modifier map */
754 modmap
= XGetModifierMapping(dpy
);
755 for(i
= 0; i
< 8; i
++)
756 for(j
= 0; j
< modmap
->max_keypermod
; j
++) {
757 if(modmap
->modifiermap
[i
* modmap
->max_keypermod
+ j
] == XKeysymToKeycode(dpy
, XK_Num_Lock
))
758 numlockmask
= (1 << i
);
760 XFreeModifiermap(modmap
);
762 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
763 for(i
= 0; i
< LENGTH(keys
); i
++) {
764 code
= XKeysymToKeycode(dpy
, keys
[i
].keysym
);
765 XGrabKey(dpy
, code
, keys
[i
].mod
, root
, True
,
766 GrabModeAsync
, GrabModeAsync
);
767 XGrabKey(dpy
, code
, keys
[i
].mod
|LockMask
, root
, True
,
768 GrabModeAsync
, GrabModeAsync
);
769 XGrabKey(dpy
, code
, keys
[i
].mod
|numlockmask
, root
, True
,
770 GrabModeAsync
, GrabModeAsync
);
771 XGrabKey(dpy
, code
, keys
[i
].mod
|numlockmask
|LockMask
, root
, True
,
772 GrabModeAsync
, GrabModeAsync
);
777 initfont(const char *fontstr
) {
778 char *def
, **missing
;
783 XFreeFontSet(dpy
, dc
.font
.set
);
784 dc
.font
.set
= XCreateFontSet(dpy
, fontstr
, &missing
, &n
, &def
);
787 fprintf(stderr
, "dwm: missing fontset: %s\n", missing
[n
]);
788 XFreeStringList(missing
);
791 XFontSetExtents
*font_extents
;
792 XFontStruct
**xfonts
;
794 dc
.font
.ascent
= dc
.font
.descent
= 0;
795 font_extents
= XExtentsOfFontSet(dc
.font
.set
);
796 n
= XFontsOfFontSet(dc
.font
.set
, &xfonts
, &font_names
);
797 for(i
= 0, dc
.font
.ascent
= 0, dc
.font
.descent
= 0; i
< n
; i
++) {
798 dc
.font
.ascent
= MAX(dc
.font
.ascent
, (*xfonts
)->ascent
);
799 dc
.font
.descent
= MAX(dc
.font
.descent
,(*xfonts
)->descent
);
805 XFreeFont(dpy
, dc
.font
.xfont
);
806 dc
.font
.xfont
= NULL
;
807 if(!(dc
.font
.xfont
= XLoadQueryFont(dpy
, fontstr
))
808 && !(dc
.font
.xfont
= XLoadQueryFont(dpy
, "fixed")))
809 eprint("error, cannot load font: '%s'\n", fontstr
);
810 dc
.font
.ascent
= dc
.font
.xfont
->ascent
;
811 dc
.font
.descent
= dc
.font
.xfont
->descent
;
813 dc
.font
.height
= dc
.font
.ascent
+ dc
.font
.descent
;
820 for(c
= clients
; c
; c
= c
->next
)
827 isprotodel(Client
*c
) {
832 if(XGetWMProtocols(dpy
, c
->win
, &protocols
, &n
)) {
833 for(i
= 0; !ret
&& i
< n
; i
++)
834 if(protocols
[i
] == wmatom
[WMDelete
])
845 for(c
= clients
; c
; c
= c
->next
)
846 if(c
->isurgent
&& c
->tags
& 1 << t
)
852 keypress(XEvent
*e
) {
858 keysym
= XKeycodeToKeysym(dpy
, (KeyCode
)ev
->keycode
, 0);
859 for(i
= 0; i
< LENGTH(keys
); i
++)
860 if(keysym
== keys
[i
].keysym
861 && CLEANMASK(keys
[i
].mod
) == CLEANMASK(ev
->state
)
863 keys
[i
].func(&(keys
[i
].arg
));
867 killclient(const Arg
*arg
) {
872 if(isprotodel(sel
)) {
873 ev
.type
= ClientMessage
;
874 ev
.xclient
.window
= sel
->win
;
875 ev
.xclient
.message_type
= wmatom
[WMProtocols
];
876 ev
.xclient
.format
= 32;
877 ev
.xclient
.data
.l
[0] = wmatom
[WMDelete
];
878 ev
.xclient
.data
.l
[1] = CurrentTime
;
879 XSendEvent(dpy
, sel
->win
, False
, NoEventMask
, &ev
);
882 XKillClient(dpy
, sel
->win
);
886 manage(Window w
, XWindowAttributes
*wa
) {
887 Client
*c
, *t
= NULL
;
892 if(!(c
= calloc(1, sizeof(Client
))))
893 eprint("fatal: could not calloc() %u bytes\n", sizeof(Client
));
901 c
->oldbw
= wa
->border_width
;
902 if(c
->w
== sw
&& c
->h
== sh
) {
905 c
->bw
= wa
->border_width
;
908 if(c
->x
+ c
->w
+ 2 * c
->bw
> sx
+ sw
)
909 c
->x
= sx
+ sw
- c
->w
- 2 * c
->bw
;
910 if(c
->y
+ c
->h
+ 2 * c
->bw
> sy
+ sh
)
911 c
->y
= sy
+ sh
- c
->h
- 2 * c
->bw
;
912 c
->x
= MAX(c
->x
, sx
);
913 c
->y
= MAX(c
->y
, by
== 0 ? bh
: sy
);
917 wc
.border_width
= c
->bw
;
918 XConfigureWindow(dpy
, w
, CWBorderWidth
, &wc
);
919 XSetWindowBorder(dpy
, w
, dc
.norm
[ColBorder
]);
920 configure(c
); /* propagates border_width, if size doesn't change */
922 XSelectInput(dpy
, w
, EnterWindowMask
|FocusChangeMask
|PropertyChangeMask
|StructureNotifyMask
);
923 grabbuttons(c
, False
);
925 if((rettrans
= XGetTransientForHint(dpy
, w
, &trans
) == Success
))
926 for(t
= clients
; t
&& t
->win
!= trans
; t
= t
->next
);
932 c
->isfloating
= (rettrans
== Success
) || c
->isfixed
;
934 XRaiseWindow(dpy
, c
->win
);
937 XMoveResizeWindow(dpy
, c
->win
, c
->x
, c
->y
, c
->w
, c
->h
); /* some windows require this */
938 XMapWindow(dpy
, c
->win
);
939 setclientstate(c
, NormalState
);
944 mappingnotify(XEvent
*e
) {
945 XMappingEvent
*ev
= &e
->xmapping
;
947 XRefreshKeyboardMapping(ev
);
948 if(ev
->request
== MappingKeyboard
)
953 maprequest(XEvent
*e
) {
954 static XWindowAttributes wa
;
955 XMapRequestEvent
*ev
= &e
->xmaprequest
;
957 if(!XGetWindowAttributes(dpy
, ev
->window
, &wa
))
959 if(wa
.override_redirect
)
961 if(!getclient(ev
->window
))
962 manage(ev
->window
, &wa
);
966 movemouse(const Arg
*arg
) {
967 int x1
, y1
, ocx
, ocy
, di
, nx
, ny
;
978 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
979 None
, cursor
[CurMove
], CurrentTime
) != GrabSuccess
)
981 XQueryPointer(dpy
, root
, &dummy
, &dummy
, &x1
, &y1
, &di
, &di
, &dui
);
982 if(x1
< c
->x
|| x1
> c
->x
+ c
->w
|| y1
< c
->y
|| y1
> c
->y
+ c
->h
) {
983 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, 0, 0);
988 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
991 XUngrabPointer(dpy
, CurrentTime
);
993 case ConfigureRequest
:
996 handler
[ev
.type
](&ev
);
1000 nx
= ocx
+ (ev
.xmotion
.x
- x1
);
1001 ny
= ocy
+ (ev
.xmotion
.y
- y1
);
1002 if(snap
&& nx
>= wx
&& nx
<= wx
+ ww
1003 && ny
>= wy
&& ny
<= wy
+ wh
) {
1004 if(abs(wx
- nx
) < snap
)
1006 else if(abs((wx
+ ww
) - (nx
+ c
->w
+ 2 * c
->bw
)) < snap
)
1007 nx
= wx
+ ww
- c
->w
- 2 * c
->bw
;
1008 if(abs(wy
- ny
) < snap
)
1010 else if(abs((wy
+ wh
) - (ny
+ c
->h
+ 2 * c
->bw
)) < snap
)
1011 ny
= wy
+ wh
- c
->h
- 2 * c
->bw
;
1012 if(!c
->isfloating
&& lt
->arrange
&& (abs(nx
- c
->x
) > snap
|| abs(ny
- c
->y
) > snap
))
1013 togglefloating(NULL
);
1015 if(!lt
->arrange
|| c
->isfloating
)
1016 resize(c
, nx
, ny
, c
->w
, c
->h
, False
);
1023 nexttiled(Client
*c
) {
1024 for(; c
&& (c
->isfloating
|| c
->isbanned
); c
= c
->next
);
1029 propertynotify(XEvent
*e
) {
1032 XPropertyEvent
*ev
= &e
->xproperty
;
1034 if(ev
->state
== PropertyDelete
)
1035 return; /* ignore */
1036 if((c
= getclient(ev
->window
))) {
1039 case XA_WM_TRANSIENT_FOR
:
1040 XGetTransientForHint(dpy
, c
->win
, &trans
);
1041 if(!c
->isfloating
&& (c
->isfloating
= (getclient(trans
) != NULL
)))
1044 case XA_WM_NORMAL_HINTS
:
1052 if(ev
->atom
== XA_WM_NAME
|| ev
->atom
== netatom
[NetWMName
]) {
1061 quit(const Arg
*arg
) {
1062 readin
= running
= False
;
1066 resize(Client
*c
, int x
, int y
, int w
, int h
, Bool sizehints
) {
1070 /* set minimum possible */
1074 /* temporarily remove base dimensions */
1078 /* adjust for aspect limits */
1079 if(c
->mina
> 0 && c
->maxa
> 0) {
1080 if(c
->maxa
< (float) w
/h
)
1082 else if(c
->mina
> (float) h
/w
)
1086 /* adjust for increment value */
1092 /* restore base dimensions */
1096 w
= MAX(w
, c
->minw
);
1097 h
= MAX(h
, c
->minh
);
1100 w
= MIN(w
, c
->maxw
);
1103 h
= MIN(h
, c
->maxh
);
1105 if(w
<= 0 || h
<= 0)
1108 x
= sw
- w
- 2 * c
->bw
;
1110 y
= sh
- h
- 2 * c
->bw
;
1111 if(x
+ w
+ 2 * c
->bw
< sx
)
1113 if(y
+ h
+ 2 * c
->bw
< sy
)
1119 if(c
->x
!= x
|| c
->y
!= y
|| c
->w
!= w
|| c
->h
!= h
|| c
->ismoved
) {
1123 c
->w
= wc
.width
= w
;
1124 c
->h
= wc
.height
= h
;
1125 wc
.border_width
= c
->bw
;
1126 XConfigureWindow(dpy
, c
->win
,
1127 CWX
|CWY
|CWWidth
|CWHeight
|CWBorderWidth
, &wc
);
1134 resizemouse(const Arg
*arg
) {
1145 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1146 None
, cursor
[CurResize
], CurrentTime
) != GrabSuccess
)
1148 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1150 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1153 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0,
1154 c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1155 XUngrabPointer(dpy
, CurrentTime
);
1156 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1158 case ConfigureRequest
:
1161 handler
[ev
.type
](&ev
);
1165 nw
= MAX(ev
.xmotion
.x
- ocx
- 2 * c
->bw
+ 1, 1);
1166 nh
= MAX(ev
.xmotion
.y
- ocy
- 2 * c
->bw
+ 1, 1);
1168 if(snap
&& nw
>= wx
&& nw
<= wx
+ ww
1169 && nh
>= wy
&& nh
<= wy
+ wh
) {
1170 if(!c
->isfloating
&& lt
->arrange
1171 && (abs(nw
- c
->w
) > snap
|| abs(nh
- c
->h
) > snap
))
1172 togglefloating(NULL
);
1174 if(!lt
->arrange
|| c
->isfloating
)
1175 resize(c
, c
->x
, c
->y
, nw
, nh
, True
);
1190 if(ismax
|| sel
->isfloating
|| !lt
->arrange
)
1191 XRaiseWindow(dpy
, sel
->win
);
1192 if(!ismax
&& lt
->arrange
) {
1193 wc
.stack_mode
= Below
;
1194 wc
.sibling
= barwin
;
1195 for(c
= stack
; c
; c
= c
->snext
)
1196 if(!c
->isfloating
&& !c
->isbanned
) {
1197 XConfigureWindow(dpy
, c
->win
, CWSibling
|CWStackMode
, &wc
);
1198 wc
.sibling
= c
->win
;
1202 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1208 char sbuf
[sizeof stext
];
1214 /* main event loop, also reads status text from stdin */
1216 xfd
= ConnectionNumber(dpy
);
1219 len
= sizeof stext
- 1;
1220 sbuf
[len
] = stext
[len
] = '\0'; /* 0-terminator is never touched */
1224 FD_SET(STDIN_FILENO
, &rd
);
1226 if(select(xfd
+ 1, &rd
, NULL
, NULL
, NULL
) == -1) {
1229 eprint("select failed\n");
1231 if(FD_ISSET(STDIN_FILENO
, &rd
)) {
1232 switch((r
= read(STDIN_FILENO
, sbuf
+ offset
, len
- offset
))) {
1234 strncpy(stext
, strerror(errno
), len
);
1238 strncpy(stext
, "EOF", 4);
1242 for(p
= sbuf
+ offset
; r
> 0; p
++, r
--, offset
++)
1243 if(*p
== '\n' || *p
== '\0') {
1245 strncpy(stext
, sbuf
, len
);
1246 p
+= r
- 1; /* p is sbuf + offset + r - 1 */
1247 for(r
= 0; *(p
- r
) && *(p
- r
) != '\n'; r
++);
1250 memmove(sbuf
, p
- r
+ 1, r
);
1257 while(XPending(dpy
)) {
1258 XNextEvent(dpy
, &ev
);
1259 if(handler
[ev
.type
])
1260 (handler
[ev
.type
])(&ev
); /* call handler */
1268 Window
*wins
, d1
, d2
;
1269 XWindowAttributes wa
;
1272 if(XQueryTree(dpy
, root
, &d1
, &d2
, &wins
, &num
)) {
1273 for(i
= 0; i
< num
; i
++) {
1274 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
)
1275 || wa
.override_redirect
|| XGetTransientForHint(dpy
, wins
[i
], &d1
))
1277 if(wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
)
1278 manage(wins
[i
], &wa
);
1280 for(i
= 0; i
< num
; i
++) { /* now the transients */
1281 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
))
1283 if(XGetTransientForHint(dpy
, wins
[i
], &d1
)
1284 && (wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
))
1285 manage(wins
[i
], &wa
);
1293 setclientstate(Client
*c
, long state
) {
1294 long data
[] = {state
, None
};
1296 XChangeProperty(dpy
, c
->win
, wmatom
[WMState
], wmatom
[WMState
], 32,
1297 PropModeReplace
, (unsigned char *)data
, 2);
1300 /* arg > 1.0 will set mfact absolutly */
1302 setmfact(const Arg
*arg
) {
1305 if(!arg
|| !lt
->arrange
)
1307 f
= arg
->f
< 1.0 ? arg
->f
+ mfact
: arg
->f
- 1.0;
1308 if(f
< 0.1 || f
> 0.9)
1318 XSetWindowAttributes wa
;
1321 screen
= DefaultScreen(dpy
);
1322 root
= RootWindow(dpy
, screen
);
1326 sw
= DisplayWidth(dpy
, screen
);
1327 sh
= DisplayHeight(dpy
, screen
);
1328 bh
= dc
.font
.height
+ 2;
1333 wmatom
[WMProtocols
] = XInternAtom(dpy
, "WM_PROTOCOLS", False
);
1334 wmatom
[WMDelete
] = XInternAtom(dpy
, "WM_DELETE_WINDOW", False
);
1335 wmatom
[WMName
] = XInternAtom(dpy
, "WM_NAME", False
);
1336 wmatom
[WMState
] = XInternAtom(dpy
, "WM_STATE", False
);
1337 netatom
[NetSupported
] = XInternAtom(dpy
, "_NET_SUPPORTED", False
);
1338 netatom
[NetWMName
] = XInternAtom(dpy
, "_NET_WM_NAME", False
);
1341 wa
.cursor
= cursor
[CurNormal
] = XCreateFontCursor(dpy
, XC_left_ptr
);
1342 cursor
[CurResize
] = XCreateFontCursor(dpy
, XC_sizing
);
1343 cursor
[CurMove
] = XCreateFontCursor(dpy
, XC_fleur
);
1345 /* init appearance */
1346 dc
.norm
[ColBorder
] = getcolor(NORMBORDERCOLOR
);
1347 dc
.norm
[ColBG
] = getcolor(NORMBGCOLOR
);
1348 dc
.norm
[ColFG
] = getcolor(NORMFGCOLOR
);
1349 dc
.sel
[ColBorder
] = getcolor(SELBORDERCOLOR
);
1350 dc
.sel
[ColBG
] = getcolor(SELBGCOLOR
);
1351 dc
.sel
[ColFG
] = getcolor(SELFGCOLOR
);
1354 dc
.drawable
= XCreatePixmap(dpy
, root
, DisplayWidth(dpy
, screen
), bh
, DefaultDepth(dpy
, screen
));
1355 dc
.gc
= XCreateGC(dpy
, root
, 0, 0);
1356 XSetLineAttributes(dpy
, dc
.gc
, 1, LineSolid
, CapButt
, JoinMiter
);
1358 XSetFont(dpy
, dc
.gc
, dc
.font
.xfont
->fid
);
1361 for(blw
= i
= 0; LENGTH(layouts
) > 1 && i
< LENGTH(layouts
); i
++) {
1362 w
= TEXTW(layouts
[i
].symbol
);
1366 wa
.override_redirect
= 1;
1367 wa
.background_pixmap
= ParentRelative
;
1368 wa
.event_mask
= ButtonPressMask
|ExposureMask
;
1370 barwin
= XCreateWindow(dpy
, root
, wx
, by
, ww
, bh
, 0, DefaultDepth(dpy
, screen
),
1371 CopyFromParent
, DefaultVisual(dpy
, screen
),
1372 CWOverrideRedirect
|CWBackPixmap
|CWEventMask
, &wa
);
1373 XDefineCursor(dpy
, barwin
, cursor
[CurNormal
]);
1374 XMapRaised(dpy
, barwin
);
1375 strcpy(stext
, "dwm-"VERSION
);
1378 /* EWMH support per view */
1379 XChangeProperty(dpy
, root
, netatom
[NetSupported
], XA_ATOM
, 32,
1380 PropModeReplace
, (unsigned char *) netatom
, NetLast
);
1382 /* select for events */
1383 wa
.event_mask
= SubstructureRedirectMask
|SubstructureNotifyMask
|ButtonPressMask
1384 |EnterWindowMask
|LeaveWindowMask
|StructureNotifyMask
;
1385 XChangeWindowAttributes(dpy
, root
, CWEventMask
|CWCursor
, &wa
);
1386 XSelectInput(dpy
, root
, wa
.event_mask
);
1394 spawn(const Arg
*arg
) {
1395 /* The double-fork construct avoids zombie processes and keeps the code
1396 * clean from stupid signal handlers. */
1400 close(ConnectionNumber(dpy
));
1402 execvp(((char **)arg
->v
)[0], (char **)arg
->v
);
1403 fprintf(stderr
, "dwm: execvp %s", ((char **)arg
->v
)[0]);
1412 tag(const Arg
*arg
) {
1413 if(sel
&& arg
->ui
& TAGMASK
) {
1414 sel
->tags
= arg
->ui
& TAGMASK
;
1420 textnw(const char *text
, uint len
) {
1424 XmbTextExtents(dc
.font
.set
, text
, len
, NULL
, &r
);
1427 return XTextWidth(dc
.font
.xfont
, text
, len
);
1436 for(n
= 0, c
= nexttiled(clients
); c
; c
= nexttiled(c
->next
), n
++);
1441 c
= nexttiled(clients
);
1443 resize(c
, wx
, wy
, (n
== 1 ? ww
: mw
) - 2 * c
->bw
, wh
- 2 * c
->bw
, resizehints
);
1449 x
= (wx
+ mw
> c
->x
+ c
->w
) ? c
->x
+ c
->w
+ 2 * c
->bw
: wx
+ mw
;
1451 w
= (wx
+ mw
> c
->x
+ c
->w
) ? wx
+ ww
- x
: ww
- mw
;
1456 for(i
= 0, c
= nexttiled(c
->next
); c
; c
= nexttiled(c
->next
), i
++) {
1457 resize(c
, x
, y
, w
- 2 * c
->bw
, /* remainder */ ((i
+ 1 == n
)
1458 ? (wy
+ wh
) - y
: h
) - 2 * c
->bw
, resizehints
);
1460 y
= c
->y
+ c
->h
+ 2 * c
->bw
;
1465 togglebar(const Arg
*arg
) {
1473 togglefloating(const Arg
*arg
) {
1476 sel
->isfloating
= !sel
->isfloating
|| sel
->isfixed
;
1478 resize(sel
, sel
->x
, sel
->y
, sel
->w
, sel
->h
, True
);
1483 togglelayout(const Arg
*arg
) {
1485 lt
= (Layout
*)arg
->v
;
1486 else if(++lt
== &layouts
[LENGTH(layouts
)])
1495 togglemax(const Arg
*arg
) {
1501 toggletag(const Arg
*arg
) {
1502 if(sel
&& (sel
->tags
^= (arg
->ui
& TAGMASK
)))
1507 toggleview(const Arg
*arg
) {
1508 if((tagset
[seltags
] ^= (arg
->ui
& TAGMASK
)))
1513 unmanage(Client
*c
) {
1516 wc
.border_width
= c
->oldbw
;
1517 /* The server grab construct avoids race conditions. */
1519 XSetErrorHandler(xerrordummy
);
1520 XConfigureWindow(dpy
, c
->win
, CWBorderWidth
, &wc
); /* restore border */
1525 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
1526 setclientstate(c
, WithdrawnState
);
1529 XSetErrorHandler(xerror
);
1535 unmapnotify(XEvent
*e
) {
1537 XUnmapEvent
*ev
= &e
->xunmap
;
1539 if((c
= getclient(ev
->window
)))
1545 if(dc
.drawable
!= 0)
1546 XFreePixmap(dpy
, dc
.drawable
);
1547 dc
.drawable
= XCreatePixmap(dpy
, root
, ww
, bh
, DefaultDepth(dpy
, screen
));
1548 XMoveResizeWindow(dpy
, barwin
, wx
, by
, ww
, bh
);
1555 XineramaScreenInfo
*info
= NULL
;
1557 /* window area geometry */
1558 if(XineramaIsActive(dpy
)) {
1559 info
= XineramaQueryScreens(dpy
, &i
);
1560 wx
= info
[xidx
].x_org
;
1561 wy
= showbar
&& topbar
? info
[xidx
].y_org
+ bh
: info
[xidx
].y_org
;
1562 ww
= info
[xidx
].width
;
1563 wh
= showbar
? info
[xidx
].height
- bh
: info
[xidx
].height
;
1570 wy
= showbar
&& topbar
? sy
+ bh
: sy
;
1572 wh
= showbar
? sh
- bh
: sh
;
1576 by
= showbar
? (topbar
? wy
- bh
: wy
+ wh
) : -bh
;
1580 updatesizehints(Client
*c
) {
1584 XGetWMNormalHints(dpy
, c
->win
, &size
, &msize
);
1585 if(size
.flags
& PBaseSize
) {
1586 c
->basew
= size
.base_width
;
1587 c
->baseh
= size
.base_height
;
1589 else if(size
.flags
& PMinSize
) {
1590 c
->basew
= size
.min_width
;
1591 c
->baseh
= size
.min_height
;
1594 c
->basew
= c
->baseh
= 0;
1595 if(size
.flags
& PResizeInc
) {
1596 c
->incw
= size
.width_inc
;
1597 c
->inch
= size
.height_inc
;
1600 c
->incw
= c
->inch
= 0;
1601 if(size
.flags
& PMaxSize
) {
1602 c
->maxw
= size
.max_width
;
1603 c
->maxh
= size
.max_height
;
1606 c
->maxw
= c
->maxh
= 0;
1607 if(size
.flags
& PMinSize
) {
1608 c
->minw
= size
.min_width
;
1609 c
->minh
= size
.min_height
;
1611 else if(size
.flags
& PBaseSize
) {
1612 c
->minw
= size
.base_width
;
1613 c
->minh
= size
.base_height
;
1616 c
->minw
= c
->minh
= 0;
1617 if(size
.flags
& PAspect
) {
1618 c
->mina
= (float)size
.min_aspect
.y
/ (float)size
.min_aspect
.x
;
1619 c
->maxa
= (float)size
.max_aspect
.x
/ (float)size
.max_aspect
.y
;
1622 c
->maxa
= c
->mina
= 0.0;
1623 c
->isfixed
= (c
->maxw
&& c
->minw
&& c
->maxh
&& c
->minh
1624 && c
->maxw
== c
->minw
&& c
->maxh
== c
->minh
);
1628 updatetitle(Client
*c
) {
1629 if(!gettextprop(c
->win
, netatom
[NetWMName
], c
->name
, sizeof c
->name
))
1630 gettextprop(c
->win
, wmatom
[WMName
], c
->name
, sizeof c
->name
);
1634 updatewmhints(Client
*c
) {
1637 if((wmh
= XGetWMHints(dpy
, c
->win
))) {
1639 sel
->isurgent
= False
;
1641 c
->isurgent
= (wmh
->flags
& XUrgencyHint
) ? True
: False
;
1647 view(const Arg
*arg
) {
1648 seltags
^= 1; /* toggle sel tagset */
1649 if(arg
&& (arg
->ui
& TAGMASK
) && (arg
->ui
& TAGMASK
) != tagset
[seltags
^ 1])
1650 tagset
[seltags
] = arg
->i
& TAGMASK
;
1654 /* There's no way to check accesses to destroyed windows, thus those cases are
1655 * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
1656 * default error handler, which may call exit. */
1658 xerror(Display
*dpy
, XErrorEvent
*ee
) {
1659 if(ee
->error_code
== BadWindow
1660 || (ee
->request_code
== X_SetInputFocus
&& ee
->error_code
== BadMatch
)
1661 || (ee
->request_code
== X_PolyText8
&& ee
->error_code
== BadDrawable
)
1662 || (ee
->request_code
== X_PolyFillRectangle
&& ee
->error_code
== BadDrawable
)
1663 || (ee
->request_code
== X_PolySegment
&& ee
->error_code
== BadDrawable
)
1664 || (ee
->request_code
== X_ConfigureWindow
&& ee
->error_code
== BadMatch
)
1665 || (ee
->request_code
== X_GrabButton
&& ee
->error_code
== BadAccess
)
1666 || (ee
->request_code
== X_GrabKey
&& ee
->error_code
== BadAccess
)
1667 || (ee
->request_code
== X_CopyArea
&& ee
->error_code
== BadDrawable
))
1669 fprintf(stderr
, "dwm: fatal error: request code=%d, error code=%d\n",
1670 ee
->request_code
, ee
->error_code
);
1671 return xerrorxlib(dpy
, ee
); /* may call exit */
1675 xerrordummy(Display
*dpy
, XErrorEvent
*ee
) {
1679 /* Startup Error handler to check if another window manager
1680 * is already running. */
1682 xerrorstart(Display
*dpy
, XErrorEvent
*ee
) {
1688 zoom(const Arg
*arg
) {
1691 if(ismax
|| !lt
->arrange
|| (sel
&& sel
->isfloating
))
1693 if(c
== nexttiled(clients
))
1694 if(!c
|| !(c
= nexttiled(c
->next
)))
1703 main(int argc
, char *argv
[]) {
1704 if(argc
== 2 && !strcmp("-v", argv
[1]))
1705 eprint("dwm-"VERSION
", © 2006-2008 dwm engineers, see LICENSE for details\n");
1707 eprint("usage: dwm [-v]\n");
1709 setlocale(LC_CTYPE
, "");
1710 if(!(dpy
= XOpenDisplay(0)))
1711 eprint("dwm: cannot open display\n");