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 * 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 */
64 typedef unsigned int uint
;
65 typedef unsigned long ulong
;
66 typedef struct Client Client
;
70 int basew
, baseh
, incw
, inch
, maxw
, maxh
, minw
, minh
;
71 int minax
, maxax
, minay
, maxay
;
74 Bool isbanned
, isfixed
, isfloating
, ismoved
, isurgent
;
95 } DC
; /* draw context */
100 void (*func
)(const void *arg
);
106 void (*arrange
)(void);
111 const char *instance
;
117 /* function declarations */
118 void applyrules(Client
*c
);
120 void attach(Client
*c
);
121 void attachstack(Client
*c
);
122 void buttonpress(XEvent
*e
);
123 void checkotherwm(void);
125 void configure(Client
*c
);
126 void configurenotify(XEvent
*e
);
127 void configurerequest(XEvent
*e
);
128 void destroynotify(XEvent
*e
);
129 void detach(Client
*c
);
130 void detachstack(Client
*c
);
132 void drawsquare(Bool filled
, Bool empty
, Bool invert
, ulong col
[ColLast
]);
133 void drawtext(const char *text
, ulong col
[ColLast
], Bool invert
);
134 void enternotify(XEvent
*e
);
135 void eprint(const char *errstr
, ...);
136 void expose(XEvent
*e
);
137 void focus(Client
*c
);
138 void focusin(XEvent
*e
);
139 void focusnext(const void *arg
);
140 void focusprev(const void *arg
);
141 Client
*getclient(Window w
);
142 ulong
getcolor(const char *colstr
);
143 long getstate(Window w
);
144 Bool
gettextprop(Window w
, Atom atom
, char *text
, uint size
);
145 void grabbuttons(Client
*c
, Bool focused
);
147 void initfont(const char *fontstr
);
148 Bool
isoccupied(uint t
);
149 Bool
isprotodel(Client
*c
);
150 Bool
isurgent(uint t
);
151 void keypress(XEvent
*e
);
152 void killclient(const void *arg
);
153 void manage(Window w
, XWindowAttributes
*wa
);
154 void mappingnotify(XEvent
*e
);
155 void maprequest(XEvent
*e
);
156 void movemouse(Client
*c
);
157 Client
*nexttiled(Client
*c
);
158 void propertynotify(XEvent
*e
);
159 void quit(const void *arg
);
160 void resize(Client
*c
, int x
, int y
, int w
, int h
, Bool sizehints
);
161 void resizemouse(Client
*c
);
165 void setclientstate(Client
*c
, long state
);
166 void setmfact(const void *arg
);
168 void spawn(const void *arg
);
169 void tag(const void *arg
);
170 uint
textnw(const char *text
, uint len
);
172 void togglebar(const void *arg
);
173 void togglefloating(const void *arg
);
174 void togglelayout(const void *arg
);
175 void togglemax(const void *arg
);
176 void toggletag(const void *arg
);
177 void toggleview(const void *arg
);
178 void unmanage(Client
*c
);
179 void unmapnotify(XEvent
*e
);
180 void updatebar(void);
181 void updategeom(void);
182 void updatesizehints(Client
*c
);
183 void updatetitle(Client
*c
);
184 void updatewmhints(Client
*c
);
185 void view(const void *arg
);
186 void viewprevtag(const void *arg
);
187 int xerror(Display
*dpy
, XErrorEvent
*ee
);
188 int xerrordummy(Display
*dpy
, XErrorEvent
*ee
);
189 int xerrorstart(Display
*dpy
, XErrorEvent
*ee
);
190 void zoom(const void *arg
);
194 int screen
, sx
, sy
, sw
, sh
;
195 int by
, bh
, blw
, wx
, wy
, ww
, wh
;
197 int (*xerrorxlib
)(Display
*, XErrorEvent
*);
198 uint numlockmask
= 0;
199 void (*handler
[LASTEvent
]) (XEvent
*) = {
200 [ButtonPress
] = buttonpress
,
201 [ConfigureRequest
] = configurerequest
,
202 [ConfigureNotify
] = configurenotify
,
203 [DestroyNotify
] = destroynotify
,
204 [EnterNotify
] = enternotify
,
207 [KeyPress
] = keypress
,
208 [MappingNotify
] = mappingnotify
,
209 [MapRequest
] = maprequest
,
210 [PropertyNotify
] = propertynotify
,
211 [UnmapNotify
] = unmapnotify
213 Atom wmatom
[WMLast
], netatom
[NetLast
];
215 Bool otherwm
, readin
;
217 uint tagset
[] = {1, 1}; /* after start, first tag is selected */
218 Client
*clients
= NULL
;
220 Client
*stack
= NULL
;
221 Cursor cursor
[CurLast
];
225 Layout
*lt
= layouts
;
228 /* configuration, allows nested code to access above variables */
231 /* compile-time check if all tags fit into an uint bit array. */
232 struct NumTags
{ char limitexceeded
[sizeof(uint
) * 8 < LENGTH(tags
) ? -1 : 1]; };
234 /* function implementations */
236 applyrules(Client
*c
) {
239 XClassHint ch
= { 0 };
242 XGetClassHint(dpy
, c
->win
, &ch
);
243 for(i
= 0; i
< LENGTH(rules
); i
++) {
245 if((!r
->title
|| strstr(c
->name
, r
->title
))
246 && (!r
->class || (ch
.res_class
&& strstr(ch
.res_class
, r
->class)))
247 && (!r
->instance
|| (ch
.res_name
&& strstr(ch
.res_name
, r
->instance
)))) {
248 c
->isfloating
= r
->isfloating
;
249 c
->tags
|= r
->tags
& TAGMASK
;
257 c
->tags
= tagset
[seltags
];
264 for(c
= clients
; c
; c
= c
->next
)
265 if(c
->tags
& tagset
[seltags
]) { /* is visible */
266 if(ismax
&& !c
->isfixed
) {
267 XMoveResizeWindow(dpy
, c
->win
, wx
, wy
, ww
- 2 * c
->bw
, wh
- 2 * c
->bw
);
270 else if(!lt
->arrange
|| c
->isfloating
)
271 resize(c
, c
->x
, c
->y
, c
->w
, c
->h
, True
);
274 else if(!c
->isbanned
) {
275 XMoveWindow(dpy
, c
->win
, c
->x
+ 2 * sw
, c
->y
);
276 c
->isbanned
= c
->ismoved
= True
;
280 if(lt
->arrange
&& !ismax
)
294 attachstack(Client
*c
) {
300 buttonpress(XEvent
*e
) {
303 XButtonPressedEvent
*ev
= &e
->xbutton
;
305 if(ev
->window
== barwin
) {
307 for(i
= 0; i
< LENGTH(tags
); i
++) {
311 if(ev
->button
== Button1
) {
312 if(ev
->state
& MODKEY
)
317 else if(ev
->button
== Button3
) {
318 if(ev
->state
& MODKEY
)
326 if(ev
->x
< x
+ blw
) {
327 if(ev
->button
== Button1
)
329 else if(ev
->button
== Button3
)
333 else if((c
= getclient(ev
->window
))) {
335 if(CLEANMASK(ev
->state
) != MODKEY
|| (ismax
&& !c
->isfixed
))
337 if(ev
->button
== Button1
)
339 else if(ev
->button
== Button2
)
340 togglefloating(NULL
);
341 else if(ev
->button
== Button3
&& !c
->isfixed
)
349 XSetErrorHandler(xerrorstart
);
351 /* this causes an error if some other window manager is running */
352 XSelectInput(dpy
, DefaultRootWindow(dpy
), SubstructureRedirectMask
);
355 eprint("dwm: another window manager is already running\n");
356 XSetErrorHandler(NULL
);
357 xerrorxlib
= XSetErrorHandler(xerror
);
368 XFreeFontSet(dpy
, dc
.font
.set
);
370 XFreeFont(dpy
, dc
.font
.xfont
);
371 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
372 XFreePixmap(dpy
, dc
.drawable
);
374 XFreeCursor(dpy
, cursor
[CurNormal
]);
375 XFreeCursor(dpy
, cursor
[CurResize
]);
376 XFreeCursor(dpy
, cursor
[CurMove
]);
377 XDestroyWindow(dpy
, barwin
);
379 XSetInputFocus(dpy
, PointerRoot
, RevertToPointerRoot
, CurrentTime
);
383 configure(Client
*c
) {
386 ce
.type
= ConfigureNotify
;
394 ce
.border_width
= c
->bw
;
396 ce
.override_redirect
= False
;
397 XSendEvent(dpy
, c
->win
, False
, StructureNotifyMask
, (XEvent
*)&ce
);
401 configurenotify(XEvent
*e
) {
402 XConfigureEvent
*ev
= &e
->xconfigure
;
404 if(ev
->window
== root
&& (ev
->width
!= sw
|| ev
->height
!= sh
)) {
414 configurerequest(XEvent
*e
) {
416 XConfigureRequestEvent
*ev
= &e
->xconfigurerequest
;
419 if((c
= getclient(ev
->window
))) {
420 if(ev
->value_mask
& CWBorderWidth
)
421 c
->bw
= ev
->border_width
;
422 if(c
->isfixed
|| c
->isfloating
|| !lt
->arrange
) {
423 if(ev
->value_mask
& CWX
)
425 if(ev
->value_mask
& CWY
)
427 if(ev
->value_mask
& CWWidth
)
429 if(ev
->value_mask
& CWHeight
)
431 if((c
->x
- sx
+ c
->w
) > sw
&& c
->isfloating
)
432 c
->x
= sx
+ (sw
/ 2 - c
->w
/ 2); /* center in x direction */
433 if((c
->y
- sy
+ c
->h
) > sh
&& c
->isfloating
)
434 c
->y
= sy
+ (sh
/ 2 - c
->h
/ 2); /* center in y direction */
435 if((ev
->value_mask
& (CWX
|CWY
))
436 && !(ev
->value_mask
& (CWWidth
|CWHeight
)))
439 XMoveResizeWindow(dpy
, c
->win
, c
->x
, c
->y
, c
->w
, c
->h
);
447 wc
.width
= ev
->width
;
448 wc
.height
= ev
->height
;
449 wc
.border_width
= ev
->border_width
;
450 wc
.sibling
= ev
->above
;
451 wc
.stack_mode
= ev
->detail
;
452 XConfigureWindow(dpy
, ev
->window
, ev
->value_mask
, &wc
);
458 destroynotify(XEvent
*e
) {
460 XDestroyWindowEvent
*ev
= &e
->xdestroywindow
;
462 if((c
= getclient(ev
->window
)))
469 c
->prev
->next
= c
->next
;
471 c
->next
->prev
= c
->prev
;
474 c
->next
= c
->prev
= NULL
;
478 detachstack(Client
*c
) {
481 for(tc
= &stack
; *tc
&& *tc
!= c
; tc
= &(*tc
)->snext
);
491 for(c
= stack
; c
&& c
->isbanned
; c
= c
->snext
);
492 for(i
= 0; i
< LENGTH(tags
); i
++) {
493 dc
.w
= TEXTW(tags
[i
]);
494 if(tagset
[seltags
] & 1 << i
) {
495 drawtext(tags
[i
], dc
.sel
, isurgent(i
));
496 drawsquare(c
&& c
->tags
& 1 << i
, isoccupied(i
), isurgent(i
), dc
.sel
);
499 drawtext(tags
[i
], dc
.norm
, isurgent(i
));
500 drawsquare(c
&& c
->tags
& 1 << i
, isoccupied(i
), isurgent(i
), dc
.norm
);
506 drawtext(lt
->symbol
, dc
.norm
, ismax
);
517 drawtext(stext
, dc
.norm
, False
);
518 if((dc
.w
= dc
.x
- x
) > bh
) {
521 drawtext(c
->name
, dc
.sel
, False
);
522 drawsquare(c
->isfixed
, c
->isfloating
, False
, dc
.sel
);
525 drawtext(NULL
, dc
.norm
, False
);
527 XCopyArea(dpy
, dc
.drawable
, barwin
, dc
.gc
, 0, 0, ww
, bh
, 0, 0);
532 drawsquare(Bool filled
, Bool empty
, Bool invert
, ulong col
[ColLast
]) {
535 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
537 gcv
.foreground
= col
[invert
? ColBG
: ColFG
];
538 XChangeGC(dpy
, dc
.gc
, GCForeground
, &gcv
);
539 x
= (dc
.font
.ascent
+ dc
.font
.descent
+ 2) / 4;
543 r
.width
= r
.height
= x
+ 1;
544 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
547 r
.width
= r
.height
= x
;
548 XDrawRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
553 drawtext(const char *text
, ulong col
[ColLast
], Bool invert
) {
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
);
567 h
= dc
.font
.ascent
+ dc
.font
.descent
;
568 y
= dc
.y
+ (dc
.h
/ 2) - (h
/ 2) + dc
.font
.ascent
;
570 /* shorten text if necessary */
571 for(; len
&& (w
= textnw(buf
, len
)) > dc
.w
- h
; len
--);
582 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColBG
: ColFG
]);
584 XmbDrawString(dpy
, dc
.drawable
, dc
.font
.set
, dc
.gc
, x
, y
, buf
, len
);
586 XDrawString(dpy
, dc
.drawable
, dc
.gc
, x
, y
, buf
, len
);
590 enternotify(XEvent
*e
) {
592 XCrossingEvent
*ev
= &e
->xcrossing
;
594 if((ev
->mode
!= NotifyNormal
|| ev
->detail
== NotifyInferior
) && ev
->window
!= root
)
596 if((c
= getclient(ev
->window
)))
603 eprint(const char *errstr
, ...) {
606 va_start(ap
, errstr
);
607 vfprintf(stderr
, errstr
, ap
);
614 XExposeEvent
*ev
= &e
->xexpose
;
616 if(ev
->count
== 0 && (ev
->window
== barwin
))
622 if(!c
|| (c
&& c
->isbanned
))
623 for(c
= stack
; c
&& c
->isbanned
; c
= c
->snext
);
624 if(sel
&& sel
!= c
) {
625 grabbuttons(sel
, False
);
626 XSetWindowBorder(dpy
, sel
->win
, dc
.norm
[ColBorder
]);
631 grabbuttons(c
, True
);
635 XSetWindowBorder(dpy
, c
->win
, dc
.sel
[ColBorder
]);
636 XSetInputFocus(dpy
, c
->win
, RevertToPointerRoot
, CurrentTime
);
639 XSetInputFocus(dpy
, root
, RevertToPointerRoot
, CurrentTime
);
644 focusin(XEvent
*e
) { /* there are some broken focus acquiring clients */
645 XFocusChangeEvent
*ev
= &e
->xfocus
;
647 if(sel
&& ev
->window
!= sel
->win
)
648 XSetInputFocus(dpy
, sel
->win
, RevertToPointerRoot
, CurrentTime
);
652 focusnext(const void *arg
) {
657 for(c
= sel
->next
; c
&& c
->isbanned
; c
= c
->next
);
659 for(c
= clients
; c
&& c
->isbanned
; c
= c
->next
);
667 focusprev(const void *arg
) {
672 for(c
= sel
->prev
; c
&& c
->isbanned
; c
= c
->prev
);
674 for(c
= clients
; c
&& c
->next
; c
= c
->next
);
675 for(; c
&& c
->isbanned
; c
= c
->prev
);
684 getclient(Window w
) {
687 for(c
= clients
; c
&& c
->win
!= w
; c
= c
->next
);
692 getcolor(const char *colstr
) {
693 Colormap cmap
= DefaultColormap(dpy
, screen
);
696 if(!XAllocNamedColor(dpy
, cmap
, colstr
, &color
, &color
))
697 eprint("error, cannot allocate color '%s'\n", colstr
);
705 unsigned char *p
= NULL
;
709 status
= XGetWindowProperty(dpy
, w
, wmatom
[WMState
], 0L, 2L, False
, wmatom
[WMState
],
710 &real
, &format
, &n
, &extra
, (unsigned char **)&p
);
711 if(status
!= Success
)
720 gettextprop(Window w
, Atom atom
, char *text
, uint size
) {
725 if(!text
|| size
== 0)
728 XGetTextProperty(dpy
, w
, &name
, atom
);
731 if(name
.encoding
== XA_STRING
)
732 strncpy(text
, (char *)name
.value
, size
- 1);
734 if(XmbTextPropertyToTextList(dpy
, &name
, &list
, &n
) >= Success
736 strncpy(text
, *list
, size
- 1);
737 XFreeStringList(list
);
740 text
[size
- 1] = '\0';
746 grabbuttons(Client
*c
, Bool focused
) {
748 uint buttons
[] = { Button1
, Button2
, Button3
};
749 uint modifiers
[] = { MODKEY
, MODKEY
|LockMask
, MODKEY
|numlockmask
,
750 MODKEY
|numlockmask
|LockMask
} ;
752 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
754 for(i
= 0; i
< LENGTH(buttons
); i
++)
755 for(j
= 0; j
< LENGTH(modifiers
); j
++)
756 XGrabButton(dpy
, buttons
[i
], modifiers
[j
], c
->win
, False
,
757 BUTTONMASK
, GrabModeAsync
, GrabModeSync
, None
, None
);
759 XGrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
, False
,
760 BUTTONMASK
, GrabModeAsync
, GrabModeSync
, None
, None
);
767 XModifierKeymap
*modmap
;
769 /* init modifier map */
770 modmap
= XGetModifierMapping(dpy
);
771 for(i
= 0; i
< 8; i
++)
772 for(j
= 0; j
< modmap
->max_keypermod
; j
++) {
773 if(modmap
->modifiermap
[i
* modmap
->max_keypermod
+ j
] == XKeysymToKeycode(dpy
, XK_Num_Lock
))
774 numlockmask
= (1 << i
);
776 XFreeModifiermap(modmap
);
778 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
779 for(i
= 0; i
< LENGTH(keys
); i
++) {
780 code
= XKeysymToKeycode(dpy
, keys
[i
].keysym
);
781 XGrabKey(dpy
, code
, keys
[i
].mod
, root
, True
,
782 GrabModeAsync
, GrabModeAsync
);
783 XGrabKey(dpy
, code
, keys
[i
].mod
|LockMask
, root
, True
,
784 GrabModeAsync
, GrabModeAsync
);
785 XGrabKey(dpy
, code
, keys
[i
].mod
|numlockmask
, root
, True
,
786 GrabModeAsync
, GrabModeAsync
);
787 XGrabKey(dpy
, code
, keys
[i
].mod
|numlockmask
|LockMask
, root
, True
,
788 GrabModeAsync
, GrabModeAsync
);
793 initfont(const char *fontstr
) {
794 char *def
, **missing
;
799 XFreeFontSet(dpy
, dc
.font
.set
);
800 dc
.font
.set
= XCreateFontSet(dpy
, fontstr
, &missing
, &n
, &def
);
803 fprintf(stderr
, "dwm: missing fontset: %s\n", missing
[n
]);
804 XFreeStringList(missing
);
807 XFontSetExtents
*font_extents
;
808 XFontStruct
**xfonts
;
810 dc
.font
.ascent
= dc
.font
.descent
= 0;
811 font_extents
= XExtentsOfFontSet(dc
.font
.set
);
812 n
= XFontsOfFontSet(dc
.font
.set
, &xfonts
, &font_names
);
813 for(i
= 0, dc
.font
.ascent
= 0, dc
.font
.descent
= 0; i
< n
; i
++) {
814 dc
.font
.ascent
= MAX(dc
.font
.ascent
, (*xfonts
)->ascent
);
815 dc
.font
.descent
= MAX(dc
.font
.descent
,(*xfonts
)->descent
);
821 XFreeFont(dpy
, dc
.font
.xfont
);
822 dc
.font
.xfont
= NULL
;
823 if(!(dc
.font
.xfont
= XLoadQueryFont(dpy
, fontstr
))
824 && !(dc
.font
.xfont
= XLoadQueryFont(dpy
, "fixed")))
825 eprint("error, cannot load font: '%s'\n", fontstr
);
826 dc
.font
.ascent
= dc
.font
.xfont
->ascent
;
827 dc
.font
.descent
= dc
.font
.xfont
->descent
;
829 dc
.font
.height
= dc
.font
.ascent
+ dc
.font
.descent
;
836 for(c
= clients
; c
; c
= c
->next
)
843 isprotodel(Client
*c
) {
848 if(XGetWMProtocols(dpy
, c
->win
, &protocols
, &n
)) {
849 for(i
= 0; !ret
&& i
< n
; i
++)
850 if(protocols
[i
] == wmatom
[WMDelete
])
861 for(c
= clients
; c
; c
= c
->next
)
862 if(c
->isurgent
&& c
->tags
& 1 << t
)
868 keypress(XEvent
*e
) {
874 keysym
= XKeycodeToKeysym(dpy
, (KeyCode
)ev
->keycode
, 0);
875 for(i
= 0; i
< LENGTH(keys
); i
++)
876 if(keysym
== keys
[i
].keysym
877 && CLEANMASK(keys
[i
].mod
) == CLEANMASK(ev
->state
)
879 keys
[i
].func(keys
[i
].arg
);
883 killclient(const void *arg
) {
888 if(isprotodel(sel
)) {
889 ev
.type
= ClientMessage
;
890 ev
.xclient
.window
= sel
->win
;
891 ev
.xclient
.message_type
= wmatom
[WMProtocols
];
892 ev
.xclient
.format
= 32;
893 ev
.xclient
.data
.l
[0] = wmatom
[WMDelete
];
894 ev
.xclient
.data
.l
[1] = CurrentTime
;
895 XSendEvent(dpy
, sel
->win
, False
, NoEventMask
, &ev
);
898 XKillClient(dpy
, sel
->win
);
902 manage(Window w
, XWindowAttributes
*wa
) {
903 Client
*c
, *t
= NULL
;
908 if(!(c
= calloc(1, sizeof(Client
))))
909 eprint("fatal: could not calloc() %u bytes\n", sizeof(Client
));
917 c
->oldbw
= wa
->border_width
;
918 if(c
->w
== sw
&& c
->h
== sh
) {
921 c
->bw
= wa
->border_width
;
924 if(c
->x
+ c
->w
+ 2 * c
->bw
> sx
+ sw
)
925 c
->x
= sx
+ sw
- c
->w
- 2 * c
->bw
;
926 if(c
->y
+ c
->h
+ 2 * c
->bw
> sy
+ sh
)
927 c
->y
= sy
+ sh
- c
->h
- 2 * c
->bw
;
928 c
->x
= MAX(c
->x
, sx
);
929 c
->y
= MAX(c
->y
, by
== 0 ? bh
: sy
);
933 wc
.border_width
= c
->bw
;
934 XConfigureWindow(dpy
, w
, CWBorderWidth
, &wc
);
935 XSetWindowBorder(dpy
, w
, dc
.norm
[ColBorder
]);
936 configure(c
); /* propagates border_width, if size doesn't change */
938 XSelectInput(dpy
, w
, EnterWindowMask
|FocusChangeMask
|PropertyChangeMask
|StructureNotifyMask
);
939 grabbuttons(c
, False
);
941 if((rettrans
= XGetTransientForHint(dpy
, w
, &trans
) == Success
))
942 for(t
= clients
; t
&& t
->win
!= trans
; t
= t
->next
);
948 c
->isfloating
= (rettrans
== Success
) || c
->isfixed
;
951 XMoveResizeWindow(dpy
, c
->win
, c
->x
, c
->y
, c
->w
, c
->h
); /* some windows require this */
952 XMapWindow(dpy
, c
->win
);
953 setclientstate(c
, NormalState
);
958 mappingnotify(XEvent
*e
) {
959 XMappingEvent
*ev
= &e
->xmapping
;
961 XRefreshKeyboardMapping(ev
);
962 if(ev
->request
== MappingKeyboard
)
967 maprequest(XEvent
*e
) {
968 static XWindowAttributes wa
;
969 XMapRequestEvent
*ev
= &e
->xmaprequest
;
971 if(!XGetWindowAttributes(dpy
, ev
->window
, &wa
))
973 if(wa
.override_redirect
)
975 if(!getclient(ev
->window
))
976 manage(ev
->window
, &wa
);
980 movemouse(Client
*c
) {
981 int x1
, y1
, ocx
, ocy
, di
, nx
, ny
;
989 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
990 None
, cursor
[CurMove
], CurrentTime
) != GrabSuccess
)
992 XQueryPointer(dpy
, root
, &dummy
, &dummy
, &x1
, &y1
, &di
, &di
, &dui
);
994 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
997 XUngrabPointer(dpy
, CurrentTime
);
999 case ConfigureRequest
:
1002 handler
[ev
.type
](&ev
);
1006 nx
= ocx
+ (ev
.xmotion
.x
- x1
);
1007 ny
= ocy
+ (ev
.xmotion
.y
- y1
);
1008 if(snap
&& nx
>= wx
&& nx
<= wx
+ ww
1009 && ny
>= wy
&& ny
<= wy
+ wh
) {
1010 if(abs(wx
- nx
) < snap
)
1012 else if(abs((wx
+ ww
) - (nx
+ c
->w
+ 2 * c
->bw
)) < snap
)
1013 nx
= wx
+ ww
- c
->w
- 2 * c
->bw
;
1014 if(abs(wy
- ny
) < snap
)
1016 else if(abs((wy
+ wh
) - (ny
+ c
->h
+ 2 * c
->bw
)) < snap
)
1017 ny
= wy
+ wh
- c
->h
- 2 * c
->bw
;
1018 if(!c
->isfloating
&& lt
->arrange
&& (abs(nx
- c
->x
) > snap
|| abs(ny
- c
->y
) > snap
))
1019 togglefloating(NULL
);
1021 if(!lt
->arrange
|| c
->isfloating
)
1022 resize(c
, nx
, ny
, c
->w
, c
->h
, False
);
1029 nexttiled(Client
*c
) {
1030 for(; c
&& (c
->isfloating
|| c
->isbanned
); c
= c
->next
);
1035 propertynotify(XEvent
*e
) {
1038 XPropertyEvent
*ev
= &e
->xproperty
;
1040 if(ev
->state
== PropertyDelete
)
1041 return; /* ignore */
1042 if((c
= getclient(ev
->window
))) {
1045 case XA_WM_TRANSIENT_FOR
:
1046 XGetTransientForHint(dpy
, c
->win
, &trans
);
1047 if(!c
->isfloating
&& (c
->isfloating
= (getclient(trans
) != NULL
)))
1050 case XA_WM_NORMAL_HINTS
:
1058 if(ev
->atom
== XA_WM_NAME
|| ev
->atom
== netatom
[NetWMName
]) {
1067 quit(const void *arg
) {
1068 readin
= running
= False
;
1072 resize(Client
*c
, int x
, int y
, int w
, int h
, Bool sizehints
) {
1076 /* set minimum possible */
1080 /* temporarily remove base dimensions */
1084 /* adjust for aspect limits */
1085 if(c
->minax
!= c
->maxax
&& c
->minay
!= c
->maxay
1086 && c
->minax
> 0 && c
->maxax
> 0 && c
->minay
> 0 && c
->maxay
> 0) {
1087 if(w
* c
->maxay
> h
* c
->maxax
)
1088 w
= h
* c
->maxax
/ c
->maxay
;
1089 else if(w
* c
->minay
< h
* c
->minax
)
1090 h
= w
* c
->minay
/ c
->minax
;
1093 /* adjust for increment value */
1099 /* restore base dimensions */
1103 w
= MAX(w
, c
->minw
);
1104 h
= MAX(h
, c
->minh
);
1107 w
= MIN(w
, c
->maxw
);
1110 h
= MIN(h
, c
->maxh
);
1112 if(w
<= 0 || h
<= 0)
1115 x
= sw
- w
- 2 * c
->bw
;
1117 y
= sh
- h
- 2 * c
->bw
;
1118 if(x
+ w
+ 2 * c
->bw
< sx
)
1120 if(y
+ h
+ 2 * c
->bw
< sy
)
1126 if(c
->x
!= x
|| c
->y
!= y
|| c
->w
!= w
|| c
->h
!= h
|| c
->ismoved
) {
1127 c
->isbanned
= c
->ismoved
= False
;
1130 c
->w
= wc
.width
= w
;
1131 c
->h
= wc
.height
= h
;
1132 wc
.border_width
= c
->bw
;
1133 XConfigureWindow(dpy
, c
->win
,
1134 CWX
|CWY
|CWWidth
|CWHeight
|CWBorderWidth
, &wc
);
1141 resizemouse(Client
*c
) {
1149 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1150 None
, cursor
[CurResize
], CurrentTime
) != GrabSuccess
)
1152 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1154 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1157 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0,
1158 c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1159 XUngrabPointer(dpy
, CurrentTime
);
1160 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1162 case ConfigureRequest
:
1165 handler
[ev
.type
](&ev
);
1169 nw
= MAX(ev
.xmotion
.x
- ocx
- 2 * c
->bw
+ 1, 1);
1170 nh
= MAX(ev
.xmotion
.y
- ocy
- 2 * c
->bw
+ 1, 1);
1172 if(snap
&& nw
>= wx
&& nw
<= wx
+ ww
1173 && nh
>= wy
&& nh
<= wy
+ wh
) {
1174 if(!c
->isfloating
&& lt
->arrange
1175 && (abs(nw
- c
->w
) > snap
|| abs(nh
- c
->h
) > snap
))
1176 togglefloating(NULL
);
1178 if(!lt
->arrange
|| c
->isfloating
)
1179 resize(c
, c
->x
, c
->y
, nw
, nh
, True
);
1194 if(ismax
|| sel
->isfloating
|| !lt
->arrange
)
1195 XRaiseWindow(dpy
, sel
->win
);
1196 if(!ismax
&& lt
->arrange
) {
1197 wc
.stack_mode
= Below
;
1198 wc
.sibling
= barwin
;
1199 for(c
= stack
; c
; c
= c
->snext
)
1200 if(!c
->isfloating
&& !c
->isbanned
) {
1201 XConfigureWindow(dpy
, c
->win
, CWSibling
|CWStackMode
, &wc
);
1202 wc
.sibling
= c
->win
;
1206 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1212 char sbuf
[sizeof stext
];
1218 /* main event loop, also reads status text from stdin */
1220 xfd
= ConnectionNumber(dpy
);
1223 len
= sizeof stext
- 1;
1224 sbuf
[len
] = stext
[len
] = '\0'; /* 0-terminator is never touched */
1228 FD_SET(STDIN_FILENO
, &rd
);
1230 if(select(xfd
+ 1, &rd
, NULL
, NULL
, NULL
) == -1) {
1233 eprint("select failed\n");
1235 if(FD_ISSET(STDIN_FILENO
, &rd
)) {
1236 switch((r
= read(STDIN_FILENO
, sbuf
+ offset
, len
- offset
))) {
1238 strncpy(stext
, strerror(errno
), len
);
1242 strncpy(stext
, "EOF", 4);
1246 for(p
= sbuf
+ offset
; r
> 0; p
++, r
--, offset
++)
1247 if(*p
== '\n' || *p
== '\0') {
1249 strncpy(stext
, sbuf
, len
);
1250 p
+= r
- 1; /* p is sbuf + offset + r - 1 */
1251 for(r
= 0; *(p
- r
) && *(p
- r
) != '\n'; r
++);
1254 memmove(sbuf
, p
- r
+ 1, r
);
1261 while(XPending(dpy
)) {
1262 XNextEvent(dpy
, &ev
);
1263 if(handler
[ev
.type
])
1264 (handler
[ev
.type
])(&ev
); /* call handler */
1272 Window
*wins
, d1
, d2
;
1273 XWindowAttributes wa
;
1276 if(XQueryTree(dpy
, root
, &d1
, &d2
, &wins
, &num
)) {
1277 for(i
= 0; i
< num
; i
++) {
1278 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
)
1279 || wa
.override_redirect
|| XGetTransientForHint(dpy
, wins
[i
], &d1
))
1281 if(wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
)
1282 manage(wins
[i
], &wa
);
1284 for(i
= 0; i
< num
; i
++) { /* now the transients */
1285 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
))
1287 if(XGetTransientForHint(dpy
, wins
[i
], &d1
)
1288 && (wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
))
1289 manage(wins
[i
], &wa
);
1297 setclientstate(Client
*c
, long state
) {
1298 long data
[] = {state
, None
};
1300 XChangeProperty(dpy
, c
->win
, wmatom
[WMState
], wmatom
[WMState
], 32,
1301 PropModeReplace
, (unsigned char *)data
, 2);
1304 /* arg > 1.0 will set mfact absolutly */
1306 setmfact(const void *arg
) {
1307 double d
= *((double*) arg
);
1309 if(!d
|| lt
->arrange
)
1311 d
= d
< 1.0 ? d
+ mfact
: d
- 1.0;
1312 if(d
< 0.1 || d
> 0.9)
1321 XSetWindowAttributes wa
;
1324 screen
= DefaultScreen(dpy
);
1325 root
= RootWindow(dpy
, screen
);
1329 sw
= DisplayWidth(dpy
, screen
);
1330 sh
= DisplayHeight(dpy
, screen
);
1331 bh
= dc
.font
.height
+ 2;
1335 wmatom
[WMProtocols
] = XInternAtom(dpy
, "WM_PROTOCOLS", False
);
1336 wmatom
[WMDelete
] = XInternAtom(dpy
, "WM_DELETE_WINDOW", False
);
1337 wmatom
[WMName
] = XInternAtom(dpy
, "WM_NAME", False
);
1338 wmatom
[WMState
] = XInternAtom(dpy
, "WM_STATE", False
);
1339 netatom
[NetSupported
] = XInternAtom(dpy
, "_NET_SUPPORTED", False
);
1340 netatom
[NetWMName
] = XInternAtom(dpy
, "_NET_WM_NAME", False
);
1343 wa
.cursor
= cursor
[CurNormal
] = XCreateFontCursor(dpy
, XC_left_ptr
);
1344 cursor
[CurResize
] = XCreateFontCursor(dpy
, XC_sizing
);
1345 cursor
[CurMove
] = XCreateFontCursor(dpy
, XC_fleur
);
1347 /* init appearance */
1348 dc
.norm
[ColBorder
] = getcolor(NORMBORDERCOLOR
);
1349 dc
.norm
[ColBG
] = getcolor(NORMBGCOLOR
);
1350 dc
.norm
[ColFG
] = getcolor(NORMFGCOLOR
);
1351 dc
.sel
[ColBorder
] = getcolor(SELBORDERCOLOR
);
1352 dc
.sel
[ColBG
] = getcolor(SELBGCOLOR
);
1353 dc
.sel
[ColFG
] = getcolor(SELFGCOLOR
);
1356 dc
.drawable
= XCreatePixmap(dpy
, root
, DisplayWidth(dpy
, screen
), bh
, DefaultDepth(dpy
, screen
));
1357 dc
.gc
= XCreateGC(dpy
, root
, 0, 0);
1358 XSetLineAttributes(dpy
, dc
.gc
, 1, LineSolid
, CapButt
, JoinMiter
);
1360 XSetFont(dpy
, dc
.gc
, dc
.font
.xfont
->fid
);
1363 for(blw
= i
= 0; LENGTH(layouts
) > 1 && i
< LENGTH(layouts
); i
++) {
1364 w
= TEXTW(layouts
[i
].symbol
);
1368 wa
.override_redirect
= 1;
1369 wa
.background_pixmap
= ParentRelative
;
1370 wa
.event_mask
= ButtonPressMask
|ExposureMask
;
1372 barwin
= XCreateWindow(dpy
, root
, wx
, by
, ww
, bh
, 0, DefaultDepth(dpy
, screen
),
1373 CopyFromParent
, DefaultVisual(dpy
, screen
),
1374 CWOverrideRedirect
|CWBackPixmap
|CWEventMask
, &wa
);
1375 XDefineCursor(dpy
, barwin
, cursor
[CurNormal
]);
1376 XMapRaised(dpy
, barwin
);
1377 strcpy(stext
, "dwm-"VERSION
);
1380 /* EWMH support per view */
1381 XChangeProperty(dpy
, root
, netatom
[NetSupported
], XA_ATOM
, 32,
1382 PropModeReplace
, (unsigned char *) netatom
, NetLast
);
1384 /* select for events */
1385 wa
.event_mask
= SubstructureRedirectMask
|SubstructureNotifyMask
1386 |EnterWindowMask
|LeaveWindowMask
|StructureNotifyMask
;
1387 XChangeWindowAttributes(dpy
, root
, CWEventMask
|CWCursor
, &wa
);
1388 XSelectInput(dpy
, root
, wa
.event_mask
);
1396 spawn(const void *arg
) {
1397 static char *shell
= NULL
;
1399 if(!shell
&& !(shell
= getenv("SHELL")))
1401 /* The double-fork construct avoids zombie processes and keeps the code
1402 * clean from stupid signal handlers. */
1406 close(ConnectionNumber(dpy
));
1408 execl(shell
, shell
, "-c", (char *)arg
, (char *)NULL
);
1409 fprintf(stderr
, "dwm: execl '%s -c %s'", shell
, (char *)arg
);
1418 tag(const void *arg
) {
1419 if(sel
&& *(int *)arg
& TAGMASK
) {
1420 sel
->tags
= *(int *)arg
& TAGMASK
;
1426 textnw(const char *text
, uint len
) {
1430 XmbTextExtents(dc
.font
.set
, text
, len
, NULL
, &r
);
1433 return XTextWidth(dc
.font
.xfont
, text
, len
);
1442 for(n
= 0, c
= nexttiled(clients
); c
; c
= nexttiled(c
->next
), n
++);
1447 c
= nexttiled(clients
);
1449 resize(c
, wx
, wy
, ((n
== 1) ? ww
: mw
) - 2 * c
->bw
, wh
- 2 * c
->bw
, resizehints
);
1455 x
= (wx
+ mw
> c
->x
+ c
->w
) ? c
->x
+ c
->w
+ 2 * c
->bw
: ww
- mw
;
1457 w
= (wx
+ mw
> c
->x
+ c
->w
) ? wx
+ ww
- x
: ww
- mw
;
1462 for(i
= 0, c
= nexttiled(c
->next
); c
; c
= nexttiled(c
->next
), i
++) {
1463 resize(c
, x
, y
, w
- 2 * c
->bw
, /* remainder */ ((i
+ 1 == n
)
1464 ? (wy
+ wh
) - y
: h
) - 2 * c
->bw
, resizehints
);
1466 y
= c
->y
+ c
->h
+ 2 * c
->bw
;
1471 togglebar(const void *arg
) {
1479 togglefloating(const void *arg
) {
1482 sel
->isfloating
= !sel
->isfloating
|| sel
->isfixed
;
1484 resize(sel
, sel
->x
, sel
->y
, sel
->w
, sel
->h
, True
);
1489 togglelayout(const void *arg
) {
1493 if(++lt
== &layouts
[LENGTH(layouts
)])
1497 for(i
= 0; i
< LENGTH(layouts
); i
++)
1498 if(!strcmp((char *)arg
, layouts
[i
].symbol
))
1500 if(i
== LENGTH(layouts
))
1511 togglemax(const void *arg
) {
1517 toggletag(const void *arg
) {
1518 if(sel
&& (sel
->tags
^ ((*(int *)arg
) & TAGMASK
))) {
1519 sel
->tags
^= (*(int *)arg
) & TAGMASK
;
1525 toggleview(const void *arg
) {
1526 if((tagset
[seltags
] ^ ((*(int *)arg
) & TAGMASK
))) {
1527 tagset
[seltags
] ^= (*(int *)arg
) & TAGMASK
;
1533 unmanage(Client
*c
) {
1536 wc
.border_width
= c
->oldbw
;
1537 /* The server grab construct avoids race conditions. */
1539 XSetErrorHandler(xerrordummy
);
1540 XConfigureWindow(dpy
, c
->win
, CWBorderWidth
, &wc
); /* restore border */
1545 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
1546 setclientstate(c
, WithdrawnState
);
1549 XSetErrorHandler(xerror
);
1555 unmapnotify(XEvent
*e
) {
1557 XUnmapEvent
*ev
= &e
->xunmap
;
1559 if((c
= getclient(ev
->window
)))
1565 if(dc
.drawable
!= 0)
1566 XFreePixmap(dpy
, dc
.drawable
);
1567 dc
.drawable
= XCreatePixmap(dpy
, root
, ww
, bh
, DefaultDepth(dpy
, screen
));
1568 XMoveResizeWindow(dpy
, barwin
, wx
, by
, ww
, bh
);
1575 XineramaScreenInfo
*info
= NULL
;
1577 /* window area geometry */
1578 if(XineramaIsActive(dpy
)) {
1579 info
= XineramaQueryScreens(dpy
, &i
);
1581 wy
= showbar
&& topbar
? info
[0].y_org
+ bh
: info
[0].y_org
;
1583 wh
= showbar
? info
[0].height
- bh
: info
[0].height
;
1590 wy
= showbar
&& topbar
? sy
+ bh
: sy
;
1592 wh
= showbar
? sh
- bh
: sh
;
1596 by
= showbar
? (topbar
? wy
- bh
: wy
+ wh
) : -bh
;
1600 updatesizehints(Client
*c
) {
1604 if(!XGetWMNormalHints(dpy
, c
->win
, &size
, &msize
) || !size
.flags
)
1606 c
->flags
= size
.flags
;
1607 if(c
->flags
& PBaseSize
) {
1608 c
->basew
= size
.base_width
;
1609 c
->baseh
= size
.base_height
;
1611 else if(c
->flags
& PMinSize
) {
1612 c
->basew
= size
.min_width
;
1613 c
->baseh
= size
.min_height
;
1616 c
->basew
= c
->baseh
= 0;
1617 if(c
->flags
& PResizeInc
) {
1618 c
->incw
= size
.width_inc
;
1619 c
->inch
= size
.height_inc
;
1622 c
->incw
= c
->inch
= 0;
1623 if(c
->flags
& PMaxSize
) {
1624 c
->maxw
= size
.max_width
;
1625 c
->maxh
= size
.max_height
;
1628 c
->maxw
= c
->maxh
= 0;
1629 if(c
->flags
& PMinSize
) {
1630 c
->minw
= size
.min_width
;
1631 c
->minh
= size
.min_height
;
1633 else if(c
->flags
& PBaseSize
) {
1634 c
->minw
= size
.base_width
;
1635 c
->minh
= size
.base_height
;
1638 c
->minw
= c
->minh
= 0;
1639 if(c
->flags
& PAspect
) {
1640 c
->minax
= size
.min_aspect
.x
;
1641 c
->maxax
= size
.max_aspect
.x
;
1642 c
->minay
= size
.min_aspect
.y
;
1643 c
->maxay
= size
.max_aspect
.y
;
1646 c
->minax
= c
->maxax
= c
->minay
= c
->maxay
= 0;
1647 c
->isfixed
= (c
->maxw
&& c
->minw
&& c
->maxh
&& c
->minh
1648 && c
->maxw
== c
->minw
&& c
->maxh
== c
->minh
);
1652 updatetitle(Client
*c
) {
1653 if(!gettextprop(c
->win
, netatom
[NetWMName
], c
->name
, sizeof c
->name
))
1654 gettextprop(c
->win
, wmatom
[WMName
], c
->name
, sizeof c
->name
);
1658 updatewmhints(Client
*c
) {
1661 if((wmh
= XGetWMHints(dpy
, c
->win
))) {
1663 sel
->isurgent
= False
;
1665 c
->isurgent
= (wmh
->flags
& XUrgencyHint
) ? True
: False
;
1671 view(const void *arg
) {
1672 if(*(int *)arg
& TAGMASK
) {
1673 seltags
^= 1; /* toggle sel tagset */
1674 tagset
[seltags
] = *(int *)arg
& TAGMASK
;
1680 viewprevtag(const void *arg
) {
1681 seltags
^= 1; /* toggle sel tagset */
1685 /* There's no way to check accesses to destroyed windows, thus those cases are
1686 * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
1687 * default error handler, which may call exit. */
1689 xerror(Display
*dpy
, XErrorEvent
*ee
) {
1690 if(ee
->error_code
== BadWindow
1691 || (ee
->request_code
== X_SetInputFocus
&& ee
->error_code
== BadMatch
)
1692 || (ee
->request_code
== X_PolyText8
&& ee
->error_code
== BadDrawable
)
1693 || (ee
->request_code
== X_PolyFillRectangle
&& ee
->error_code
== BadDrawable
)
1694 || (ee
->request_code
== X_PolySegment
&& ee
->error_code
== BadDrawable
)
1695 || (ee
->request_code
== X_ConfigureWindow
&& ee
->error_code
== BadMatch
)
1696 || (ee
->request_code
== X_GrabButton
&& ee
->error_code
== BadAccess
)
1697 || (ee
->request_code
== X_GrabKey
&& ee
->error_code
== BadAccess
)
1698 || (ee
->request_code
== X_CopyArea
&& ee
->error_code
== BadDrawable
))
1700 fprintf(stderr
, "dwm: fatal error: request code=%d, error code=%d\n",
1701 ee
->request_code
, ee
->error_code
);
1702 return xerrorxlib(dpy
, ee
); /* may call exit */
1706 xerrordummy(Display
*dpy
, XErrorEvent
*ee
) {
1710 /* Startup Error handler to check if another window manager
1711 * is already running. */
1713 xerrorstart(Display
*dpy
, XErrorEvent
*ee
) {
1719 zoom(const void *arg
) {
1722 if(ismax
|| !lt
->arrange
|| (sel
&& sel
->isfloating
))
1724 if(c
== nexttiled(clients
))
1725 if(!c
|| !(c
= nexttiled(c
->next
)))
1734 main(int argc
, char *argv
[]) {
1735 if(argc
== 2 && !strcmp("-v", argv
[1]))
1736 eprint("dwm-"VERSION
", © 2006-2008 dwm engineers, see LICENSE for details\n");
1738 eprint("usage: dwm [-v]\n");
1740 setlocale(LC_CTYPE
, "");
1741 if(!(dpy
= XOpenDisplay(0)))
1742 eprint("dwm: cannot open display\n");