Xinqi Bao's Git
1080d2d53e5ab68fa73211e18626536b80b25925
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 an array of Bools of the same size as the
20 * global tags array to indicate the tags of a client.
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>
44 #define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
45 #define CLEANMASK(mask) (mask & ~(numlockmask|LockMask))
46 #define LENGTH(x) (sizeof x / sizeof x[0])
48 #define MOUSEMASK (BUTTONMASK|PointerMotionMask)
49 #define DEFGEOM(GEONAME,BX,BY,BW,WX,WY,WW,WH,MX,MY,MW,MH,TX,TY,TW,TH,MOX,MOY,MOW,MOH) \
50 void GEONAME(void) { \
51 bx = (BX); by = (BY); bw = (BW); \
52 wx = (WX); wy = (WY); ww = (WW); wh = (WH); \
53 mx = (MX); my = (MY); mw = (MW); mh = (MH); \
54 tx = (TX); ty = (TY); tw = (TW); th = (TH); \
55 mox = (MOX); moy = (MOY); mow = (MOW); moh = (MOH); \
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
, WMName
, WMState
, WMLast
};/* default atoms */
65 typedef struct Client Client
;
69 int basew
, baseh
, incw
, inch
, maxw
, maxh
, minw
, minh
;
70 int minax
, maxax
, minay
, maxay
;
72 unsigned int bw
, oldbw
;
73 Bool isbanned
, isfixed
, isfloating
, isurgent
;
83 unsigned long norm
[ColLast
];
84 unsigned long sel
[ColLast
];
94 } DC
; /* draw context */
104 void (*func
)(const char *arg
);
110 void (*arrange
)(void);
116 const char *instance
;
122 /* function declarations */
123 void applyrules(Client
*c
);
125 void attach(Client
*c
);
126 void attachstack(Client
*c
);
128 void buttonpress(XEvent
*e
);
129 void checkotherwm(void);
131 void configure(Client
*c
);
132 void configurenotify(XEvent
*e
);
133 void configurerequest(XEvent
*e
);
134 unsigned int counttiled(void);
135 void destroynotify(XEvent
*e
);
136 void detach(Client
*c
);
137 void detachstack(Client
*c
);
139 void drawsquare(Bool filled
, Bool empty
, Bool invert
, unsigned long col
[ColLast
]);
140 void drawtext(const char *text
, unsigned long col
[ColLast
], Bool invert
);
141 void *emallocz(unsigned int size
);
142 void enternotify(XEvent
*e
);
143 void eprint(const char *errstr
, ...);
144 void expose(XEvent
*e
);
145 void floating(void); /* default floating layout */
146 void focus(Client
*c
);
147 void focusin(XEvent
*e
);
148 void focusnext(const char *arg
);
149 void focusprev(const char *arg
);
150 Client
*getclient(Window w
);
151 unsigned long getcolor(const char *colstr
);
152 long getstate(Window w
);
153 Bool
gettextprop(Window w
, Atom atom
, char *text
, unsigned int size
);
154 void grabbuttons(Client
*c
, Bool focused
);
156 unsigned int idxoftag(const char *t
);
157 void initfont(const char *fontstr
);
158 Bool
isoccupied(unsigned int t
);
159 Bool
isprotodel(Client
*c
);
160 Bool
isurgent(unsigned int t
);
161 Bool
isvisible(Client
*c
);
162 void keypress(XEvent
*e
);
163 void killclient(const char *arg
);
164 void manage(Window w
, XWindowAttributes
*wa
);
165 void mappingnotify(XEvent
*e
);
166 void maprequest(XEvent
*e
);
168 void movemouse(Client
*c
);
169 Client
*nexttiled(Client
*c
);
170 void propertynotify(XEvent
*e
);
171 void quit(const char *arg
);
172 void reapply(const char *arg
);
173 void resize(Client
*c
, int x
, int y
, int w
, int h
, Bool sizehints
);
174 void resizemouse(Client
*c
);
178 void setclientstate(Client
*c
, long state
);
179 void setgeom(const char *arg
);
180 void setlayout(const char *arg
);
181 void setmfact(const char *arg
);
183 void spawn(const char *arg
);
184 void tag(const char *arg
);
185 unsigned int textnw(const char *text
, unsigned int len
);
186 unsigned int textw(const char *text
);
188 void tilehstack(unsigned int n
);
189 Client
*tilemaster(unsigned int n
);
190 void tileresize(Client
*c
, int x
, int y
, int w
, int h
);
192 void tilevstack(unsigned int n
);
193 void togglefloating(const char *arg
);
194 void toggletag(const char *arg
);
195 void toggleview(const char *arg
);
196 void unban(Client
*c
);
197 void unmanage(Client
*c
);
198 void unmapnotify(XEvent
*e
);
199 void updatebarpos(void);
200 void updatesizehints(Client
*c
);
201 void updatetitle(Client
*c
);
202 void updatewmhints(Client
*c
);
203 void view(const char *arg
);
204 void viewprevtag(const char *arg
); /* views previous selected tags */
205 int xerror(Display
*dpy
, XErrorEvent
*ee
);
206 int xerrordummy(Display
*dpy
, XErrorEvent
*ee
);
207 int xerrorstart(Display
*dpy
, XErrorEvent
*ee
);
208 void zoom(const char *arg
);
211 char stext
[256], buf
[256];
212 int screen
, sx
, sy
, sw
, sh
;
213 int (*xerrorxlib
)(Display
*, XErrorEvent
*);
214 int bx
, by
, bw
, bh
, blw
, bgw
, mx
, my
, mw
, mh
, mox
, moy
, mow
, moh
, tx
, ty
, tw
, th
, wx
, wy
, ww
, wh
;
215 unsigned int numlockmask
= 0;
216 void (*handler
[LASTEvent
]) (XEvent
*) = {
217 [ButtonPress
] = buttonpress
,
218 [ConfigureRequest
] = configurerequest
,
219 [ConfigureNotify
] = configurenotify
,
220 [DestroyNotify
] = destroynotify
,
221 [EnterNotify
] = enternotify
,
224 [KeyPress
] = keypress
,
225 [MappingNotify
] = mappingnotify
,
226 [MapRequest
] = maprequest
,
227 [PropertyNotify
] = propertynotify
,
228 [UnmapNotify
] = unmapnotify
230 Atom wmatom
[WMLast
], netatom
[NetLast
];
231 Bool otherwm
, readin
;
235 Client
*clients
= NULL
;
237 Client
*stack
= NULL
;
238 Cursor cursor
[CurLast
];
245 /* configuration, allows nested code to access above variables */
247 #define TAGSZ (LENGTH(tags) * sizeof(Bool))
248 static Bool tmp
[LENGTH(tags
)];
250 /* function implementations */
253 applyrules(Client
*c
) {
255 Bool matched
= False
;
257 XClassHint ch
= { 0 };
260 XGetClassHint(dpy
, c
->win
, &ch
);
261 for(i
= 0; i
< LENGTH(rules
); i
++) {
263 if((r
->title
&& strstr(c
->name
, r
->title
))
264 || (ch
.res_class
&& r
->class && strstr(ch
.res_class
, r
->class))
265 || (ch
.res_name
&& r
->instance
&& strstr(ch
.res_name
, r
->instance
)))
267 c
->isfloating
= r
->isfloating
;
269 c
->tags
[idxoftag(r
->tag
)] = True
;
279 memcpy(c
->tags
, seltags
, TAGSZ
);
286 for(c
= clients
; c
; c
= c
->next
)
306 attachstack(Client
*c
) {
315 XMoveWindow(dpy
, c
->win
, c
->x
+ 2 * sw
, c
->y
);
320 buttonpress(XEvent
*e
) {
323 XButtonPressedEvent
*ev
= &e
->xbutton
;
325 if(ev
->window
== barwin
) {
326 if((ev
->x
< bgw
) && ev
->button
== Button1
) {
331 for(i
= 0; i
< LENGTH(tags
); i
++) {
333 if(ev
->x
>= bgw
&& ev
->x
< x
) {
334 if(ev
->button
== Button1
) {
335 if(ev
->state
& MODKEY
)
340 else if(ev
->button
== Button3
) {
341 if(ev
->state
& MODKEY
)
349 if((ev
->x
< x
+ blw
) && ev
->button
== Button1
)
352 else if((c
= getclient(ev
->window
))) {
354 if(CLEANMASK(ev
->state
) != MODKEY
)
356 if(ev
->button
== Button1
) {
360 else if(ev
->button
== Button2
) {
361 if((floating
!= lt
->arrange
) && c
->isfloating
)
362 togglefloating(NULL
);
366 else if(ev
->button
== Button3
&& !c
->isfixed
) {
376 XSetErrorHandler(xerrorstart
);
378 /* this causes an error if some other window manager is running */
379 XSelectInput(dpy
, DefaultRootWindow(dpy
), SubstructureRedirectMask
);
382 eprint("dwm: another window manager is already running\n");
384 XSetErrorHandler(NULL
);
385 xerrorxlib
= XSetErrorHandler(xerror
);
397 XFreeFontSet(dpy
, dc
.font
.set
);
399 XFreeFont(dpy
, dc
.font
.xfont
);
400 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
401 XFreePixmap(dpy
, dc
.drawable
);
403 XFreeCursor(dpy
, cursor
[CurNormal
]);
404 XFreeCursor(dpy
, cursor
[CurResize
]);
405 XFreeCursor(dpy
, cursor
[CurMove
]);
406 XDestroyWindow(dpy
, barwin
);
408 XSetInputFocus(dpy
, PointerRoot
, RevertToPointerRoot
, CurrentTime
);
412 configure(Client
*c
) {
415 ce
.type
= ConfigureNotify
;
423 ce
.border_width
= c
->bw
;
425 ce
.override_redirect
= False
;
426 XSendEvent(dpy
, c
->win
, False
, StructureNotifyMask
, (XEvent
*)&ce
);
430 configurenotify(XEvent
*e
) {
431 XConfigureEvent
*ev
= &e
->xconfigure
;
433 if(ev
->window
== root
&& (ev
->width
!= sw
|| ev
->height
!= sh
)) {
436 setgeom(geom
->symbol
);
441 configurerequest(XEvent
*e
) {
443 XConfigureRequestEvent
*ev
= &e
->xconfigurerequest
;
446 if((c
= getclient(ev
->window
))) {
447 if(ev
->value_mask
& CWBorderWidth
)
448 c
->bw
= ev
->border_width
;
449 if(c
->isfixed
|| c
->isfloating
|| lt
->isfloating
) {
450 if(ev
->value_mask
& CWX
)
452 if(ev
->value_mask
& CWY
)
454 if(ev
->value_mask
& CWWidth
)
456 if(ev
->value_mask
& CWHeight
)
458 if((c
->x
- sx
+ c
->w
) > sw
&& c
->isfloating
)
459 c
->x
= sx
+ (sw
/ 2 - c
->w
/ 2); /* center in x direction */
460 if((c
->y
- sy
+ c
->h
) > sh
&& c
->isfloating
)
461 c
->y
= sy
+ (sh
/ 2 - c
->h
/ 2); /* center in y direction */
462 if((ev
->value_mask
& (CWX
|CWY
))
463 && !(ev
->value_mask
& (CWWidth
|CWHeight
)))
466 XMoveResizeWindow(dpy
, c
->win
, c
->x
, c
->y
, c
->w
, c
->h
);
474 wc
.width
= ev
->width
;
475 wc
.height
= ev
->height
;
476 wc
.border_width
= ev
->border_width
;
477 wc
.sibling
= ev
->above
;
478 wc
.stack_mode
= ev
->detail
;
479 XConfigureWindow(dpy
, ev
->window
, ev
->value_mask
, &wc
);
489 for(n
= 0, c
= nexttiled(clients
); c
; c
= nexttiled(c
->next
), n
++);
494 destroynotify(XEvent
*e
) {
496 XDestroyWindowEvent
*ev
= &e
->xdestroywindow
;
498 if((c
= getclient(ev
->window
)))
505 c
->prev
->next
= c
->next
;
507 c
->next
->prev
= c
->prev
;
510 c
->next
= c
->prev
= NULL
;
514 detachstack(Client
*c
) {
517 for(tc
=&stack
; *tc
&& *tc
!= c
; tc
=&(*tc
)->snext
);
529 drawtext(geom
->symbol
, dc
.norm
, False
);
532 for(c
= stack
; c
&& !isvisible(c
); c
= c
->snext
);
533 for(i
= 0; i
< LENGTH(tags
); i
++) {
534 dc
.w
= textw(tags
[i
]);
536 drawtext(tags
[i
], dc
.sel
, isurgent(i
));
537 drawsquare(c
&& c
->tags
[i
], isoccupied(i
), isurgent(i
), dc
.sel
);
540 drawtext(tags
[i
], dc
.norm
, isurgent(i
));
541 drawsquare(c
&& c
->tags
[i
], isoccupied(i
), isurgent(i
), dc
.norm
);
547 drawtext(lt
->symbol
, dc
.norm
, False
);
558 drawtext(stext
, dc
.norm
, False
);
559 if((dc
.w
= dc
.x
- x
) > bh
) {
562 drawtext(c
->name
, dc
.sel
, False
);
563 drawsquare(False
, c
->isfloating
, False
, dc
.sel
);
566 drawtext(NULL
, dc
.norm
, False
);
568 XCopyArea(dpy
, dc
.drawable
, barwin
, dc
.gc
, 0, 0, bw
, bh
, 0, 0);
573 drawsquare(Bool filled
, Bool empty
, Bool invert
, unsigned long col
[ColLast
]) {
576 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
578 gcv
.foreground
= col
[invert
? ColBG
: ColFG
];
579 XChangeGC(dpy
, dc
.gc
, GCForeground
, &gcv
);
580 x
= (dc
.font
.ascent
+ dc
.font
.descent
+ 2) / 4;
584 r
.width
= r
.height
= x
+ 1;
585 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
588 r
.width
= r
.height
= x
;
589 XDrawRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
594 drawtext(const char *text
, unsigned long col
[ColLast
], Bool invert
) {
596 unsigned int len
, olen
;
597 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
599 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColFG
: ColBG
]);
600 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
604 olen
= len
= strlen(text
);
605 if(len
>= sizeof buf
)
606 len
= sizeof buf
- 1;
607 memcpy(buf
, text
, len
);
609 h
= dc
.font
.ascent
+ dc
.font
.descent
;
610 y
= dc
.y
+ (dc
.h
/ 2) - (h
/ 2) + dc
.font
.ascent
;
612 /* shorten text if necessary */
613 while(len
&& (w
= textnw(buf
, len
)) > dc
.w
- h
)
624 return; /* too long */
625 XSetForeground(dpy
, dc
.gc
, col
[invert
? ColBG
: ColFG
]);
627 XmbDrawString(dpy
, dc
.drawable
, dc
.font
.set
, dc
.gc
, x
, y
, buf
, len
);
629 XDrawString(dpy
, dc
.drawable
, dc
.gc
, x
, y
, buf
, len
);
633 emallocz(unsigned int size
) {
634 void *res
= calloc(1, size
);
637 eprint("fatal: could not malloc() %u bytes\n", size
);
642 enternotify(XEvent
*e
) {
644 XCrossingEvent
*ev
= &e
->xcrossing
;
646 if((ev
->mode
!= NotifyNormal
|| ev
->detail
== NotifyInferior
) && ev
->window
!= root
)
648 if((c
= getclient(ev
->window
)))
655 eprint(const char *errstr
, ...) {
658 va_start(ap
, errstr
);
659 vfprintf(stderr
, errstr
, ap
);
666 XExposeEvent
*ev
= &e
->xexpose
;
668 if(ev
->count
== 0 && (ev
->window
== barwin
))
673 floating(void) { /* default floating layout */
676 for(c
= clients
; c
; c
= c
->next
)
678 resize(c
, c
->x
, c
->y
, c
->w
, c
->h
, True
);
683 if(!c
|| (c
&& !isvisible(c
)))
684 for(c
= stack
; c
&& !isvisible(c
); c
= c
->snext
);
685 if(sel
&& sel
!= c
) {
686 grabbuttons(sel
, False
);
687 XSetWindowBorder(dpy
, sel
->win
, dc
.norm
[ColBorder
]);
692 grabbuttons(c
, True
);
696 XSetWindowBorder(dpy
, c
->win
, dc
.sel
[ColBorder
]);
697 XSetInputFocus(dpy
, c
->win
, RevertToPointerRoot
, CurrentTime
);
700 XSetInputFocus(dpy
, root
, RevertToPointerRoot
, CurrentTime
);
705 focusin(XEvent
*e
) { /* there are some broken focus acquiring clients */
706 XFocusChangeEvent
*ev
= &e
->xfocus
;
708 if(sel
&& ev
->window
!= sel
->win
)
709 XSetInputFocus(dpy
, sel
->win
, RevertToPointerRoot
, CurrentTime
);
713 focusnext(const char *arg
) {
718 for(c
= sel
->next
; c
&& !isvisible(c
); c
= c
->next
);
720 for(c
= clients
; c
&& !isvisible(c
); c
= c
->next
);
728 focusprev(const char *arg
) {
733 for(c
= sel
->prev
; c
&& !isvisible(c
); c
= c
->prev
);
735 for(c
= clients
; c
&& c
->next
; c
= c
->next
);
736 for(; c
&& !isvisible(c
); c
= c
->prev
);
745 getclient(Window w
) {
748 for(c
= clients
; c
&& c
->win
!= w
; c
= c
->next
);
753 getcolor(const char *colstr
) {
754 Colormap cmap
= DefaultColormap(dpy
, screen
);
757 if(!XAllocNamedColor(dpy
, cmap
, colstr
, &color
, &color
))
758 eprint("error, cannot allocate color '%s'\n", colstr
);
766 unsigned char *p
= NULL
;
767 unsigned long n
, extra
;
770 status
= XGetWindowProperty(dpy
, w
, wmatom
[WMState
], 0L, 2L, False
, wmatom
[WMState
],
771 &real
, &format
, &n
, &extra
, (unsigned char **)&p
);
772 if(status
!= Success
)
781 gettextprop(Window w
, Atom atom
, char *text
, unsigned int size
) {
786 if(!text
|| size
== 0)
789 XGetTextProperty(dpy
, w
, &name
, atom
);
792 if(name
.encoding
== XA_STRING
)
793 strncpy(text
, (char *)name
.value
, size
- 1);
795 if(XmbTextPropertyToTextList(dpy
, &name
, &list
, &n
) >= Success
797 strncpy(text
, *list
, size
- 1);
798 XFreeStringList(list
);
801 text
[size
- 1] = '\0';
807 grabbuttons(Client
*c
, Bool focused
) {
808 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
811 XGrabButton(dpy
, Button1
, MODKEY
, c
->win
, False
, BUTTONMASK
,
812 GrabModeAsync
, GrabModeSync
, None
, None
);
813 XGrabButton(dpy
, Button1
, MODKEY
|LockMask
, c
->win
, False
, BUTTONMASK
,
814 GrabModeAsync
, GrabModeSync
, None
, None
);
815 XGrabButton(dpy
, Button1
, MODKEY
|numlockmask
, c
->win
, False
, BUTTONMASK
,
816 GrabModeAsync
, GrabModeSync
, None
, None
);
817 XGrabButton(dpy
, Button1
, MODKEY
|numlockmask
|LockMask
, c
->win
, False
, BUTTONMASK
,
818 GrabModeAsync
, GrabModeSync
, None
, None
);
820 XGrabButton(dpy
, Button2
, MODKEY
, c
->win
, False
, BUTTONMASK
,
821 GrabModeAsync
, GrabModeSync
, None
, None
);
822 XGrabButton(dpy
, Button2
, MODKEY
|LockMask
, c
->win
, False
, BUTTONMASK
,
823 GrabModeAsync
, GrabModeSync
, None
, None
);
824 XGrabButton(dpy
, Button2
, MODKEY
|numlockmask
, c
->win
, False
, BUTTONMASK
,
825 GrabModeAsync
, GrabModeSync
, None
, None
);
826 XGrabButton(dpy
, Button2
, MODKEY
|numlockmask
|LockMask
, c
->win
, False
, BUTTONMASK
,
827 GrabModeAsync
, GrabModeSync
, None
, None
);
829 XGrabButton(dpy
, Button3
, MODKEY
, c
->win
, False
, BUTTONMASK
,
830 GrabModeAsync
, GrabModeSync
, None
, None
);
831 XGrabButton(dpy
, Button3
, MODKEY
|LockMask
, c
->win
, False
, BUTTONMASK
,
832 GrabModeAsync
, GrabModeSync
, None
, None
);
833 XGrabButton(dpy
, Button3
, MODKEY
|numlockmask
, c
->win
, False
, BUTTONMASK
,
834 GrabModeAsync
, GrabModeSync
, None
, None
);
835 XGrabButton(dpy
, Button3
, MODKEY
|numlockmask
|LockMask
, c
->win
, False
, BUTTONMASK
,
836 GrabModeAsync
, GrabModeSync
, None
, None
);
839 XGrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
, False
, BUTTONMASK
,
840 GrabModeAsync
, GrabModeSync
, None
, None
);
847 XModifierKeymap
*modmap
;
849 /* init modifier map */
850 modmap
= XGetModifierMapping(dpy
);
851 for(i
= 0; i
< 8; i
++)
852 for(j
= 0; j
< modmap
->max_keypermod
; j
++) {
853 if(modmap
->modifiermap
[i
* modmap
->max_keypermod
+ j
] == XKeysymToKeycode(dpy
, XK_Num_Lock
))
854 numlockmask
= (1 << i
);
856 XFreeModifiermap(modmap
);
858 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
859 for(i
= 0; i
< LENGTH(keys
); i
++) {
860 code
= XKeysymToKeycode(dpy
, keys
[i
].keysym
);
861 XGrabKey(dpy
, code
, keys
[i
].mod
, root
, True
,
862 GrabModeAsync
, GrabModeAsync
);
863 XGrabKey(dpy
, code
, keys
[i
].mod
|LockMask
, root
, True
,
864 GrabModeAsync
, GrabModeAsync
);
865 XGrabKey(dpy
, code
, keys
[i
].mod
|numlockmask
, root
, True
,
866 GrabModeAsync
, GrabModeAsync
);
867 XGrabKey(dpy
, code
, keys
[i
].mod
|numlockmask
|LockMask
, root
, True
,
868 GrabModeAsync
, GrabModeAsync
);
873 idxoftag(const char *t
) {
876 for(i
= 0; (i
< LENGTH(tags
)) && t
&& strcmp(tags
[i
], t
); i
++);
877 return (i
< LENGTH(tags
)) ? i
: 0;
881 initfont(const char *fontstr
) {
882 char *def
, **missing
;
887 XFreeFontSet(dpy
, dc
.font
.set
);
888 dc
.font
.set
= XCreateFontSet(dpy
, fontstr
, &missing
, &n
, &def
);
891 fprintf(stderr
, "dwm: missing fontset: %s\n", missing
[n
]);
892 XFreeStringList(missing
);
895 XFontSetExtents
*font_extents
;
896 XFontStruct
**xfonts
;
898 dc
.font
.ascent
= dc
.font
.descent
= 0;
899 font_extents
= XExtentsOfFontSet(dc
.font
.set
);
900 n
= XFontsOfFontSet(dc
.font
.set
, &xfonts
, &font_names
);
901 for(i
= 0, dc
.font
.ascent
= 0, dc
.font
.descent
= 0; i
< n
; i
++) {
902 if(dc
.font
.ascent
< (*xfonts
)->ascent
)
903 dc
.font
.ascent
= (*xfonts
)->ascent
;
904 if(dc
.font
.descent
< (*xfonts
)->descent
)
905 dc
.font
.descent
= (*xfonts
)->descent
;
911 XFreeFont(dpy
, dc
.font
.xfont
);
912 dc
.font
.xfont
= NULL
;
913 if(!(dc
.font
.xfont
= XLoadQueryFont(dpy
, fontstr
))
914 && !(dc
.font
.xfont
= XLoadQueryFont(dpy
, "fixed")))
915 eprint("error, cannot load font: '%s'\n", fontstr
);
916 dc
.font
.ascent
= dc
.font
.xfont
->ascent
;
917 dc
.font
.descent
= dc
.font
.xfont
->descent
;
919 dc
.font
.height
= dc
.font
.ascent
+ dc
.font
.descent
;
923 isoccupied(unsigned int t
) {
926 for(c
= clients
; c
; c
= c
->next
)
933 isprotodel(Client
*c
) {
938 if(XGetWMProtocols(dpy
, c
->win
, &protocols
, &n
)) {
939 for(i
= 0; !ret
&& i
< n
; i
++)
940 if(protocols
[i
] == wmatom
[WMDelete
])
948 isurgent(unsigned int t
) {
951 for(c
= clients
; c
; c
= c
->next
)
952 if(c
->isurgent
&& c
->tags
[t
])
958 isvisible(Client
*c
) {
961 for(i
= 0; i
< LENGTH(tags
); i
++)
962 if(c
->tags
[i
] && seltags
[i
])
968 keypress(XEvent
*e
) {
974 keysym
= XKeycodeToKeysym(dpy
, (KeyCode
)ev
->keycode
, 0);
975 for(i
= 0; i
< LENGTH(keys
); i
++)
976 if(keysym
== keys
[i
].keysym
977 && CLEANMASK(keys
[i
].mod
) == CLEANMASK(ev
->state
))
980 keys
[i
].func(keys
[i
].arg
);
985 killclient(const char *arg
) {
990 if(isprotodel(sel
)) {
991 ev
.type
= ClientMessage
;
992 ev
.xclient
.window
= sel
->win
;
993 ev
.xclient
.message_type
= wmatom
[WMProtocols
];
994 ev
.xclient
.format
= 32;
995 ev
.xclient
.data
.l
[0] = wmatom
[WMDelete
];
996 ev
.xclient
.data
.l
[1] = CurrentTime
;
997 XSendEvent(dpy
, sel
->win
, False
, NoEventMask
, &ev
);
1000 XKillClient(dpy
, sel
->win
);
1004 manage(Window w
, XWindowAttributes
*wa
) {
1005 Client
*c
, *t
= NULL
;
1010 c
= emallocz(sizeof(Client
));
1011 c
->tags
= emallocz(TAGSZ
);
1019 c
->oldbw
= wa
->border_width
;
1020 if(c
->w
== sw
&& c
->h
== sh
) {
1023 c
->bw
= wa
->border_width
;
1026 if(c
->x
+ c
->w
+ 2 * c
->bw
> wx
+ ww
)
1027 c
->x
= wx
+ ww
- c
->w
- 2 * c
->bw
;
1028 if(c
->y
+ c
->h
+ 2 * c
->bw
> wy
+ wh
)
1029 c
->y
= wy
+ wh
- c
->h
- 2 * c
->bw
;
1037 wc
.border_width
= c
->bw
;
1038 XConfigureWindow(dpy
, w
, CWBorderWidth
, &wc
);
1039 XSetWindowBorder(dpy
, w
, dc
.norm
[ColBorder
]);
1040 configure(c
); /* propagates border_width, if size doesn't change */
1042 XSelectInput(dpy
, w
, EnterWindowMask
|FocusChangeMask
|PropertyChangeMask
|StructureNotifyMask
);
1043 grabbuttons(c
, False
);
1045 if((rettrans
= XGetTransientForHint(dpy
, w
, &trans
) == Success
))
1046 for(t
= clients
; t
&& t
->win
!= trans
; t
= t
->next
);
1048 memcpy(c
->tags
, t
->tags
, TAGSZ
);
1052 c
->isfloating
= (rettrans
== Success
) || c
->isfixed
;
1055 XMoveResizeWindow(dpy
, c
->win
, c
->x
, c
->y
, c
->w
, c
->h
); /* some windows require this */
1057 XMapWindow(dpy
, c
->win
);
1058 setclientstate(c
, NormalState
);
1063 mappingnotify(XEvent
*e
) {
1064 XMappingEvent
*ev
= &e
->xmapping
;
1066 XRefreshKeyboardMapping(ev
);
1067 if(ev
->request
== MappingKeyboard
)
1072 maprequest(XEvent
*e
) {
1073 static XWindowAttributes wa
;
1074 XMapRequestEvent
*ev
= &e
->xmaprequest
;
1076 if(!XGetWindowAttributes(dpy
, ev
->window
, &wa
))
1078 if(wa
.override_redirect
)
1080 if(!getclient(ev
->window
))
1081 manage(ev
->window
, &wa
);
1088 for(c
= clients
; c
; c
= c
->next
)
1090 resize(c
, mox
, moy
, mow
- 2 * c
->bw
, moh
- 2 * c
->bw
, RESIZEHINTS
);
1094 movemouse(Client
*c
) {
1095 int x1
, y1
, ocx
, ocy
, di
, nx
, ny
;
1102 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1103 None
, cursor
[CurMove
], CurrentTime
) != GrabSuccess
)
1105 XQueryPointer(dpy
, root
, &dummy
, &dummy
, &x1
, &y1
, &di
, &di
, &dui
);
1107 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1110 XUngrabPointer(dpy
, CurrentTime
);
1112 case ConfigureRequest
:
1115 handler
[ev
.type
](&ev
);
1119 nx
= ocx
+ (ev
.xmotion
.x
- x1
);
1120 ny
= ocy
+ (ev
.xmotion
.y
- y1
);
1121 if(abs(wx
- nx
) < SNAP
)
1123 else if(abs((wx
+ ww
) - (nx
+ c
->w
+ 2 * c
->bw
)) < SNAP
)
1124 nx
= wx
+ ww
- c
->w
- 2 * c
->bw
;
1125 if(abs(wy
- ny
) < SNAP
)
1127 else if(abs((wy
+ wh
) - (ny
+ c
->h
+ 2 * c
->bw
)) < SNAP
)
1128 ny
= wy
+ wh
- c
->h
- 2 * c
->bw
;
1129 if(!c
->isfloating
&& !lt
->isfloating
&& (abs(nx
- c
->x
) > SNAP
|| abs(ny
- c
->y
) > SNAP
))
1130 togglefloating(NULL
);
1131 if((lt
->isfloating
) || c
->isfloating
)
1132 resize(c
, nx
, ny
, c
->w
, c
->h
, False
);
1139 nexttiled(Client
*c
) {
1140 for(; c
&& (c
->isfloating
|| !isvisible(c
)); c
= c
->next
);
1145 propertynotify(XEvent
*e
) {
1148 XPropertyEvent
*ev
= &e
->xproperty
;
1150 if(ev
->state
== PropertyDelete
)
1151 return; /* ignore */
1152 if((c
= getclient(ev
->window
))) {
1155 case XA_WM_TRANSIENT_FOR
:
1156 XGetTransientForHint(dpy
, c
->win
, &trans
);
1157 if(!c
->isfloating
&& (c
->isfloating
= (getclient(trans
) != NULL
)))
1160 case XA_WM_NORMAL_HINTS
:
1168 if(ev
->atom
== XA_WM_NAME
|| ev
->atom
== netatom
[NetWMName
]) {
1177 quit(const char *arg
) {
1178 readin
= running
= False
;
1182 reapply(const char *arg
) {
1183 static Bool zerotags
[LENGTH(tags
)] = { 0 };
1186 for(c
= clients
; c
; c
= c
->next
) {
1187 memcpy(c
->tags
, zerotags
, sizeof zerotags
);
1194 resize(Client
*c
, int x
, int y
, int w
, int h
, Bool sizehints
) {
1198 /* set minimum possible */
1204 /* temporarily remove base dimensions */
1208 /* adjust for aspect limits */
1209 if(c
->minax
!= c
->maxax
&& c
->minay
!= c
->maxay
1210 && c
->minax
> 0 && c
->maxax
> 0 && c
->minay
> 0 && c
->maxay
> 0)
1212 if (w
* c
->maxay
> h
* c
->maxax
)
1213 w
= h
* c
->maxax
/ c
->maxay
;
1214 else if (w
* c
->minay
< h
* c
->minax
)
1215 h
= w
* c
->minay
/ c
->minax
;
1218 /* adjust for increment value */
1224 /* restore base dimensions */
1228 if(c
->minw
> 0 && w
< c
->minw
)
1230 if(c
->minh
> 0 && h
< c
->minh
)
1232 if(c
->maxw
> 0 && w
> c
->maxw
)
1234 if(c
->maxh
> 0 && h
> c
->maxh
)
1237 if(w
<= 0 || h
<= 0)
1240 x
= sw
- w
- 2 * c
->bw
;
1242 y
= sh
- h
- 2 * c
->bw
;
1243 if(x
+ w
+ 2 * c
->bw
< sx
)
1245 if(y
+ h
+ 2 * c
->bw
< sy
)
1247 if(c
->x
!= x
|| c
->y
!= y
|| c
->w
!= w
|| c
->h
!= h
) {
1250 c
->w
= wc
.width
= w
;
1251 c
->h
= wc
.height
= h
;
1252 wc
.border_width
= c
->bw
;
1253 XConfigureWindow(dpy
, c
->win
,
1254 CWX
|CWY
|CWWidth
|CWHeight
|CWBorderWidth
, &wc
);
1261 resizemouse(Client
*c
) {
1268 if(XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1269 None
, cursor
[CurResize
], CurrentTime
) != GrabSuccess
)
1271 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1273 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1276 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0,
1277 c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1278 XUngrabPointer(dpy
, CurrentTime
);
1279 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1281 case ConfigureRequest
:
1284 handler
[ev
.type
](&ev
);
1288 if((nw
= ev
.xmotion
.x
- ocx
- 2 * c
->bw
+ 1) <= 0)
1290 if((nh
= ev
.xmotion
.y
- ocy
- 2 * c
->bw
+ 1) <= 0)
1292 if(!c
->isfloating
&& !lt
->isfloating
&& (abs(nw
- c
->w
) > SNAP
|| abs(nh
- c
->h
) > SNAP
))
1293 togglefloating(NULL
);
1294 if((lt
->isfloating
) || c
->isfloating
)
1295 resize(c
, c
->x
, c
->y
, nw
, nh
, True
);
1310 if(sel
->isfloating
|| lt
->isfloating
)
1311 XRaiseWindow(dpy
, sel
->win
);
1312 if(!lt
->isfloating
) {
1313 wc
.stack_mode
= Below
;
1314 wc
.sibling
= barwin
;
1315 if(!sel
->isfloating
) {
1316 XConfigureWindow(dpy
, sel
->win
, CWSibling
|CWStackMode
, &wc
);
1317 wc
.sibling
= sel
->win
;
1319 for(c
= nexttiled(clients
); c
; c
= nexttiled(c
->next
)) {
1322 XConfigureWindow(dpy
, c
->win
, CWSibling
|CWStackMode
, &wc
);
1323 wc
.sibling
= c
->win
;
1327 while(XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1333 char sbuf
[sizeof stext
];
1336 unsigned int len
, offset
;
1339 /* main event loop, also reads status text from stdin */
1341 xfd
= ConnectionNumber(dpy
);
1344 len
= sizeof stext
- 1;
1345 sbuf
[len
] = stext
[len
] = '\0'; /* 0-terminator is never touched */
1349 FD_SET(STDIN_FILENO
, &rd
);
1351 if(select(xfd
+ 1, &rd
, NULL
, NULL
, NULL
) == -1) {
1354 eprint("select failed\n");
1356 if(FD_ISSET(STDIN_FILENO
, &rd
)) {
1357 switch((r
= read(STDIN_FILENO
, sbuf
+ offset
, len
- offset
))) {
1359 strncpy(stext
, strerror(errno
), len
);
1363 strncpy(stext
, "EOF", 4);
1367 for(p
= sbuf
+ offset
; r
> 0; p
++, r
--, offset
++)
1368 if(*p
== '\n' || *p
== '\0') {
1370 strncpy(stext
, sbuf
, len
);
1371 p
+= r
- 1; /* p is sbuf + offset + r - 1 */
1372 for(r
= 0; *(p
- r
) && *(p
- r
) != '\n'; r
++);
1375 memmove(sbuf
, p
- r
+ 1, r
);
1382 while(XPending(dpy
)) {
1383 XNextEvent(dpy
, &ev
);
1384 if(handler
[ev
.type
])
1385 (handler
[ev
.type
])(&ev
); /* call handler */
1392 unsigned int i
, num
;
1393 Window
*wins
, d1
, d2
;
1394 XWindowAttributes wa
;
1397 if(XQueryTree(dpy
, root
, &d1
, &d2
, &wins
, &num
)) {
1398 for(i
= 0; i
< num
; i
++) {
1399 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
)
1400 || wa
.override_redirect
|| XGetTransientForHint(dpy
, wins
[i
], &d1
))
1402 if(wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
)
1403 manage(wins
[i
], &wa
);
1405 for(i
= 0; i
< num
; i
++) { /* now the transients */
1406 if(!XGetWindowAttributes(dpy
, wins
[i
], &wa
))
1408 if(XGetTransientForHint(dpy
, wins
[i
], &d1
)
1409 && (wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
))
1410 manage(wins
[i
], &wa
);
1418 setclientstate(Client
*c
, long state
) {
1419 long data
[] = {state
, None
};
1421 XChangeProperty(dpy
, c
->win
, wmatom
[WMState
], wmatom
[WMState
], 32,
1422 PropModeReplace
, (unsigned char *)data
, 2);
1426 setgeom(const char *arg
) {
1430 if(++geom
== &geoms
[LENGTH(geoms
)])
1434 for(i
= 0; i
< LENGTH(geoms
); i
++)
1435 if(!strcmp(geoms
[i
].symbol
, arg
))
1437 if(i
== LENGTH(geoms
))
1447 setlayout(const char *arg
) {
1451 if(++lt
== &layouts
[LENGTH(layouts
)])
1455 for(i
= 0; i
< LENGTH(layouts
); i
++)
1456 if(!strcmp(arg
, layouts
[i
].symbol
))
1458 if(i
== LENGTH(layouts
))
1469 setmfact(const char *arg
) {
1472 if(!arg
|| lt
->isfloating
)
1474 delta
= strtod(arg
, NULL
);
1475 if(arg
[0] == '-' || arg
[0] == '+') {
1476 if(mfact
+ delta
< 0.1 || mfact
+ delta
> 0.9)
1481 if(delta
< 0.1 || delta
> 0.9)
1485 setgeom(geom
->symbol
);
1491 XSetWindowAttributes wa
;
1494 screen
= DefaultScreen(dpy
);
1495 root
= RootWindow(dpy
, screen
);
1498 /* apply default geometry */
1501 sw
= DisplayWidth(dpy
, screen
);
1502 sh
= DisplayHeight(dpy
, screen
);
1503 bh
= dc
.font
.height
+ 2;
1508 wmatom
[WMProtocols
] = XInternAtom(dpy
, "WM_PROTOCOLS", False
);
1509 wmatom
[WMDelete
] = XInternAtom(dpy
, "WM_DELETE_WINDOW", False
);
1510 wmatom
[WMName
] = XInternAtom(dpy
, "WM_NAME", False
);
1511 wmatom
[WMState
] = XInternAtom(dpy
, "WM_STATE", False
);
1512 netatom
[NetSupported
] = XInternAtom(dpy
, "_NET_SUPPORTED", False
);
1513 netatom
[NetWMName
] = XInternAtom(dpy
, "_NET_WM_NAME", False
);
1516 wa
.cursor
= cursor
[CurNormal
] = XCreateFontCursor(dpy
, XC_left_ptr
);
1517 cursor
[CurResize
] = XCreateFontCursor(dpy
, XC_sizing
);
1518 cursor
[CurMove
] = XCreateFontCursor(dpy
, XC_fleur
);
1520 /* init appearance */
1521 dc
.norm
[ColBorder
] = getcolor(NORMBORDERCOLOR
);
1522 dc
.norm
[ColBG
] = getcolor(NORMBGCOLOR
);
1523 dc
.norm
[ColFG
] = getcolor(NORMFGCOLOR
);
1524 dc
.sel
[ColBorder
] = getcolor(SELBORDERCOLOR
);
1525 dc
.sel
[ColBG
] = getcolor(SELBGCOLOR
);
1526 dc
.sel
[ColFG
] = getcolor(SELFGCOLOR
);
1529 dc
.drawable
= XCreatePixmap(dpy
, root
, DisplayWidth(dpy
, screen
), bh
, DefaultDepth(dpy
, screen
));
1530 dc
.gc
= XCreateGC(dpy
, root
, 0, 0);
1531 XSetLineAttributes(dpy
, dc
.gc
, 1, LineSolid
, CapButt
, JoinMiter
);
1533 XSetFont(dpy
, dc
.gc
, dc
.font
.xfont
->fid
);
1536 seltags
= emallocz(TAGSZ
);
1537 prevtags
= emallocz(TAGSZ
);
1538 seltags
[0] = prevtags
[0] = True
;
1544 for(blw
= i
= 0; LENGTH(layouts
) > 1 && i
< LENGTH(layouts
); i
++) {
1545 w
= textw(layouts
[i
].symbol
);
1549 for(bgw
= i
= 0; LENGTH(geoms
) > 1 && i
< LENGTH(geoms
); i
++) {
1550 w
= textw(geoms
[i
].symbol
);
1555 wa
.override_redirect
= 1;
1556 wa
.background_pixmap
= ParentRelative
;
1557 wa
.event_mask
= ButtonPressMask
|ExposureMask
;
1559 barwin
= XCreateWindow(dpy
, root
, bx
, by
, bw
, bh
, 0, DefaultDepth(dpy
, screen
),
1560 CopyFromParent
, DefaultVisual(dpy
, screen
),
1561 CWOverrideRedirect
|CWBackPixmap
|CWEventMask
, &wa
);
1562 XDefineCursor(dpy
, barwin
, cursor
[CurNormal
]);
1563 XMapRaised(dpy
, barwin
);
1564 strcpy(stext
, "dwm-"VERSION
);
1567 /* EWMH support per view */
1568 XChangeProperty(dpy
, root
, netatom
[NetSupported
], XA_ATOM
, 32,
1569 PropModeReplace
, (unsigned char *) netatom
, NetLast
);
1571 /* select for events */
1572 wa
.event_mask
= SubstructureRedirectMask
|SubstructureNotifyMask
1573 |EnterWindowMask
|LeaveWindowMask
|StructureNotifyMask
;
1574 XChangeWindowAttributes(dpy
, root
, CWEventMask
|CWCursor
, &wa
);
1575 XSelectInput(dpy
, root
, wa
.event_mask
);
1583 spawn(const char *arg
) {
1584 static char *shell
= NULL
;
1586 if(!shell
&& !(shell
= getenv("SHELL")))
1590 /* The double-fork construct avoids zombie processes and keeps the code
1591 * clean from stupid signal handlers. */
1595 close(ConnectionNumber(dpy
));
1597 execl(shell
, shell
, "-c", arg
, (char *)NULL
);
1598 fprintf(stderr
, "dwm: execl '%s -c %s'", shell
, arg
);
1607 tag(const char *arg
) {
1612 for(i
= 0; i
< LENGTH(tags
); i
++)
1613 sel
->tags
[i
] = (NULL
== arg
);
1614 sel
->tags
[idxoftag(arg
)] = True
;
1619 textnw(const char *text
, unsigned int len
) {
1623 XmbTextExtents(dc
.font
.set
, text
, len
, NULL
, &r
);
1626 return XTextWidth(dc
.font
.xfont
, text
, len
);
1630 textw(const char *text
) {
1631 return textnw(text
, strlen(text
)) + dc
.font
.height
;
1637 unsigned int i
, n
= counttiled();
1651 for(i
= 0, c
= nexttiled(c
->next
); c
; c
= nexttiled(c
->next
), i
++) {
1652 if(i
+ 1 == n
) /* remainder */
1653 tileresize(c
, x
, ty
, (tx
+ tw
) - x
- 2 * c
->bw
, th
- 2 * c
->bw
);
1655 tileresize(c
, x
, ty
, w
- 2 * c
->bw
, th
- 2 * c
->bw
);
1657 x
= c
->x
+ c
->w
+ 2 * c
->bw
;
1662 tilemaster(unsigned int n
) {
1663 Client
*c
= nexttiled(clients
);
1666 tileresize(c
, mox
, moy
, mow
- 2 * c
->bw
, moh
- 2 * c
->bw
);
1668 tileresize(c
, mx
, my
, mw
- 2 * c
->bw
, mh
- 2 * c
->bw
);
1673 tileresize(Client
*c
, int x
, int y
, int w
, int h
) {
1674 resize(c
, x
, y
, w
, h
, RESIZEHINTS
);
1675 if((RESIZEHINTS
) && ((c
->h
< bh
) || (c
->h
> h
) || (c
->w
< bh
) || (c
->w
> w
)))
1676 /* client doesn't accept size constraints */
1677 resize(c
, x
, y
, w
, h
, False
);
1683 unsigned int i
, n
= counttiled();
1697 for(i
= 0, c
= nexttiled(c
->next
); c
; c
= nexttiled(c
->next
), i
++) {
1698 if(i
+ 1 == n
) /* remainder */
1699 tileresize(c
, tx
, y
, tw
- 2 * c
->bw
, (ty
+ th
) - y
- 2 * c
->bw
);
1701 tileresize(c
, tx
, y
, tw
- 2 * c
->bw
, h
- 2 * c
->bw
);
1703 y
= c
->y
+ c
->h
+ 2 * c
->bw
;
1708 togglefloating(const char *arg
) {
1711 sel
->isfloating
= !sel
->isfloating
;
1713 resize(sel
, sel
->x
, sel
->y
, sel
->w
, sel
->h
, True
);
1718 toggletag(const char *arg
) {
1724 sel
->tags
[i
] = !sel
->tags
[i
];
1725 for(j
= 0; j
< LENGTH(tags
) && !sel
->tags
[j
]; j
++);
1726 if(j
== LENGTH(tags
))
1727 sel
->tags
[i
] = True
; /* at least one tag must be enabled */
1732 toggleview(const char *arg
) {
1736 seltags
[i
] = !seltags
[i
];
1737 for(j
= 0; j
< LENGTH(tags
) && !seltags
[j
]; j
++);
1738 if(j
== LENGTH(tags
))
1739 seltags
[i
] = True
; /* at least one tag must be viewed */
1747 XMoveWindow(dpy
, c
->win
, c
->x
, c
->y
);
1748 c
->isbanned
= False
;
1752 unmanage(Client
*c
) {
1755 wc
.border_width
= c
->oldbw
;
1756 /* The server grab construct avoids race conditions. */
1758 XSetErrorHandler(xerrordummy
);
1759 XConfigureWindow(dpy
, c
->win
, CWBorderWidth
, &wc
); /* restore border */
1764 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
1765 setclientstate(c
, WithdrawnState
);
1769 XSetErrorHandler(xerror
);
1775 unmapnotify(XEvent
*e
) {
1777 XUnmapEvent
*ev
= &e
->xunmap
;
1779 if((c
= getclient(ev
->window
)))
1784 updatebarpos(void) {
1786 if(dc
.drawable
!= 0)
1787 XFreePixmap(dpy
, dc
.drawable
);
1788 dc
.drawable
= XCreatePixmap(dpy
, root
, bw
, bh
, DefaultDepth(dpy
, screen
));
1789 XMoveResizeWindow(dpy
, barwin
, bx
, by
, bw
, bh
);
1793 updatesizehints(Client
*c
) {
1797 if(!XGetWMNormalHints(dpy
, c
->win
, &size
, &msize
) || !size
.flags
)
1799 c
->flags
= size
.flags
;
1800 if(c
->flags
& PBaseSize
) {
1801 c
->basew
= size
.base_width
;
1802 c
->baseh
= size
.base_height
;
1804 else if(c
->flags
& PMinSize
) {
1805 c
->basew
= size
.min_width
;
1806 c
->baseh
= size
.min_height
;
1809 c
->basew
= c
->baseh
= 0;
1810 if(c
->flags
& PResizeInc
) {
1811 c
->incw
= size
.width_inc
;
1812 c
->inch
= size
.height_inc
;
1815 c
->incw
= c
->inch
= 0;
1816 if(c
->flags
& PMaxSize
) {
1817 c
->maxw
= size
.max_width
;
1818 c
->maxh
= size
.max_height
;
1821 c
->maxw
= c
->maxh
= 0;
1822 if(c
->flags
& PMinSize
) {
1823 c
->minw
= size
.min_width
;
1824 c
->minh
= size
.min_height
;
1826 else if(c
->flags
& PBaseSize
) {
1827 c
->minw
= size
.base_width
;
1828 c
->minh
= size
.base_height
;
1831 c
->minw
= c
->minh
= 0;
1832 if(c
->flags
& PAspect
) {
1833 c
->minax
= size
.min_aspect
.x
;
1834 c
->maxax
= size
.max_aspect
.x
;
1835 c
->minay
= size
.min_aspect
.y
;
1836 c
->maxay
= size
.max_aspect
.y
;
1839 c
->minax
= c
->maxax
= c
->minay
= c
->maxay
= 0;
1840 c
->isfixed
= (c
->maxw
&& c
->minw
&& c
->maxh
&& c
->minh
1841 && c
->maxw
== c
->minw
&& c
->maxh
== c
->minh
);
1845 updatetitle(Client
*c
) {
1846 if(!gettextprop(c
->win
, netatom
[NetWMName
], c
->name
, sizeof c
->name
))
1847 gettextprop(c
->win
, wmatom
[WMName
], c
->name
, sizeof c
->name
);
1851 updatewmhints(Client
*c
) {
1854 if((wmh
= XGetWMHints(dpy
, c
->win
))) {
1856 sel
->isurgent
= False
;
1858 c
->isurgent
= (wmh
->flags
& XUrgencyHint
) ? True
: False
;
1865 view(const char *arg
) {
1868 for(i
= 0; i
< LENGTH(tags
); i
++)
1869 tmp
[i
] = (NULL
== arg
);
1870 tmp
[idxoftag(arg
)] = True
;
1872 if(memcmp(seltags
, tmp
, TAGSZ
) != 0) {
1873 memcpy(prevtags
, seltags
, TAGSZ
);
1874 memcpy(seltags
, tmp
, TAGSZ
);
1880 viewprevtag(const char *arg
) {
1882 memcpy(tmp
, seltags
, TAGSZ
);
1883 memcpy(seltags
, prevtags
, TAGSZ
);
1884 memcpy(prevtags
, tmp
, TAGSZ
);
1888 /* There's no way to check accesses to destroyed windows, thus those cases are
1889 * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
1890 * default error handler, which may call exit. */
1892 xerror(Display
*dpy
, XErrorEvent
*ee
) {
1893 if(ee
->error_code
== BadWindow
1894 || (ee
->request_code
== X_SetInputFocus
&& ee
->error_code
== BadMatch
)
1895 || (ee
->request_code
== X_PolyText8
&& ee
->error_code
== BadDrawable
)
1896 || (ee
->request_code
== X_PolyFillRectangle
&& ee
->error_code
== BadDrawable
)
1897 || (ee
->request_code
== X_PolySegment
&& ee
->error_code
== BadDrawable
)
1898 || (ee
->request_code
== X_ConfigureWindow
&& ee
->error_code
== BadMatch
)
1899 || (ee
->request_code
== X_GrabKey
&& ee
->error_code
== BadAccess
)
1900 || (ee
->request_code
== X_CopyArea
&& ee
->error_code
== BadDrawable
))
1902 fprintf(stderr
, "dwm: fatal error: request code=%d, error code=%d\n",
1903 ee
->request_code
, ee
->error_code
);
1904 return xerrorxlib(dpy
, ee
); /* may call exit */
1908 xerrordummy(Display
*dpy
, XErrorEvent
*ee
) {
1912 /* Startup Error handler to check if another window manager
1913 * is already running. */
1915 xerrorstart(Display
*dpy
, XErrorEvent
*ee
) {
1921 zoom(const char *arg
) {
1924 if(!sel
|| lt
->isfloating
|| sel
->isfloating
)
1926 if(c
== nexttiled(clients
))
1927 if(!(c
= nexttiled(c
->next
)))
1936 main(int argc
, char *argv
[]) {
1937 if(argc
== 2 && !strcmp("-v", argv
[1]))
1938 eprint("dwm-"VERSION
", © 2006-2008 dwm engineers, see LICENSE for details\n");
1940 eprint("usage: dwm [-v]\n");
1942 setlocale(LC_CTYPE
, "");
1943 if(!(dpy
= XOpenDisplay(0)))
1944 eprint("dwm: cannot open display\n");