Xinqi Bao's Git
421bf27a3fef45495c6ee1a81b24a9024d5ccdcf
1 /* See LICENSE file for copyright and license details.
3 * dynamic window manager is designed like any other X client as well. It is
4 * driven through handling X events. In contrast to other X clients, a window
5 * manager selects for SubstructureRedirectMask on the root window, to receive
6 * events about window (dis-)appearance. Only one X connection at a time is
7 * allowed to select for this event mask.
9 * The event handlers of dwm are organized in an array which is accessed
10 * whenever a new event has been fetched. This allows event dispatching
13 * Each child of the root window is called a client, except windows which have
14 * set the override_redirect flag. Clients are organized in a linked client
15 * list on each monitor, the focus history is remembered through a stack list
16 * on each monitor. Each client contains a bit array to indicate the tags of a
19 * Keys and tagging rules are organized as arrays and defined in config.h.
21 * To understand everything else, start reading main().
31 #include <sys/types.h>
33 #include <X11/cursorfont.h>
34 #include <X11/keysym.h>
35 #include <X11/Xatom.h>
37 #include <X11/Xproto.h>
38 #include <X11/Xutil.h>
40 #include <X11/extensions/Xinerama.h>
42 #include <X11/Xft/Xft.h>
48 #define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
49 #define CLEANMASK(mask) (mask & ~(numlockmask|LockMask) & (ShiftMask|ControlMask|Mod1Mask|Mod2Mask|Mod3Mask|Mod4Mask|Mod5Mask))
50 #define INTERSECT(x,y,w,h,m) (MAX(0, MIN((x)+(w),(m)->wx+(m)->ww) - MAX((x),(m)->wx)) \
51 * MAX(0, MIN((y)+(h),(m)->wy+(m)->wh) - MAX((y),(m)->wy)))
52 #define ISVISIBLE(C) ((C->tags & C->mon->tagset[C->mon->seltags]))
53 #define LENGTH(X) (sizeof X / sizeof X[0])
54 #define MOUSEMASK (BUTTONMASK|PointerMotionMask)
55 #define WIDTH(X) ((X)->w + 2 * (X)->bw)
56 #define HEIGHT(X) ((X)->h + 2 * (X)->bw)
57 #define TAGMASK ((1 << LENGTH(tags)) - 1)
58 #define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
62 enum { CurNormal
, CurResize
, CurMove
, CurLast
}; /* cursor */
63 enum { SchemeNorm
, SchemeSel
, SchemeLast
}; /* color schemes */
64 enum { NetSupported
, NetWMName
, NetWMState
,
65 NetWMFullscreen
, NetActiveWindow
, NetWMWindowType
,
66 NetWMWindowTypeDialog
, NetClientList
, NetLast
}; /* EWMH atoms */
67 enum { WMProtocols
, WMDelete
, WMState
, WMTakeFocus
, WMLast
}; /* default atoms */
68 enum { ClkTagBar
, ClkLtSymbol
, ClkStatusText
, ClkWinTitle
,
69 ClkClientWin
, ClkRootWin
, ClkLast
}; /* clicks */
82 void (*func
)(const Arg
*arg
);
86 typedef struct Monitor Monitor
;
87 typedef struct Client Client
;
92 int oldx
, oldy
, oldw
, oldh
;
93 int basew
, baseh
, incw
, inch
, maxw
, maxh
, minw
, minh
;
96 int isfixed
, isfloating
, isurgent
, neverfocus
, oldstate
, isfullscreen
;
106 void (*func
)(const Arg
*);
112 void (*arrange
)(Monitor
*);
120 int by
; /* bar geometry */
121 int mx
, my
, mw
, mh
; /* screen size */
122 int wx
, wy
, ww
, wh
; /* window area */
123 unsigned int seltags
;
125 unsigned int tagset
[2];
138 const char *instance
;
145 /* function declarations */
146 static void applyrules(Client
*c
);
147 static int applysizehints(Client
*c
, int *x
, int *y
, int *w
, int *h
, int interact
);
148 static void arrange(Monitor
*m
);
149 static void arrangemon(Monitor
*m
);
150 static void attach(Client
*c
);
151 static void attachstack(Client
*c
);
152 static void buttonpress(XEvent
*e
);
153 static void checkotherwm(void);
154 static void cleanup(void);
155 static void cleanupmon(Monitor
*mon
);
156 static void clearurgent(Client
*c
);
157 static void clientmessage(XEvent
*e
);
158 static void configure(Client
*c
);
159 static void configurenotify(XEvent
*e
);
160 static void configurerequest(XEvent
*e
);
161 static Monitor
*createmon(void);
162 static void destroynotify(XEvent
*e
);
163 static void detach(Client
*c
);
164 static void detachstack(Client
*c
);
165 static Monitor
*dirtomon(int dir
);
166 static void drawbar(Monitor
*m
);
167 static void drawbars(void);
168 static void enternotify(XEvent
*e
);
169 static void expose(XEvent
*e
);
170 static void focus(Client
*c
);
171 static void focusin(XEvent
*e
);
172 static void focusmon(const Arg
*arg
);
173 static void focusstack(const Arg
*arg
);
174 static int getrootptr(int *x
, int *y
);
175 static long getstate(Window w
);
176 static int gettextprop(Window w
, Atom atom
, char *text
, unsigned int size
);
177 static void grabbuttons(Client
*c
, int focused
);
178 static void grabkeys(void);
179 static void incnmaster(const Arg
*arg
);
180 static void keypress(XEvent
*e
);
181 static void killclient(const Arg
*arg
);
182 static void manage(Window w
, XWindowAttributes
*wa
);
183 static void mappingnotify(XEvent
*e
);
184 static void maprequest(XEvent
*e
);
185 static void monocle(Monitor
*m
);
186 static void motionnotify(XEvent
*e
);
187 static void movemouse(const Arg
*arg
);
188 static Client
*nexttiled(Client
*c
);
189 static void pop(Client
*);
190 static void propertynotify(XEvent
*e
);
191 static void quit(const Arg
*arg
);
192 static Monitor
*recttomon(int x
, int y
, int w
, int h
);
193 static void resize(Client
*c
, int x
, int y
, int w
, int h
, int interact
);
194 static void resizeclient(Client
*c
, int x
, int y
, int w
, int h
);
195 static void resizemouse(const Arg
*arg
);
196 static void restack(Monitor
*m
);
197 static void run(void);
198 static void scan(void);
199 static int sendevent(Client
*c
, Atom proto
);
200 static void sendmon(Client
*c
, Monitor
*m
);
201 static void setclientstate(Client
*c
, long state
);
202 static void setfocus(Client
*c
);
203 static void setfullscreen(Client
*c
, int fullscreen
);
204 static void setlayout(const Arg
*arg
);
205 static void setmfact(const Arg
*arg
);
206 static void setup(void);
207 static void showhide(Client
*c
);
208 static void sigchld(int unused
);
209 static void spawn(const Arg
*arg
);
210 static void tag(const Arg
*arg
);
211 static void tagmon(const Arg
*arg
);
212 static void tile(Monitor
*);
213 static void togglebar(const Arg
*arg
);
214 static void togglefloating(const Arg
*arg
);
215 static void toggletag(const Arg
*arg
);
216 static void toggleview(const Arg
*arg
);
217 static void unfocus(Client
*c
, int setfocus
);
218 static void unmanage(Client
*c
, int destroyed
);
219 static void unmapnotify(XEvent
*e
);
220 static int updategeom(void);
221 static void updatebarpos(Monitor
*m
);
222 static void updatebars(void);
223 static void updateclientlist(void);
224 static void updatenumlockmask(void);
225 static void updatesizehints(Client
*c
);
226 static void updatestatus(void);
227 static void updatewindowtype(Client
*c
);
228 static void updatetitle(Client
*c
);
229 static void updatewmhints(Client
*c
);
230 static void view(const Arg
*arg
);
231 static Client
*wintoclient(Window w
);
232 static Monitor
*wintomon(Window w
);
233 static int xerror(Display
*dpy
, XErrorEvent
*ee
);
234 static int xerrordummy(Display
*dpy
, XErrorEvent
*ee
);
235 static int xerrorstart(Display
*dpy
, XErrorEvent
*ee
);
236 static void zoom(const Arg
*arg
);
239 static const char broken
[] = "broken";
240 static char stext
[256];
242 static int sw
, sh
; /* X display screen geometry width, height */
243 static int bh
, blw
= 0; /* bar geometry */
244 static int lrpad
; /* sum of left and right padding for text */
245 static int (*xerrorxlib
)(Display
*, XErrorEvent
*);
246 static unsigned int numlockmask
= 0;
247 static void (*handler
[LASTEvent
]) (XEvent
*) = {
248 [ButtonPress
] = buttonpress
,
249 [ClientMessage
] = clientmessage
,
250 [ConfigureRequest
] = configurerequest
,
251 [ConfigureNotify
] = configurenotify
,
252 [DestroyNotify
] = destroynotify
,
253 [EnterNotify
] = enternotify
,
256 [KeyPress
] = keypress
,
257 [MappingNotify
] = mappingnotify
,
258 [MapRequest
] = maprequest
,
259 [MotionNotify
] = motionnotify
,
260 [PropertyNotify
] = propertynotify
,
261 [UnmapNotify
] = unmapnotify
263 static Atom wmatom
[WMLast
], netatom
[NetLast
];
264 static int running
= 1;
265 static Cur
*cursor
[CurLast
];
266 static Scm scheme
[SchemeLast
];
269 static Monitor
*mons
, *selmon
;
272 /* configuration, allows nested code to access above variables */
275 /* compile-time check if all tags fit into an unsigned int bit array. */
276 struct NumTags
{ char limitexceeded
[LENGTH(tags
) > 31 ? -1 : 1]; };
278 /* function implementations */
280 applyrules(Client
*c
)
282 const char *class, *instance
;
286 XClassHint ch
= { NULL
, NULL
};
291 XGetClassHint(dpy
, c
->win
, &ch
);
292 class = ch
.res_class
? ch
.res_class
: broken
;
293 instance
= ch
.res_name
? ch
.res_name
: broken
;
295 for (i
= 0; i
< LENGTH(rules
); i
++) {
297 if ((!r
->title
|| strstr(c
->name
, r
->title
))
298 && (!r
->class || strstr(class, r
->class))
299 && (!r
->instance
|| strstr(instance
, r
->instance
)))
301 c
->isfloating
= r
->isfloating
;
303 for (m
= mons
; m
&& m
->num
!= r
->monitor
; m
= m
->next
);
312 c
->tags
= c
->tags
& TAGMASK
? c
->tags
& TAGMASK
: c
->mon
->tagset
[c
->mon
->seltags
];
316 applysizehints(Client
*c
, int *x
, int *y
, int *w
, int *h
, int interact
)
321 /* set minimum possible */
329 if (*x
+ *w
+ 2 * c
->bw
< 0)
331 if (*y
+ *h
+ 2 * c
->bw
< 0)
334 if (*x
>= m
->wx
+ m
->ww
)
335 *x
= m
->wx
+ m
->ww
- WIDTH(c
);
336 if (*y
>= m
->wy
+ m
->wh
)
337 *y
= m
->wy
+ m
->wh
- HEIGHT(c
);
338 if (*x
+ *w
+ 2 * c
->bw
<= m
->wx
)
340 if (*y
+ *h
+ 2 * c
->bw
<= m
->wy
)
347 if (resizehints
|| c
->isfloating
|| !c
->mon
->lt
[c
->mon
->sellt
]->arrange
) {
348 /* see last two sentences in ICCCM 4.1.2.3 */
349 baseismin
= c
->basew
== c
->minw
&& c
->baseh
== c
->minh
;
350 if (!baseismin
) { /* temporarily remove base dimensions */
354 /* adjust for aspect limits */
355 if (c
->mina
> 0 && c
->maxa
> 0) {
356 if (c
->maxa
< (float)*w
/ *h
)
357 *w
= *h
* c
->maxa
+ 0.5;
358 else if (c
->mina
< (float)*h
/ *w
)
359 *h
= *w
* c
->mina
+ 0.5;
361 if (baseismin
) { /* increment calculation requires this */
365 /* adjust for increment value */
370 /* restore base dimensions */
371 *w
= MAX(*w
+ c
->basew
, c
->minw
);
372 *h
= MAX(*h
+ c
->baseh
, c
->minh
);
374 *w
= MIN(*w
, c
->maxw
);
376 *h
= MIN(*h
, c
->maxh
);
378 return *x
!= c
->x
|| *y
!= c
->y
|| *w
!= c
->w
|| *h
!= c
->h
;
386 else for (m
= mons
; m
; m
= m
->next
)
391 } else for (m
= mons
; m
; m
= m
->next
)
396 arrangemon(Monitor
*m
)
398 strncpy(m
->ltsymbol
, m
->lt
[m
->sellt
]->symbol
, sizeof m
->ltsymbol
);
399 if (m
->lt
[m
->sellt
]->arrange
)
400 m
->lt
[m
->sellt
]->arrange(m
);
406 c
->next
= c
->mon
->clients
;
411 attachstack(Client
*c
)
413 c
->snext
= c
->mon
->stack
;
418 buttonpress(XEvent
*e
)
420 unsigned int i
, x
, click
;
424 XButtonPressedEvent
*ev
= &e
->xbutton
;
427 /* focus monitor if necessary */
428 if ((m
= wintomon(ev
->window
)) && m
!= selmon
) {
429 unfocus(selmon
->sel
, 1);
433 if (ev
->window
== selmon
->barwin
) {
437 while (ev
->x
>= x
&& ++i
< LENGTH(tags
));
438 if (i
< LENGTH(tags
)) {
441 } else if (ev
->x
< x
+ blw
)
443 else if (ev
->x
> selmon
->ww
- TEXTW(stext
))
444 click
= ClkStatusText
;
447 } else if ((c
= wintoclient(ev
->window
))) {
449 click
= ClkClientWin
;
451 for (i
= 0; i
< LENGTH(buttons
); i
++)
452 if (click
== buttons
[i
].click
&& buttons
[i
].func
&& buttons
[i
].button
== ev
->button
453 && CLEANMASK(buttons
[i
].mask
) == CLEANMASK(ev
->state
))
454 buttons
[i
].func(click
== ClkTagBar
&& buttons
[i
].arg
.i
== 0 ? &arg
: &buttons
[i
].arg
);
460 xerrorxlib
= XSetErrorHandler(xerrorstart
);
461 /* this causes an error if some other window manager is running */
462 XSelectInput(dpy
, DefaultRootWindow(dpy
), SubstructureRedirectMask
);
464 XSetErrorHandler(xerror
);
472 Layout foo
= { "", NULL
};
477 selmon
->lt
[selmon
->sellt
] = &foo
;
478 for (m
= mons
; m
; m
= m
->next
)
480 unmanage(m
->stack
, 0);
481 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
484 for (i
= 0; i
< CurLast
; i
++)
485 drw_cur_free(drw
, cursor
[i
]);
486 for (i
= 0; i
< SchemeLast
; i
++)
490 XSetInputFocus(dpy
, PointerRoot
, RevertToPointerRoot
, CurrentTime
);
491 XDeleteProperty(dpy
, root
, netatom
[NetActiveWindow
]);
495 cleanupmon(Monitor
*mon
)
502 for (m
= mons
; m
&& m
->next
!= mon
; m
= m
->next
);
505 XUnmapWindow(dpy
, mon
->barwin
);
506 XDestroyWindow(dpy
, mon
->barwin
);
511 clearurgent(Client
*c
)
516 if (!(wmh
= XGetWMHints(dpy
, c
->win
)))
518 wmh
->flags
&= ~XUrgencyHint
;
519 XSetWMHints(dpy
, c
->win
, wmh
);
524 clientmessage(XEvent
*e
)
526 XClientMessageEvent
*cme
= &e
->xclient
;
527 Client
*c
= wintoclient(cme
->window
);
531 if (cme
->message_type
== netatom
[NetWMState
]) {
532 if (cme
->data
.l
[1] == netatom
[NetWMFullscreen
] || cme
->data
.l
[2] == netatom
[NetWMFullscreen
])
533 setfullscreen(c
, (cme
->data
.l
[0] == 1 /* _NET_WM_STATE_ADD */
534 || (cme
->data
.l
[0] == 2 /* _NET_WM_STATE_TOGGLE */ && !c
->isfullscreen
)));
535 } else if (cme
->message_type
== netatom
[NetActiveWindow
]) {
537 c
->mon
->seltags
^= 1;
538 c
->mon
->tagset
[c
->mon
->seltags
] = c
->tags
;
549 ce
.type
= ConfigureNotify
;
557 ce
.border_width
= c
->bw
;
559 ce
.override_redirect
= False
;
560 XSendEvent(dpy
, c
->win
, False
, StructureNotifyMask
, (XEvent
*)&ce
);
564 configurenotify(XEvent
*e
)
568 XConfigureEvent
*ev
= &e
->xconfigure
;
571 /* TODO: updategeom handling sucks, needs to be simplified */
572 if (ev
->window
== root
) {
573 dirty
= (sw
!= ev
->width
|| sh
!= ev
->height
);
576 if (updategeom() || dirty
) {
577 drw_resize(drw
, sw
, bh
);
579 for (m
= mons
; m
; m
= m
->next
) {
580 for (c
= m
->clients
; c
; c
= c
->next
)
582 resizeclient(c
, m
->mx
, m
->my
, m
->mw
, m
->mh
);
583 XMoveResizeWindow(dpy
, m
->barwin
, m
->wx
, m
->by
, m
->ww
, bh
);
592 configurerequest(XEvent
*e
)
596 XConfigureRequestEvent
*ev
= &e
->xconfigurerequest
;
599 if ((c
= wintoclient(ev
->window
))) {
600 if (ev
->value_mask
& CWBorderWidth
)
601 c
->bw
= ev
->border_width
;
602 else if (c
->isfloating
|| !selmon
->lt
[selmon
->sellt
]->arrange
) {
604 if (ev
->value_mask
& CWX
) {
606 c
->x
= m
->mx
+ ev
->x
;
608 if (ev
->value_mask
& CWY
) {
610 c
->y
= m
->my
+ ev
->y
;
612 if (ev
->value_mask
& CWWidth
) {
616 if (ev
->value_mask
& CWHeight
) {
620 if ((c
->x
+ c
->w
) > m
->mx
+ m
->mw
&& c
->isfloating
)
621 c
->x
= m
->mx
+ (m
->mw
/ 2 - WIDTH(c
) / 2); /* center in x direction */
622 if ((c
->y
+ c
->h
) > m
->my
+ m
->mh
&& c
->isfloating
)
623 c
->y
= m
->my
+ (m
->mh
/ 2 - HEIGHT(c
) / 2); /* center in y direction */
624 if ((ev
->value_mask
& (CWX
|CWY
)) && !(ev
->value_mask
& (CWWidth
|CWHeight
)))
627 XMoveResizeWindow(dpy
, c
->win
, c
->x
, c
->y
, c
->w
, c
->h
);
633 wc
.width
= ev
->width
;
634 wc
.height
= ev
->height
;
635 wc
.border_width
= ev
->border_width
;
636 wc
.sibling
= ev
->above
;
637 wc
.stack_mode
= ev
->detail
;
638 XConfigureWindow(dpy
, ev
->window
, ev
->value_mask
, &wc
);
648 m
= ecalloc(1, sizeof(Monitor
));
649 m
->tagset
[0] = m
->tagset
[1] = 1;
651 m
->nmaster
= nmaster
;
652 m
->showbar
= showbar
;
654 m
->lt
[0] = &layouts
[0];
655 m
->lt
[1] = &layouts
[1 % LENGTH(layouts
)];
656 strncpy(m
->ltsymbol
, layouts
[0].symbol
, sizeof m
->ltsymbol
);
661 destroynotify(XEvent
*e
)
664 XDestroyWindowEvent
*ev
= &e
->xdestroywindow
;
666 if ((c
= wintoclient(ev
->window
)))
675 for (tc
= &c
->mon
->clients
; *tc
&& *tc
!= c
; tc
= &(*tc
)->next
);
680 detachstack(Client
*c
)
684 for (tc
= &c
->mon
->stack
; *tc
&& *tc
!= c
; tc
= &(*tc
)->snext
);
687 if (c
== c
->mon
->sel
) {
688 for (t
= c
->mon
->stack
; t
&& !ISVISIBLE(t
); t
= t
->snext
);
699 if (!(m
= selmon
->next
))
701 } else if (selmon
== mons
)
702 for (m
= mons
; m
->next
; m
= m
->next
);
704 for (m
= mons
; m
->next
!= selmon
; m
= m
->next
);
712 int boxs
= drw
->fonts
->h
/ 9;
713 int boxw
= drw
->fonts
->h
/ 6 + 2;
714 unsigned int i
, occ
= 0, urg
= 0;
717 /* draw status first so it can be overdrawn by tags later */
718 if (m
== selmon
) { /* status is only drawn on selected monitor */
719 drw_setscheme(drw
, scheme
[SchemeNorm
]);
720 sw
= TEXTW(stext
) - lrpad
/ 2; /* no right padding so status text hugs the corner */
721 drw_text(drw
, m
->ww
- sw
, 0, sw
, bh
, lrpad
/ 2 - 2, stext
, 0);
724 for (c
= m
->clients
; c
; c
= c
->next
) {
730 for (i
= 0; i
< LENGTH(tags
); i
++) {
732 drw_setscheme(drw
, scheme
[m
->tagset
[m
->seltags
] & 1 << i
? SchemeSel
: SchemeNorm
]);
733 drw_text(drw
, x
, 0, w
, bh
, lrpad
/ 2, tags
[i
], urg
& 1 << i
);
735 drw_rect(drw
, x
+ boxs
, boxs
, boxw
, boxw
,
736 m
== selmon
&& selmon
->sel
&& selmon
->sel
->tags
& 1 << i
,
740 w
= blw
= TEXTW(m
->ltsymbol
);
741 drw_setscheme(drw
, scheme
[SchemeNorm
]);
742 x
= drw_text(drw
, x
, 0, w
, bh
, lrpad
/ 2, m
->ltsymbol
, 0);
744 if ((w
= m
->ww
- sw
- x
) > bh
) {
746 drw_setscheme(drw
, scheme
[m
== selmon
? SchemeSel
: SchemeNorm
]);
747 drw_text(drw
, x
, 0, w
, bh
, lrpad
/ 2, m
->sel
->name
, 0);
748 if (m
->sel
->isfloating
)
749 drw_rect(drw
, x
+ boxs
, boxs
, boxw
, boxw
, m
->sel
->isfixed
, 0);
751 drw_setscheme(drw
, scheme
[SchemeNorm
]);
752 drw_rect(drw
, x
, 0, w
, bh
, 1, 1);
755 drw_map(drw
, m
->barwin
, 0, 0, m
->ww
, bh
);
763 for (m
= mons
; m
; m
= m
->next
)
768 enternotify(XEvent
*e
)
772 XCrossingEvent
*ev
= &e
->xcrossing
;
774 if ((ev
->mode
!= NotifyNormal
|| ev
->detail
== NotifyInferior
) && ev
->window
!= root
)
776 c
= wintoclient(ev
->window
);
777 m
= c
? c
->mon
: wintomon(ev
->window
);
779 unfocus(selmon
->sel
, 1);
781 } else if (!c
|| c
== selmon
->sel
)
790 XExposeEvent
*ev
= &e
->xexpose
;
792 if (ev
->count
== 0 && (m
= wintomon(ev
->window
)))
799 if (!c
|| !ISVISIBLE(c
))
800 for (c
= selmon
->stack
; c
&& !ISVISIBLE(c
); c
= c
->snext
);
801 /* was if (selmon->sel) */
802 if (selmon
->sel
&& selmon
->sel
!= c
)
803 unfocus(selmon
->sel
, 0);
805 if (c
->mon
!= selmon
)
812 XSetWindowBorder(dpy
, c
->win
, scheme
[SchemeSel
][ColBorder
].pixel
);
815 XSetInputFocus(dpy
, root
, RevertToPointerRoot
, CurrentTime
);
816 XDeleteProperty(dpy
, root
, netatom
[NetActiveWindow
]);
822 /* there are some broken focus acquiring clients */
826 XFocusChangeEvent
*ev
= &e
->xfocus
;
828 if (selmon
->sel
&& ev
->window
!= selmon
->sel
->win
)
829 setfocus(selmon
->sel
);
833 focusmon(const Arg
*arg
)
839 if ((m
= dirtomon(arg
->i
)) == selmon
)
841 unfocus(selmon
->sel
, 0); /* s/1/0/ fixes input focus issues
842 in gedit and anjuta */
848 focusstack(const Arg
*arg
)
850 Client
*c
= NULL
, *i
;
855 for (c
= selmon
->sel
->next
; c
&& !ISVISIBLE(c
); c
= c
->next
);
857 for (c
= selmon
->clients
; c
&& !ISVISIBLE(c
); c
= c
->next
);
859 for (i
= selmon
->clients
; i
!= selmon
->sel
; i
= i
->next
)
863 for (; i
; i
= i
->next
)
874 getatomprop(Client
*c
, Atom prop
)
878 unsigned char *p
= NULL
;
879 Atom da
, atom
= None
;
881 if (XGetWindowProperty(dpy
, c
->win
, prop
, 0L, sizeof atom
, False
, XA_ATOM
,
882 &da
, &di
, &dl
, &dl
, &p
) == Success
&& p
) {
890 getrootptr(int *x
, int *y
)
896 return XQueryPointer(dpy
, root
, &dummy
, &dummy
, x
, y
, &di
, &di
, &dui
);
904 unsigned char *p
= NULL
;
905 unsigned long n
, extra
;
908 if (XGetWindowProperty(dpy
, w
, wmatom
[WMState
], 0L, 2L, False
, wmatom
[WMState
],
909 &real
, &format
, &n
, &extra
, (unsigned char **)&p
) != Success
)
918 gettextprop(Window w
, Atom atom
, char *text
, unsigned int size
)
924 if (!text
|| size
== 0)
927 XGetTextProperty(dpy
, w
, &name
, atom
);
930 if (name
.encoding
== XA_STRING
)
931 strncpy(text
, (char *)name
.value
, size
- 1);
933 if (XmbTextPropertyToTextList(dpy
, &name
, &list
, &n
) >= Success
&& n
> 0 && *list
) {
934 strncpy(text
, *list
, size
- 1);
935 XFreeStringList(list
);
938 text
[size
- 1] = '\0';
944 grabbuttons(Client
*c
, int focused
)
949 unsigned int modifiers
[] = { 0, LockMask
, numlockmask
, numlockmask
|LockMask
};
950 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
952 for (i
= 0; i
< LENGTH(buttons
); i
++)
953 if (buttons
[i
].click
== ClkClientWin
)
954 for (j
= 0; j
< LENGTH(modifiers
); j
++)
955 XGrabButton(dpy
, buttons
[i
].button
,
956 buttons
[i
].mask
| modifiers
[j
],
957 c
->win
, False
, BUTTONMASK
,
958 GrabModeAsync
, GrabModeSync
, None
, None
);
960 XGrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
, False
,
961 BUTTONMASK
, GrabModeAsync
, GrabModeSync
, None
, None
);
971 unsigned int modifiers
[] = { 0, LockMask
, numlockmask
, numlockmask
|LockMask
};
974 XUngrabKey(dpy
, AnyKey
, AnyModifier
, root
);
975 for (i
= 0; i
< LENGTH(keys
); i
++)
976 if ((code
= XKeysymToKeycode(dpy
, keys
[i
].keysym
)))
977 for (j
= 0; j
< LENGTH(modifiers
); j
++)
978 XGrabKey(dpy
, code
, keys
[i
].mod
| modifiers
[j
], root
,
979 True
, GrabModeAsync
, GrabModeAsync
);
984 incnmaster(const Arg
*arg
)
986 selmon
->nmaster
= MAX(selmon
->nmaster
+ arg
->i
, 0);
992 isuniquegeom(XineramaScreenInfo
*unique
, size_t n
, XineramaScreenInfo
*info
)
995 if (unique
[n
].x_org
== info
->x_org
&& unique
[n
].y_org
== info
->y_org
996 && unique
[n
].width
== info
->width
&& unique
[n
].height
== info
->height
)
1000 #endif /* XINERAMA */
1010 keysym
= XKeycodeToKeysym(dpy
, (KeyCode
)ev
->keycode
, 0);
1011 for (i
= 0; i
< LENGTH(keys
); i
++)
1012 if (keysym
== keys
[i
].keysym
1013 && CLEANMASK(keys
[i
].mod
) == CLEANMASK(ev
->state
)
1015 keys
[i
].func(&(keys
[i
].arg
));
1019 killclient(const Arg
*arg
)
1023 if (!sendevent(selmon
->sel
, wmatom
[WMDelete
])) {
1025 XSetErrorHandler(xerrordummy
);
1026 XSetCloseDownMode(dpy
, DestroyAll
);
1027 XKillClient(dpy
, selmon
->sel
->win
);
1029 XSetErrorHandler(xerror
);
1035 manage(Window w
, XWindowAttributes
*wa
)
1037 Client
*c
, *t
= NULL
;
1038 Window trans
= None
;
1041 c
= ecalloc(1, sizeof(Client
));
1044 c
->x
= c
->oldx
= wa
->x
;
1045 c
->y
= c
->oldy
= wa
->y
;
1046 c
->w
= c
->oldw
= wa
->width
;
1047 c
->h
= c
->oldh
= wa
->height
;
1048 c
->oldbw
= wa
->border_width
;
1051 if (XGetTransientForHint(dpy
, w
, &trans
) && (t
= wintoclient(trans
))) {
1059 if (c
->x
+ WIDTH(c
) > c
->mon
->mx
+ c
->mon
->mw
)
1060 c
->x
= c
->mon
->mx
+ c
->mon
->mw
- WIDTH(c
);
1061 if (c
->y
+ HEIGHT(c
) > c
->mon
->my
+ c
->mon
->mh
)
1062 c
->y
= c
->mon
->my
+ c
->mon
->mh
- HEIGHT(c
);
1063 c
->x
= MAX(c
->x
, c
->mon
->mx
);
1064 /* only fix client y-offset, if the client center might cover the bar */
1065 c
->y
= MAX(c
->y
, ((c
->mon
->by
== c
->mon
->my
) && (c
->x
+ (c
->w
/ 2) >= c
->mon
->wx
)
1066 && (c
->x
+ (c
->w
/ 2) < c
->mon
->wx
+ c
->mon
->ww
)) ? bh
: c
->mon
->my
);
1069 wc
.border_width
= c
->bw
;
1070 XConfigureWindow(dpy
, w
, CWBorderWidth
, &wc
);
1071 XSetWindowBorder(dpy
, w
, scheme
[SchemeNorm
][ColBorder
].pixel
);
1072 configure(c
); /* propagates border_width, if size doesn't change */
1073 updatewindowtype(c
);
1076 XSelectInput(dpy
, w
, EnterWindowMask
|FocusChangeMask
|PropertyChangeMask
|StructureNotifyMask
);
1079 c
->isfloating
= c
->oldstate
= trans
!= None
|| c
->isfixed
;
1081 XRaiseWindow(dpy
, c
->win
);
1084 XChangeProperty(dpy
, root
, netatom
[NetClientList
], XA_WINDOW
, 32, PropModeAppend
,
1085 (unsigned char *) &(c
->win
), 1);
1086 XMoveResizeWindow(dpy
, c
->win
, c
->x
+ 2 * sw
, c
->y
, c
->w
, c
->h
); /* some windows require this */
1087 setclientstate(c
, NormalState
);
1088 if (c
->mon
== selmon
)
1089 unfocus(selmon
->sel
, 0);
1092 XMapWindow(dpy
, c
->win
);
1097 mappingnotify(XEvent
*e
)
1099 XMappingEvent
*ev
= &e
->xmapping
;
1101 XRefreshKeyboardMapping(ev
);
1102 if (ev
->request
== MappingKeyboard
)
1107 maprequest(XEvent
*e
)
1109 static XWindowAttributes wa
;
1110 XMapRequestEvent
*ev
= &e
->xmaprequest
;
1112 if (!XGetWindowAttributes(dpy
, ev
->window
, &wa
))
1114 if (wa
.override_redirect
)
1116 if (!wintoclient(ev
->window
))
1117 manage(ev
->window
, &wa
);
1126 for (c
= m
->clients
; c
; c
= c
->next
)
1129 if (n
> 0) /* override layout symbol */
1130 snprintf(m
->ltsymbol
, sizeof m
->ltsymbol
, "[%d]", n
);
1131 for (c
= nexttiled(m
->clients
); c
; c
= nexttiled(c
->next
))
1132 resize(c
, m
->wx
, m
->wy
, m
->ww
- 2 * c
->bw
, m
->wh
- 2 * c
->bw
, 0);
1136 motionnotify(XEvent
*e
)
1138 static Monitor
*mon
= NULL
;
1140 XMotionEvent
*ev
= &e
->xmotion
;
1142 if (ev
->window
!= root
)
1144 if ((m
= recttomon(ev
->x_root
, ev
->y_root
, 1, 1)) != mon
&& mon
) {
1145 unfocus(selmon
->sel
, 1);
1153 movemouse(const Arg
*arg
)
1155 int x
, y
, ocx
, ocy
, nx
, ny
;
1161 if (!(c
= selmon
->sel
))
1163 if (c
->isfullscreen
) /* no support moving fullscreen windows by mouse */
1168 if (XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1169 None
, cursor
[CurMove
]->cursor
, CurrentTime
) != GrabSuccess
)
1171 if (!getrootptr(&x
, &y
))
1174 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1176 case ConfigureRequest
:
1179 handler
[ev
.type
](&ev
);
1182 if ((ev
.xmotion
.time
- lasttime
) <= (1000 / 60))
1184 lasttime
= ev
.xmotion
.time
;
1186 nx
= ocx
+ (ev
.xmotion
.x
- x
);
1187 ny
= ocy
+ (ev
.xmotion
.y
- y
);
1188 if (nx
>= selmon
->wx
&& nx
<= selmon
->wx
+ selmon
->ww
1189 && ny
>= selmon
->wy
&& ny
<= selmon
->wy
+ selmon
->wh
) {
1190 if (abs(selmon
->wx
- nx
) < snap
)
1192 else if (abs((selmon
->wx
+ selmon
->ww
) - (nx
+ WIDTH(c
))) < snap
)
1193 nx
= selmon
->wx
+ selmon
->ww
- WIDTH(c
);
1194 if (abs(selmon
->wy
- ny
) < snap
)
1196 else if (abs((selmon
->wy
+ selmon
->wh
) - (ny
+ HEIGHT(c
))) < snap
)
1197 ny
= selmon
->wy
+ selmon
->wh
- HEIGHT(c
);
1198 if (!c
->isfloating
&& selmon
->lt
[selmon
->sellt
]->arrange
1199 && (abs(nx
- c
->x
) > snap
|| abs(ny
- c
->y
) > snap
))
1200 togglefloating(NULL
);
1202 if (!selmon
->lt
[selmon
->sellt
]->arrange
|| c
->isfloating
)
1203 resize(c
, nx
, ny
, c
->w
, c
->h
, 1);
1206 } while (ev
.type
!= ButtonRelease
);
1207 XUngrabPointer(dpy
, CurrentTime
);
1208 if ((m
= recttomon(c
->x
, c
->y
, c
->w
, c
->h
)) != selmon
) {
1216 nexttiled(Client
*c
)
1218 for (; c
&& (c
->isfloating
|| !ISVISIBLE(c
)); c
= c
->next
);
1232 propertynotify(XEvent
*e
)
1236 XPropertyEvent
*ev
= &e
->xproperty
;
1238 if ((ev
->window
== root
) && (ev
->atom
== XA_WM_NAME
))
1240 else if (ev
->state
== PropertyDelete
)
1241 return; /* ignore */
1242 else if ((c
= wintoclient(ev
->window
))) {
1245 case XA_WM_TRANSIENT_FOR
:
1246 if (!c
->isfloating
&& (XGetTransientForHint(dpy
, c
->win
, &trans
)) &&
1247 (c
->isfloating
= (wintoclient(trans
)) != NULL
))
1250 case XA_WM_NORMAL_HINTS
:
1258 if (ev
->atom
== XA_WM_NAME
|| ev
->atom
== netatom
[NetWMName
]) {
1260 if (c
== c
->mon
->sel
)
1263 if (ev
->atom
== netatom
[NetWMWindowType
])
1264 updatewindowtype(c
);
1269 quit(const Arg
*arg
)
1275 recttomon(int x
, int y
, int w
, int h
)
1277 Monitor
*m
, *r
= selmon
;
1280 for (m
= mons
; m
; m
= m
->next
)
1281 if ((a
= INTERSECT(x
, y
, w
, h
, m
)) > area
) {
1289 resize(Client
*c
, int x
, int y
, int w
, int h
, int interact
)
1291 if (applysizehints(c
, &x
, &y
, &w
, &h
, interact
))
1292 resizeclient(c
, x
, y
, w
, h
);
1296 resizeclient(Client
*c
, int x
, int y
, int w
, int h
)
1300 c
->oldx
= c
->x
; c
->x
= wc
.x
= x
;
1301 c
->oldy
= c
->y
; c
->y
= wc
.y
= y
;
1302 c
->oldw
= c
->w
; c
->w
= wc
.width
= w
;
1303 c
->oldh
= c
->h
; c
->h
= wc
.height
= h
;
1304 wc
.border_width
= c
->bw
;
1305 XConfigureWindow(dpy
, c
->win
, CWX
|CWY
|CWWidth
|CWHeight
|CWBorderWidth
, &wc
);
1311 resizemouse(const Arg
*arg
)
1313 int ocx
, ocy
, nw
, nh
;
1319 if (!(c
= selmon
->sel
))
1321 if (c
->isfullscreen
) /* no support resizing fullscreen windows by mouse */
1326 if (XGrabPointer(dpy
, root
, False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
1327 None
, cursor
[CurResize
]->cursor
, CurrentTime
) != GrabSuccess
)
1329 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1331 XMaskEvent(dpy
, MOUSEMASK
|ExposureMask
|SubstructureRedirectMask
, &ev
);
1333 case ConfigureRequest
:
1336 handler
[ev
.type
](&ev
);
1339 if ((ev
.xmotion
.time
- lasttime
) <= (1000 / 60))
1341 lasttime
= ev
.xmotion
.time
;
1343 nw
= MAX(ev
.xmotion
.x
- ocx
- 2 * c
->bw
+ 1, 1);
1344 nh
= MAX(ev
.xmotion
.y
- ocy
- 2 * c
->bw
+ 1, 1);
1345 if (c
->mon
->wx
+ nw
>= selmon
->wx
&& c
->mon
->wx
+ nw
<= selmon
->wx
+ selmon
->ww
1346 && c
->mon
->wy
+ nh
>= selmon
->wy
&& c
->mon
->wy
+ nh
<= selmon
->wy
+ selmon
->wh
)
1348 if (!c
->isfloating
&& selmon
->lt
[selmon
->sellt
]->arrange
1349 && (abs(nw
- c
->w
) > snap
|| abs(nh
- c
->h
) > snap
))
1350 togglefloating(NULL
);
1352 if (!selmon
->lt
[selmon
->sellt
]->arrange
|| c
->isfloating
)
1353 resize(c
, c
->x
, c
->y
, nw
, nh
, 1);
1356 } while (ev
.type
!= ButtonRelease
);
1357 XWarpPointer(dpy
, None
, c
->win
, 0, 0, 0, 0, c
->w
+ c
->bw
- 1, c
->h
+ c
->bw
- 1);
1358 XUngrabPointer(dpy
, CurrentTime
);
1359 while (XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1360 if ((m
= recttomon(c
->x
, c
->y
, c
->w
, c
->h
)) != selmon
) {
1377 if (m
->sel
->isfloating
|| !m
->lt
[m
->sellt
]->arrange
)
1378 XRaiseWindow(dpy
, m
->sel
->win
);
1379 if (m
->lt
[m
->sellt
]->arrange
) {
1380 wc
.stack_mode
= Below
;
1381 wc
.sibling
= m
->barwin
;
1382 for (c
= m
->stack
; c
; c
= c
->snext
)
1383 if (!c
->isfloating
&& ISVISIBLE(c
)) {
1384 XConfigureWindow(dpy
, c
->win
, CWSibling
|CWStackMode
, &wc
);
1385 wc
.sibling
= c
->win
;
1389 while (XCheckMaskEvent(dpy
, EnterWindowMask
, &ev
));
1396 /* main event loop */
1398 while (running
&& !XNextEvent(dpy
, &ev
))
1399 if (handler
[ev
.type
])
1400 handler
[ev
.type
](&ev
); /* call handler */
1406 unsigned int i
, num
;
1407 Window d1
, d2
, *wins
= NULL
;
1408 XWindowAttributes wa
;
1410 if (XQueryTree(dpy
, root
, &d1
, &d2
, &wins
, &num
)) {
1411 for (i
= 0; i
< num
; i
++) {
1412 if (!XGetWindowAttributes(dpy
, wins
[i
], &wa
)
1413 || wa
.override_redirect
|| XGetTransientForHint(dpy
, wins
[i
], &d1
))
1415 if (wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
)
1416 manage(wins
[i
], &wa
);
1418 for (i
= 0; i
< num
; i
++) { /* now the transients */
1419 if (!XGetWindowAttributes(dpy
, wins
[i
], &wa
))
1421 if (XGetTransientForHint(dpy
, wins
[i
], &d1
)
1422 && (wa
.map_state
== IsViewable
|| getstate(wins
[i
]) == IconicState
))
1423 manage(wins
[i
], &wa
);
1431 sendmon(Client
*c
, Monitor
*m
)
1439 c
->tags
= m
->tagset
[m
->seltags
]; /* assign tags of target monitor */
1447 setclientstate(Client
*c
, long state
)
1449 long data
[] = { state
, None
};
1451 XChangeProperty(dpy
, c
->win
, wmatom
[WMState
], wmatom
[WMState
], 32,
1452 PropModeReplace
, (unsigned char *)data
, 2);
1456 sendevent(Client
*c
, Atom proto
)
1463 if (XGetWMProtocols(dpy
, c
->win
, &protocols
, &n
)) {
1464 while (!exists
&& n
--)
1465 exists
= protocols
[n
] == proto
;
1469 ev
.type
= ClientMessage
;
1470 ev
.xclient
.window
= c
->win
;
1471 ev
.xclient
.message_type
= wmatom
[WMProtocols
];
1472 ev
.xclient
.format
= 32;
1473 ev
.xclient
.data
.l
[0] = proto
;
1474 ev
.xclient
.data
.l
[1] = CurrentTime
;
1475 XSendEvent(dpy
, c
->win
, False
, NoEventMask
, &ev
);
1483 if (!c
->neverfocus
) {
1484 XSetInputFocus(dpy
, c
->win
, RevertToPointerRoot
, CurrentTime
);
1485 XChangeProperty(dpy
, root
, netatom
[NetActiveWindow
],
1486 XA_WINDOW
, 32, PropModeReplace
,
1487 (unsigned char *) &(c
->win
), 1);
1489 sendevent(c
, wmatom
[WMTakeFocus
]);
1493 setfullscreen(Client
*c
, int fullscreen
)
1495 if (fullscreen
&& !c
->isfullscreen
) {
1496 XChangeProperty(dpy
, c
->win
, netatom
[NetWMState
], XA_ATOM
, 32,
1497 PropModeReplace
, (unsigned char*)&netatom
[NetWMFullscreen
], 1);
1498 c
->isfullscreen
= 1;
1499 c
->oldstate
= c
->isfloating
;
1503 resizeclient(c
, c
->mon
->mx
, c
->mon
->my
, c
->mon
->mw
, c
->mon
->mh
);
1504 XRaiseWindow(dpy
, c
->win
);
1505 } else if (!fullscreen
&& c
->isfullscreen
){
1506 XChangeProperty(dpy
, c
->win
, netatom
[NetWMState
], XA_ATOM
, 32,
1507 PropModeReplace
, (unsigned char*)0, 0);
1508 c
->isfullscreen
= 0;
1509 c
->isfloating
= c
->oldstate
;
1515 resizeclient(c
, c
->x
, c
->y
, c
->w
, c
->h
);
1521 setlayout(const Arg
*arg
)
1523 if (!arg
|| !arg
->v
|| arg
->v
!= selmon
->lt
[selmon
->sellt
])
1526 selmon
->lt
[selmon
->sellt
] = (Layout
*)arg
->v
;
1527 strncpy(selmon
->ltsymbol
, selmon
->lt
[selmon
->sellt
]->symbol
, sizeof selmon
->ltsymbol
);
1534 /* arg > 1.0 will set mfact absolutly */
1536 setmfact(const Arg
*arg
)
1540 if (!arg
|| !selmon
->lt
[selmon
->sellt
]->arrange
)
1542 f
= arg
->f
< 1.0 ? arg
->f
+ selmon
->mfact
: arg
->f
- 1.0;
1543 if (f
< 0.1 || f
> 0.9)
1552 XSetWindowAttributes wa
;
1554 /* clean up any zombies immediately */
1558 screen
= DefaultScreen(dpy
);
1559 sw
= DisplayWidth(dpy
, screen
);
1560 sh
= DisplayHeight(dpy
, screen
);
1561 root
= RootWindow(dpy
, screen
);
1562 drw
= drw_create(dpy
, screen
, root
, sw
, sh
);
1563 if (!drw_fontset_create(drw
, fonts
, LENGTH(fonts
)))
1564 die("no fonts could be loaded.");
1565 lrpad
= drw
->fonts
->h
;
1566 bh
= drw
->fonts
->h
+ 2;
1569 wmatom
[WMProtocols
] = XInternAtom(dpy
, "WM_PROTOCOLS", False
);
1570 wmatom
[WMDelete
] = XInternAtom(dpy
, "WM_DELETE_WINDOW", False
);
1571 wmatom
[WMState
] = XInternAtom(dpy
, "WM_STATE", False
);
1572 wmatom
[WMTakeFocus
] = XInternAtom(dpy
, "WM_TAKE_FOCUS", False
);
1573 netatom
[NetActiveWindow
] = XInternAtom(dpy
, "_NET_ACTIVE_WINDOW", False
);
1574 netatom
[NetSupported
] = XInternAtom(dpy
, "_NET_SUPPORTED", False
);
1575 netatom
[NetWMName
] = XInternAtom(dpy
, "_NET_WM_NAME", False
);
1576 netatom
[NetWMState
] = XInternAtom(dpy
, "_NET_WM_STATE", False
);
1577 netatom
[NetWMFullscreen
] = XInternAtom(dpy
, "_NET_WM_STATE_FULLSCREEN", False
);
1578 netatom
[NetWMWindowType
] = XInternAtom(dpy
, "_NET_WM_WINDOW_TYPE", False
);
1579 netatom
[NetWMWindowTypeDialog
] = XInternAtom(dpy
, "_NET_WM_WINDOW_TYPE_DIALOG", False
);
1580 netatom
[NetClientList
] = XInternAtom(dpy
, "_NET_CLIENT_LIST", False
);
1582 cursor
[CurNormal
] = drw_cur_create(drw
, XC_left_ptr
);
1583 cursor
[CurResize
] = drw_cur_create(drw
, XC_sizing
);
1584 cursor
[CurMove
] = drw_cur_create(drw
, XC_fleur
);
1585 /* init appearance */
1586 scheme
[SchemeNorm
] = drw_scm_create(drw
, colors
[SchemeNorm
], 3);
1587 scheme
[SchemeSel
] = drw_scm_create(drw
, colors
[SchemeSel
], 3);
1591 /* EWMH support per view */
1592 XChangeProperty(dpy
, root
, netatom
[NetSupported
], XA_ATOM
, 32,
1593 PropModeReplace
, (unsigned char *) netatom
, NetLast
);
1594 XDeleteProperty(dpy
, root
, netatom
[NetClientList
]);
1595 /* select for events */
1596 wa
.cursor
= cursor
[CurNormal
]->cursor
;
1597 wa
.event_mask
= SubstructureRedirectMask
|SubstructureNotifyMask
|ButtonPressMask
|PointerMotionMask
1598 |EnterWindowMask
|LeaveWindowMask
|StructureNotifyMask
|PropertyChangeMask
;
1599 XChangeWindowAttributes(dpy
, root
, CWEventMask
|CWCursor
, &wa
);
1600 XSelectInput(dpy
, root
, wa
.event_mask
);
1611 /* show clients top down */
1612 XMoveWindow(dpy
, c
->win
, c
->x
, c
->y
);
1613 if ((!c
->mon
->lt
[c
->mon
->sellt
]->arrange
|| c
->isfloating
) && !c
->isfullscreen
)
1614 resize(c
, c
->x
, c
->y
, c
->w
, c
->h
, 0);
1617 /* hide clients bottom up */
1619 XMoveWindow(dpy
, c
->win
, WIDTH(c
) * -2, c
->y
);
1626 if (signal(SIGCHLD
, sigchld
) == SIG_ERR
)
1627 die("can't install SIGCHLD handler:");
1628 while (0 < waitpid(-1, NULL
, WNOHANG
));
1632 spawn(const Arg
*arg
)
1634 if (arg
->v
== dmenucmd
)
1635 dmenumon
[0] = '0' + selmon
->num
;
1638 close(ConnectionNumber(dpy
));
1640 execvp(((char **)arg
->v
)[0], (char **)arg
->v
);
1641 fprintf(stderr
, "dwm: execvp %s", ((char **)arg
->v
)[0]);
1650 if (selmon
->sel
&& arg
->ui
& TAGMASK
) {
1651 selmon
->sel
->tags
= arg
->ui
& TAGMASK
;
1658 tagmon(const Arg
*arg
)
1660 if (!selmon
->sel
|| !mons
->next
)
1662 sendmon(selmon
->sel
, dirtomon(arg
->i
));
1668 unsigned int i
, n
, h
, mw
, my
, ty
;
1671 for (n
= 0, c
= nexttiled(m
->clients
); c
; c
= nexttiled(c
->next
), n
++);
1676 mw
= m
->nmaster
? m
->ww
* m
->mfact
: 0;
1679 for (i
= my
= ty
= 0, c
= nexttiled(m
->clients
); c
; c
= nexttiled(c
->next
), i
++)
1680 if (i
< m
->nmaster
) {
1681 h
= (m
->wh
- my
) / (MIN(n
, m
->nmaster
) - i
);
1682 resize(c
, m
->wx
, m
->wy
+ my
, mw
- (2*c
->bw
), h
- (2*c
->bw
), 0);
1685 h
= (m
->wh
- ty
) / (n
- i
);
1686 resize(c
, m
->wx
+ mw
, m
->wy
+ ty
, m
->ww
- mw
- (2*c
->bw
), h
- (2*c
->bw
), 0);
1692 togglebar(const Arg
*arg
)
1694 selmon
->showbar
= !selmon
->showbar
;
1695 updatebarpos(selmon
);
1696 XMoveResizeWindow(dpy
, selmon
->barwin
, selmon
->wx
, selmon
->by
, selmon
->ww
, bh
);
1701 togglefloating(const Arg
*arg
)
1705 if (selmon
->sel
->isfullscreen
) /* no support for fullscreen windows */
1707 selmon
->sel
->isfloating
= !selmon
->sel
->isfloating
|| selmon
->sel
->isfixed
;
1708 if (selmon
->sel
->isfloating
)
1709 resize(selmon
->sel
, selmon
->sel
->x
, selmon
->sel
->y
,
1710 selmon
->sel
->w
, selmon
->sel
->h
, 0);
1715 toggletag(const Arg
*arg
)
1717 unsigned int newtags
;
1721 newtags
= selmon
->sel
->tags
^ (arg
->ui
& TAGMASK
);
1723 selmon
->sel
->tags
= newtags
;
1730 toggleview(const Arg
*arg
)
1732 unsigned int newtagset
= selmon
->tagset
[selmon
->seltags
] ^ (arg
->ui
& TAGMASK
);
1735 selmon
->tagset
[selmon
->seltags
] = newtagset
;
1742 unfocus(Client
*c
, int setfocus
)
1747 XSetWindowBorder(dpy
, c
->win
, scheme
[SchemeNorm
][ColBorder
].pixel
);
1749 XSetInputFocus(dpy
, root
, RevertToPointerRoot
, CurrentTime
);
1750 XDeleteProperty(dpy
, root
, netatom
[NetActiveWindow
]);
1755 unmanage(Client
*c
, int destroyed
)
1757 Monitor
*m
= c
->mon
;
1760 /* The server grab construct avoids race conditions. */
1764 wc
.border_width
= c
->oldbw
;
1766 XSetErrorHandler(xerrordummy
);
1767 XConfigureWindow(dpy
, c
->win
, CWBorderWidth
, &wc
); /* restore border */
1768 XUngrabButton(dpy
, AnyButton
, AnyModifier
, c
->win
);
1769 setclientstate(c
, WithdrawnState
);
1771 XSetErrorHandler(xerror
);
1781 unmapnotify(XEvent
*e
)
1784 XUnmapEvent
*ev
= &e
->xunmap
;
1786 if ((c
= wintoclient(ev
->window
))) {
1788 setclientstate(c
, WithdrawnState
);
1798 XSetWindowAttributes wa
= {
1799 .override_redirect
= True
,
1800 .background_pixmap
= ParentRelative
,
1801 .event_mask
= ButtonPressMask
|ExposureMask
1803 for (m
= mons
; m
; m
= m
->next
) {
1806 m
->barwin
= XCreateWindow(dpy
, root
, m
->wx
, m
->by
, m
->ww
, bh
, 0, DefaultDepth(dpy
, screen
),
1807 CopyFromParent
, DefaultVisual(dpy
, screen
),
1808 CWOverrideRedirect
|CWBackPixmap
|CWEventMask
, &wa
);
1809 XDefineCursor(dpy
, m
->barwin
, cursor
[CurNormal
]->cursor
);
1810 XMapRaised(dpy
, m
->barwin
);
1815 updatebarpos(Monitor
*m
)
1821 m
->by
= m
->topbar
? m
->wy
: m
->wy
+ m
->wh
;
1822 m
->wy
= m
->topbar
? m
->wy
+ bh
: m
->wy
;
1833 XDeleteProperty(dpy
, root
, netatom
[NetClientList
]);
1834 for (m
= mons
; m
; m
= m
->next
)
1835 for (c
= m
->clients
; c
; c
= c
->next
)
1836 XChangeProperty(dpy
, root
, netatom
[NetClientList
],
1837 XA_WINDOW
, 32, PropModeAppend
,
1838 (unsigned char *) &(c
->win
), 1);
1847 if (XineramaIsActive(dpy
)) {
1851 XineramaScreenInfo
*info
= XineramaQueryScreens(dpy
, &nn
);
1852 XineramaScreenInfo
*unique
= NULL
;
1854 for (n
= 0, m
= mons
; m
; m
= m
->next
, n
++);
1855 /* only consider unique geometries as separate screens */
1856 unique
= ecalloc(nn
, sizeof(XineramaScreenInfo
));
1857 for (i
= 0, j
= 0; i
< nn
; i
++)
1858 if (isuniquegeom(unique
, j
, &info
[i
]))
1859 memcpy(&unique
[j
++], &info
[i
], sizeof(XineramaScreenInfo
));
1863 for (i
= 0; i
< (nn
- n
); i
++) { /* new monitors available */
1864 for (m
= mons
; m
&& m
->next
; m
= m
->next
);
1866 m
->next
= createmon();
1870 for (i
= 0, m
= mons
; i
< nn
&& m
; m
= m
->next
, i
++)
1872 || (unique
[i
].x_org
!= m
->mx
|| unique
[i
].y_org
!= m
->my
1873 || unique
[i
].width
!= m
->mw
|| unique
[i
].height
!= m
->mh
))
1877 m
->mx
= m
->wx
= unique
[i
].x_org
;
1878 m
->my
= m
->wy
= unique
[i
].y_org
;
1879 m
->mw
= m
->ww
= unique
[i
].width
;
1880 m
->mh
= m
->wh
= unique
[i
].height
;
1884 /* less monitors available nn < n */
1885 for (i
= nn
; i
< n
; i
++) {
1886 for (m
= mons
; m
&& m
->next
; m
= m
->next
);
1887 while (m
->clients
) {
1890 m
->clients
= c
->next
;
1903 #endif /* XINERAMA */
1904 /* default monitor setup */
1908 if (mons
->mw
!= sw
|| mons
->mh
!= sh
) {
1910 mons
->mw
= mons
->ww
= sw
;
1911 mons
->mh
= mons
->wh
= sh
;
1917 selmon
= wintomon(root
);
1923 updatenumlockmask(void)
1926 XModifierKeymap
*modmap
;
1929 modmap
= XGetModifierMapping(dpy
);
1930 for (i
= 0; i
< 8; i
++)
1931 for (j
= 0; j
< modmap
->max_keypermod
; j
++)
1932 if (modmap
->modifiermap
[i
* modmap
->max_keypermod
+ j
]
1933 == XKeysymToKeycode(dpy
, XK_Num_Lock
))
1934 numlockmask
= (1 << i
);
1935 XFreeModifiermap(modmap
);
1939 updatesizehints(Client
*c
)
1944 if (!XGetWMNormalHints(dpy
, c
->win
, &size
, &msize
))
1945 /* size is uninitialized, ensure that size.flags aren't used */
1947 if (size
.flags
& PBaseSize
) {
1948 c
->basew
= size
.base_width
;
1949 c
->baseh
= size
.base_height
;
1950 } else if (size
.flags
& PMinSize
) {
1951 c
->basew
= size
.min_width
;
1952 c
->baseh
= size
.min_height
;
1954 c
->basew
= c
->baseh
= 0;
1955 if (size
.flags
& PResizeInc
) {
1956 c
->incw
= size
.width_inc
;
1957 c
->inch
= size
.height_inc
;
1959 c
->incw
= c
->inch
= 0;
1960 if (size
.flags
& PMaxSize
) {
1961 c
->maxw
= size
.max_width
;
1962 c
->maxh
= size
.max_height
;
1964 c
->maxw
= c
->maxh
= 0;
1965 if (size
.flags
& PMinSize
) {
1966 c
->minw
= size
.min_width
;
1967 c
->minh
= size
.min_height
;
1968 } else if (size
.flags
& PBaseSize
) {
1969 c
->minw
= size
.base_width
;
1970 c
->minh
= size
.base_height
;
1972 c
->minw
= c
->minh
= 0;
1973 if (size
.flags
& PAspect
) {
1974 c
->mina
= (float)size
.min_aspect
.y
/ size
.min_aspect
.x
;
1975 c
->maxa
= (float)size
.max_aspect
.x
/ size
.max_aspect
.y
;
1977 c
->maxa
= c
->mina
= 0.0;
1978 c
->isfixed
= (c
->maxw
&& c
->minw
&& c
->maxh
&& c
->minh
1979 && c
->maxw
== c
->minw
&& c
->maxh
== c
->minh
);
1983 updatetitle(Client
*c
)
1985 if (!gettextprop(c
->win
, netatom
[NetWMName
], c
->name
, sizeof c
->name
))
1986 gettextprop(c
->win
, XA_WM_NAME
, c
->name
, sizeof c
->name
);
1987 if (c
->name
[0] == '\0') /* hack to mark broken clients */
1988 strcpy(c
->name
, broken
);
1994 if (!gettextprop(root
, XA_WM_NAME
, stext
, sizeof(stext
)))
1995 strcpy(stext
, "dwm-"VERSION
);
2000 updatewindowtype(Client
*c
)
2002 Atom state
= getatomprop(c
, netatom
[NetWMState
]);
2003 Atom wtype
= getatomprop(c
, netatom
[NetWMWindowType
]);
2005 if (state
== netatom
[NetWMFullscreen
])
2006 setfullscreen(c
, 1);
2007 if (wtype
== netatom
[NetWMWindowTypeDialog
])
2012 updatewmhints(Client
*c
)
2016 if ((wmh
= XGetWMHints(dpy
, c
->win
))) {
2017 if (c
== selmon
->sel
&& wmh
->flags
& XUrgencyHint
) {
2018 wmh
->flags
&= ~XUrgencyHint
;
2019 XSetWMHints(dpy
, c
->win
, wmh
);
2021 c
->isurgent
= (wmh
->flags
& XUrgencyHint
) ? 1 : 0;
2022 if (wmh
->flags
& InputHint
)
2023 c
->neverfocus
= !wmh
->input
;
2031 view(const Arg
*arg
)
2033 if ((arg
->ui
& TAGMASK
) == selmon
->tagset
[selmon
->seltags
])
2035 selmon
->seltags
^= 1; /* toggle sel tagset */
2036 if (arg
->ui
& TAGMASK
)
2037 selmon
->tagset
[selmon
->seltags
] = arg
->ui
& TAGMASK
;
2043 wintoclient(Window w
)
2048 for (m
= mons
; m
; m
= m
->next
)
2049 for (c
= m
->clients
; c
; c
= c
->next
)
2062 if (w
== root
&& getrootptr(&x
, &y
))
2063 return recttomon(x
, y
, 1, 1);
2064 for (m
= mons
; m
; m
= m
->next
)
2067 if ((c
= wintoclient(w
)))
2072 /* There's no way to check accesses to destroyed windows, thus those cases are
2073 * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
2074 * default error handler, which may call exit. */
2076 xerror(Display
*dpy
, XErrorEvent
*ee
)
2078 if (ee
->error_code
== BadWindow
2079 || (ee
->request_code
== X_SetInputFocus
&& ee
->error_code
== BadMatch
)
2080 || (ee
->request_code
== X_PolyText8
&& ee
->error_code
== BadDrawable
)
2081 || (ee
->request_code
== X_PolyFillRectangle
&& ee
->error_code
== BadDrawable
)
2082 || (ee
->request_code
== X_PolySegment
&& ee
->error_code
== BadDrawable
)
2083 || (ee
->request_code
== X_ConfigureWindow
&& ee
->error_code
== BadMatch
)
2084 || (ee
->request_code
== X_GrabButton
&& ee
->error_code
== BadAccess
)
2085 || (ee
->request_code
== X_GrabKey
&& ee
->error_code
== BadAccess
)
2086 || (ee
->request_code
== X_CopyArea
&& ee
->error_code
== BadDrawable
))
2088 fprintf(stderr
, "dwm: fatal error: request code=%d, error code=%d\n",
2089 ee
->request_code
, ee
->error_code
);
2090 return xerrorxlib(dpy
, ee
); /* may call exit */
2094 xerrordummy(Display
*dpy
, XErrorEvent
*ee
)
2099 /* Startup Error handler to check if another window manager
2100 * is already running. */
2102 xerrorstart(Display
*dpy
, XErrorEvent
*ee
)
2104 die("dwm: another window manager is already running");
2109 zoom(const Arg
*arg
)
2111 Client
*c
= selmon
->sel
;
2113 if (!selmon
->lt
[selmon
->sellt
]->arrange
2114 || (selmon
->sel
&& selmon
->sel
->isfloating
))
2116 if (c
== nexttiled(selmon
->clients
))
2117 if (!c
|| !(c
= nexttiled(c
->next
)))
2123 main(int argc
, char *argv
[])
2125 if (argc
== 2 && !strcmp("-v", argv
[1]))
2128 die("usage: dwm [-v]");
2129 if (!setlocale(LC_CTYPE
, "") || !XSupportsLocale())
2130 fputs("warning: no locale support\n", stderr
);
2131 if (!(dpy
= XOpenDisplay(NULL
)))
2132 die("dwm: cannot open display");
2139 return EXIT_SUCCESS
;