dwm/dwm.c

2144 lines
52 KiB
C
Raw Permalink Normal View History

/* See LICENSE file for copyright and license details.
*
* dynamic window manager is designed like any other X client as well. It is
* driven through handling X events. In contrast to other X clients, a window
* manager selects for SubstructureRedirectMask on the root window, to receive
* events about window (dis-)appearance. Only one X connection at a time is
* allowed to select for this event mask.
*
* The event handlers of dwm are organized in an array which is accessed
* whenever a new event has been fetched. This allows event dispatching
* in O(1) time.
*
* Each child of the root window is called a client, except windows which have
* set the override_redirect flag. Clients are organized in a linked client
* list on each monitor, the focus history is remembered through a stack list
* on each monitor. Each client contains a bit array to indicate the tags of a
* client.
*
* Keys and tagging rules are organized as arrays and defined in config.h.
*
* To understand everything else, start reading main().
*/
2007-09-15 20:25:27 +00:00
#include <errno.h>
#include <locale.h>
#include <signal.h>
2015-11-08 19:38:00 +00:00
#include <stdarg.h>
2007-09-15 20:25:27 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
2007-09-27 07:14:32 +00:00
#include <sys/types.h>
2007-09-15 20:25:27 +00:00
#include <sys/wait.h>
#include <X11/cursorfont.h>
#include <X11/keysym.h>
#include <X11/Xatom.h>
2007-10-17 09:19:14 +00:00
#include <X11/Xlib.h>
2007-09-15 20:25:27 +00:00
#include <X11/Xproto.h>
#include <X11/Xutil.h>
#ifdef XINERAMA
#include <X11/extensions/Xinerama.h>
#endif /* XINERAMA */
#include <X11/Xft/Xft.h>
2007-09-15 20:25:27 +00:00
2013-04-17 19:21:47 +00:00
#include "drw.h"
#include "util.h"
2024-05-30 19:39:43 +00:00
#include "dwm.h"
2012-11-17 18:01:22 +00:00
#include "config.h"
2007-10-18 15:02:19 +00:00
/* function implementations */
void
2015-11-08 22:11:48 +00:00
applyrules(Client *c)
{
2009-07-12 21:49:06 +00:00
const char *class, *instance;
2008-07-16 17:17:42 +00:00
unsigned int i;
const Rule *r;
Monitor *m;
XClassHint ch = { NULL, NULL };
2007-09-15 20:25:27 +00:00
2007-09-16 09:53:14 +00:00
/* rule matching */
2015-11-08 21:48:43 +00:00
c->isfloating = 0;
c->tags = 0;
XGetClassHint(dpy, c->win, &ch);
class = ch.res_class ? ch.res_class : broken;
instance = ch.res_name ? ch.res_name : broken;
2015-11-08 22:11:48 +00:00
for (i = 0; i < LENGTH(rules); i++) {
r = &rules[i];
2015-11-08 22:11:48 +00:00
if ((!r->title || strstr(c->name, r->title))
&& (!r->class || strstr(class, r->class))
&& (!r->instance || strstr(instance, r->instance)))
{
c->isfloating = r->isfloating;
c->tags |= r->tags;
2015-11-08 22:11:48 +00:00
for (m = mons; m && m->num != r->monitor; m = m->next);
if (m)
c->mon = m;
2007-09-16 09:53:14 +00:00
}
2008-02-26 22:51:23 +00:00
}
2015-11-08 22:11:48 +00:00
if (ch.res_class)
XFree(ch.res_class);
2015-11-08 22:11:48 +00:00
if (ch.res_name)
XFree(ch.res_name);
c->tags = c->tags & TAGMASK ? c->tags & TAGMASK : c->mon->tagset[c->mon->seltags];
2007-09-15 20:25:27 +00:00
}
2015-11-08 21:48:43 +00:00
int
2015-11-08 22:11:48 +00:00
applysizehints(Client *c, int *x, int *y, int *w, int *h, int interact)
{
2015-11-08 21:48:43 +00:00
int baseismin;
2009-06-30 19:15:31 +00:00
Monitor *m = c->mon;
/* set minimum possible */
*w = MAX(1, *w);
*h = MAX(1, *h);
2015-11-08 22:11:48 +00:00
if (interact) {
if (*x > sw)
*x = sw - WIDTH(c);
2015-11-08 22:11:48 +00:00
if (*y > sh)
*y = sh - HEIGHT(c);
2015-11-08 22:11:48 +00:00
if (*x + *w + 2 * c->bw < 0)
*x = 0;
2015-11-08 22:11:48 +00:00
if (*y + *h + 2 * c->bw < 0)
*y = 0;
2015-11-08 22:11:48 +00:00
} else {
if (*x >= m->wx + m->ww)
2011-11-04 19:02:35 +00:00
*x = m->wx + m->ww - WIDTH(c);
2015-11-08 22:11:48 +00:00
if (*y >= m->wy + m->wh)
2011-11-04 19:02:35 +00:00
*y = m->wy + m->wh - HEIGHT(c);
2015-11-08 22:11:48 +00:00
if (*x + *w + 2 * c->bw <= m->wx)
2011-11-04 19:02:35 +00:00
*x = m->wx;
2015-11-08 22:11:48 +00:00
if (*y + *h + 2 * c->bw <= m->wy)
2011-11-04 19:02:35 +00:00
*y = m->wy;
}
2015-11-08 22:11:48 +00:00
if (*h < bh)
*h = bh;
2015-11-08 22:11:48 +00:00
if (*w < bh)
*w = bh;
2015-11-08 22:11:48 +00:00
if (resizehints || c->isfloating || !c->mon->lt[c->mon->sellt]->arrange) {
manage: propertynotify: Reduce cost of unused size hints This patch defers all size hint calculations until they are actually needed, drastically reducing the number of calls to updatesizehints(), which can be expensive when called repeatedly (as it currently is during resizes). In my unscientific testing this reduces calls to updatesizehints() by over 90% during a typical work session. There are no functional changes for users other than an increase in responsiveness after resizes and a reduction in CPU time. In slower environments or X servers, this patch also offers an improvement in responsiveness that is often tangible after resizing a client that changes hints during resizes. There are two main motivations to defer this work to the time of hint application: 1. Some clients, especially terminals using incremental size hints, resend XA_WM_NORMAL_HINTS events on resize to avoid fighting with the WM or mouse resizing. For example, some terminals like urxvt clear PBaseSize and PResizeInc during XResizeWindow and restore them afterwards. For this reason, after the resize is concluded, we typically receive a backlogged XA_WM_NORMAL_HINTS message for each update period with movement, which is useless. In some cases one may get hundreds or thousands of XA_WM_NORMAL_HINTS messages on large resizes, and currently all of these result in a separate updatesizehints() call, of which all but the final one are immediately outdated. (We can't just blindly discard these messages during resizes like we do for EnterNotify, because some of them might actually be for other windows, and may not be XA_WM_NORMAL_HINTS events.) 2. For users which use resizehints=0 most of these updates are unused anyway -- in the normal case where the client is not floating these values won't be used, so there's no need to calculate them up front. A synthetic test using the mouse to resize a floating terminal window from roughly 256x256 to 1024x1024 and back again shows that the number of calls to updatesizehints() goes from over 500 before this patch (one for each update interval with movement) to 2 after this patch (one for each hint application), with no change in user visible behaviour. This also reduces the delay before dwm is ready to process new events again after a large resize on such a client, as it avoids the thundering herd of updatesizehints() calls when hundreds of backlogged XA_WM_NORMAL_HINTS messages appear at once after a resize is finished.
2022-03-17 15:56:13 +00:00
if (!c->hintsvalid)
updatesizehints(c);
/* see last two sentences in ICCCM 4.1.2.3 */
baseismin = c->basew == c->minw && c->baseh == c->minh;
2015-11-08 22:11:48 +00:00
if (!baseismin) { /* temporarily remove base dimensions */
*w -= c->basew;
*h -= c->baseh;
}
/* adjust for aspect limits */
2015-11-08 22:11:48 +00:00
if (c->mina > 0 && c->maxa > 0) {
if (c->maxa < (float)*w / *h)
2009-07-17 14:28:07 +00:00
*w = *h * c->maxa + 0.5;
2015-11-08 22:11:48 +00:00
else if (c->mina < (float)*h / *w)
2009-07-17 14:28:07 +00:00
*h = *w * c->mina + 0.5;
}
2015-11-08 22:11:48 +00:00
if (baseismin) { /* increment calculation requires this */
*w -= c->basew;
*h -= c->baseh;
}
/* adjust for increment value */
2015-11-08 22:11:48 +00:00
if (c->incw)
*w -= *w % c->incw;
2015-11-08 22:11:48 +00:00
if (c->inch)
*h -= *h % c->inch;
/* restore base dimensions */
*w = MAX(*w + c->basew, c->minw);
*h = MAX(*h + c->baseh, c->minh);
2015-11-08 22:11:48 +00:00
if (c->maxw)
*w = MIN(*w, c->maxw);
2015-11-08 22:11:48 +00:00
if (c->maxh)
*h = MIN(*h, c->maxh);
}
return *x != c->x || *y != c->y || *w != c->w || *h != c->h;
}
void
2015-11-08 22:11:48 +00:00
arrange(Monitor *m)
{
if (m)
showhide(m->stack);
2015-11-08 22:11:48 +00:00
else for (m = mons; m; m = m->next)
showhide(m->stack);
2015-11-08 22:11:48 +00:00
if (m) {
arrangemon(m);
restack(m);
2015-11-08 22:11:48 +00:00
} else for (m = mons; m; m = m->next)
arrangemon(m);
}
void
2015-11-08 22:11:48 +00:00
arrangemon(Monitor *m)
{
strncpy(m->ltsymbol, m->lt[m->sellt]->symbol, sizeof m->ltsymbol);
2015-11-08 22:11:48 +00:00
if (m->lt[m->sellt]->arrange)
m->lt[m->sellt]->arrange(m);
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
attach(Client *c)
{
c->next = c->mon->clients;
c->mon->clients = c;
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
attachstack(Client *c)
{
c->snext = c->mon->stack;
c->mon->stack = c;
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
buttonpress(XEvent *e)
{
2008-07-16 17:17:42 +00:00
unsigned int i, x, click;
2008-06-20 15:52:07 +00:00
Arg arg = {0};
2007-09-16 09:53:14 +00:00
Client *c;
Monitor *m;
2007-09-16 09:53:14 +00:00
XButtonPressedEvent *ev = &e->xbutton;
2007-09-15 20:25:27 +00:00
2008-06-15 09:52:57 +00:00
click = ClkRootWin;
/* focus monitor if necessary */
2015-11-08 22:11:48 +00:00
if ((m = wintomon(ev->window)) && m != selmon) {
2015-11-08 21:48:43 +00:00
unfocus(selmon->sel, 1);
selmon = m;
focus(NULL);
}
2015-11-08 22:11:48 +00:00
if (ev->window == selmon->barwin) {
2009-07-09 10:29:01 +00:00
i = x = 0;
2011-07-27 17:59:10 +00:00
do
x += TEXTW(tags[i]);
2015-11-08 22:11:48 +00:00
while (ev->x >= x && ++i < LENGTH(tags));
if (i < LENGTH(tags)) {
2008-06-20 15:52:07 +00:00
click = ClkTagBar;
arg.ui = 1 << i;
} else if (ev->x < x + TEXTW(selmon->ltsymbol))
click = ClkLtSymbol;
2024-08-08 21:34:34 +00:00
else if (ev->x > selmon->ww - statusw) {
char *text, *s, ch;
*lastbutton = '0' + ev->button;
x = selmon->ww - statusw;
click = ClkStatusText;
2024-08-08 21:34:34 +00:00
statuscmdn = 0;
for (text = s = stext; *s && x <= ev->x; s++) {
if ((unsigned char)(*s) < ' ') {
ch = *s;
*s = '\0';
x += TEXTW(text) - lrpad;
*s = ch;
text = s + 1;
if (x >= ev->x)
break;
statuscmdn = ch;
}
}
}
else
click = ClkWinTitle;
2015-11-08 22:11:48 +00:00
} else if ((c = wintoclient(ev->window))) {
2008-06-15 09:52:57 +00:00
focus(c);
restack(selmon);
XAllowEvents(dpy, ReplayPointer, CurrentTime);
click = ClkClientWin;
2008-06-15 09:52:57 +00:00
}
2015-11-08 22:11:48 +00:00
for (i = 0; i < LENGTH(buttons); i++)
if (click == buttons[i].click && buttons[i].func && buttons[i].button == ev->button
2009-07-14 15:26:04 +00:00
&& CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
2008-09-01 21:18:50 +00:00
buttons[i].func(click == ClkTagBar && buttons[i].arg.i == 0 ? &arg : &buttons[i].arg);
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
checkotherwm(void)
{
xerrorxlib = XSetErrorHandler(xerrorstart);
2007-09-16 10:34:08 +00:00
/* this causes an error if some other window manager is running */
XSelectInput(dpy, DefaultRootWindow(dpy), SubstructureRedirectMask);
2007-09-16 10:34:08 +00:00
XSync(dpy, False);
XSetErrorHandler(xerror);
2007-09-16 10:34:08 +00:00
XSync(dpy, False);
}
void
2015-11-08 22:11:48 +00:00
cleanup(void)
{
2008-08-12 19:24:40 +00:00
Arg a = {.ui = ~0};
Layout foo = { "", NULL };
Monitor *m;
size_t i;
2008-06-11 08:12:06 +00:00
view(&a);
selmon->lt[selmon->sellt] = &foo;
2015-11-08 22:11:48 +00:00
for (m = mons; m; m = m->next)
while (m->stack)
2015-11-08 21:48:43 +00:00
unmanage(m->stack, 0);
2008-02-18 17:08:22 +00:00
XUngrabKey(dpy, AnyKey, AnyModifier, root);
2015-11-08 22:11:48 +00:00
while (mons)
cleanupmon(mons);
2015-11-08 22:11:48 +00:00
for (i = 0; i < CurLast; i++)
drw_cur_free(drw, cursor[i]);
for (i = 0; i < LENGTH(colors); i++)
free(scheme[i]);
free(scheme);
XDestroyWindow(dpy, wmcheckwin);
2013-06-16 13:20:29 +00:00
drw_free(drw);
2008-02-18 17:08:22 +00:00
XSync(dpy, False);
XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
2007-09-15 20:25:27 +00:00
}
2009-06-22 13:58:08 +00:00
void
2015-11-08 22:11:48 +00:00
cleanupmon(Monitor *mon)
{
2009-06-22 13:58:08 +00:00
Monitor *m;
2015-11-08 22:11:48 +00:00
if (mon == mons)
mons = mons->next;
else {
2015-11-08 22:11:48 +00:00
for (m = mons; m && m->next != mon; m = m->next);
m->next = mon->next;
2009-06-22 13:58:08 +00:00
}
XUnmapWindow(dpy, mon->barwin);
XDestroyWindow(dpy, mon->barwin);
free(mon);
2009-06-22 13:58:08 +00:00
}
void
2015-11-08 22:11:48 +00:00
clientmessage(XEvent *e)
{
XClientMessageEvent *cme = &e->xclient;
Client *c = wintoclient(cme->window);
2015-11-08 22:11:48 +00:00
if (!c)
return;
2015-11-08 22:11:48 +00:00
if (cme->message_type == netatom[NetWMState]) {
if (cme->data.l[1] == netatom[NetWMFullscreen]
|| cme->data.l[2] == netatom[NetWMFullscreen])
2011-11-06 19:30:06 +00:00
setfullscreen(c, (cme->data.l[0] == 1 /* _NET_WM_STATE_ADD */
|| (cme->data.l[0] == 2 /* _NET_WM_STATE_TOGGLE */ && !c->isfullscreen)));
2015-11-08 22:11:48 +00:00
} else if (cme->message_type == netatom[NetActiveWindow]) {
if (c != selmon->sel && !c->isurgent)
seturgent(c, 1);
}
}
void
2015-11-08 22:11:48 +00:00
configure(Client *c)
{
2007-09-16 09:53:14 +00:00
XConfigureEvent ce;
2007-09-15 20:25:27 +00:00
2007-09-16 09:53:14 +00:00
ce.type = ConfigureNotify;
ce.display = dpy;
ce.event = c->win;
ce.window = c->win;
ce.x = c->x;
ce.y = c->y;
ce.width = c->w;
ce.height = c->h;
ce.border_width = c->bw;
2007-09-16 09:53:14 +00:00
ce.above = None;
ce.override_redirect = False;
XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&ce);
}
void
2015-11-08 22:11:48 +00:00
configurenotify(XEvent *e)
{
2009-06-22 13:58:08 +00:00
Monitor *m;
Client *c;
2007-09-16 09:53:14 +00:00
XConfigureEvent *ev = &e->xconfigure;
2015-11-08 21:48:43 +00:00
int dirty;
2007-09-16 09:53:14 +00:00
/* TODO: updategeom handling sucks, needs to be simplified */
2015-11-08 22:11:48 +00:00
if (ev->window == root) {
dirty = (sw != ev->width || sh != ev->height);
2008-03-19 09:27:17 +00:00
sw = ev->width;
sh = ev->height;
2015-11-08 22:11:48 +00:00
if (updategeom() || dirty) {
2013-06-16 13:20:29 +00:00
drw_resize(drw, sw, bh);
updatebars();
for (m = mons; m; m = m->next) {
for (c = m->clients; c; c = c->next)
if (c->isfullscreen)
resizeclient(c, m->mx, m->my, m->mw, m->mh);
XMoveResizeWindow(dpy, m->barwin, m->wx, m->by, m->ww, bh);
}
focus(NULL);
arrange(NULL);
}
2008-03-19 09:27:17 +00:00
}
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
configurerequest(XEvent *e)
{
2007-09-15 20:25:27 +00:00
Client *c;
Monitor *m;
2007-09-15 20:25:27 +00:00
XConfigureRequestEvent *ev = &e->xconfigurerequest;
XWindowChanges wc;
2015-11-08 22:11:48 +00:00
if ((c = wintoclient(ev->window))) {
if (ev->value_mask & CWBorderWidth)
c->bw = ev->border_width;
2015-11-08 22:11:48 +00:00
else if (c->isfloating || !selmon->lt[selmon->sellt]->arrange) {
m = c->mon;
2015-11-08 22:11:48 +00:00
if (ev->value_mask & CWX) {
c->oldx = c->x;
c->x = m->mx + ev->x;
}
2015-11-08 22:11:48 +00:00
if (ev->value_mask & CWY) {
c->oldy = c->y;
c->y = m->my + ev->y;
}
2015-11-08 22:11:48 +00:00
if (ev->value_mask & CWWidth) {
c->oldw = c->w;
2007-09-15 20:25:27 +00:00
c->w = ev->width;
}
2015-11-08 22:11:48 +00:00
if (ev->value_mask & CWHeight) {
c->oldh = c->h;
2007-09-15 20:25:27 +00:00
c->h = ev->height;
}
2015-11-08 22:11:48 +00:00
if ((c->x + c->w) > m->mx + m->mw && c->isfloating)
c->x = m->mx + (m->mw / 2 - WIDTH(c) / 2); /* center in x direction */
2015-11-08 22:11:48 +00:00
if ((c->y + c->h) > m->my + m->mh && c->isfloating)
c->y = m->my + (m->mh / 2 - HEIGHT(c) / 2); /* center in y direction */
2015-11-08 22:11:48 +00:00
if ((ev->value_mask & (CWX|CWY)) && !(ev->value_mask & (CWWidth|CWHeight)))
2007-09-15 20:25:27 +00:00
configure(c);
2015-11-08 22:11:48 +00:00
if (ISVISIBLE(c))
2007-09-15 20:25:27 +00:00
XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
2015-11-08 22:11:48 +00:00
} else
2007-09-15 20:25:27 +00:00
configure(c);
2015-11-08 22:11:48 +00:00
} else {
2007-09-15 20:25:27 +00:00
wc.x = ev->x;
wc.y = ev->y;
wc.width = ev->width;
wc.height = ev->height;
wc.border_width = ev->border_width;
wc.sibling = ev->above;
wc.stack_mode = ev->detail;
XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
}
XSync(dpy, False);
}
Monitor *
2015-11-08 22:11:48 +00:00
createmon(void)
{
Monitor *m;
2024-05-30 19:39:43 +00:00
unsigned int i;
m = ecalloc(1, sizeof(Monitor));
m->tagset[0] = m->tagset[1] = 1;
m->mfact = mfact;
2011-10-25 19:40:46 +00:00
m->nmaster = nmaster;
m->showbar = showbar;
m->topbar = topbar;
m->lt[0] = &layouts[0];
m->lt[1] = &layouts[1 % LENGTH(layouts)];
strncpy(m->ltsymbol, layouts[0].symbol, sizeof m->ltsymbol);
2024-05-30 19:39:43 +00:00
m->pertag = ecalloc(1, sizeof(Pertag));
m->pertag->curtag = m->pertag->prevtag = 1;
for (i = 0; i <= LENGTH(tags); i++) {
m->pertag->nmasters[i] = m->nmaster;
m->pertag->mfacts[i] = m->mfact;
m->pertag->ltidxs[i][0] = m->lt[0];
m->pertag->ltidxs[i][1] = m->lt[1];
m->pertag->sellts[i] = m->sellt;
m->pertag->showbars[i] = m->showbar;
if (i > 0) {
m->pertag->drawwithgaps[i] = startwithgaps[(i - 1) % LENGTH(gappx)];
m->pertag->gappx[i] = gappx[(i - 1) % LENGTH(gappx)];
}
}
m->pertag->drawwithgaps[0] = startwithgaps[0];
m->pertag->gappx[0] = gappx[0];
return m;
}
void
2015-11-08 22:11:48 +00:00
destroynotify(XEvent *e)
{
2007-09-15 20:25:27 +00:00
Client *c;
XDestroyWindowEvent *ev = &e->xdestroywindow;
2015-11-08 22:11:48 +00:00
if ((c = wintoclient(ev->window)))
2015-11-08 21:48:43 +00:00
unmanage(c, 1);
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
detach(Client *c)
{
2008-07-03 09:58:35 +00:00
Client **tc;
2008-06-11 08:12:06 +00:00
2015-11-08 22:11:48 +00:00
for (tc = &c->mon->clients; *tc && *tc != c; tc = &(*tc)->next);
2008-07-03 09:58:35 +00:00
*tc = c->next;
2007-09-16 09:53:14 +00:00
}
2007-09-15 20:25:27 +00:00
void
2015-11-08 22:11:48 +00:00
detachstack(Client *c)
{
2009-06-30 18:45:25 +00:00
Client **tc, *t;
2007-09-16 09:53:14 +00:00
2015-11-08 22:11:48 +00:00
for (tc = &c->mon->stack; *tc && *tc != c; tc = &(*tc)->snext);
2007-09-16 09:53:14 +00:00
*tc = c->snext;
2009-06-30 18:39:59 +00:00
2015-11-08 22:11:48 +00:00
if (c == c->mon->sel) {
for (t = c->mon->stack; t && !ISVISIBLE(t); t = t->snext);
2009-06-30 18:45:25 +00:00
c->mon->sel = t;
2009-06-30 18:39:59 +00:00
}
2007-09-16 09:53:14 +00:00
}
Monitor *
2015-11-08 22:11:48 +00:00
dirtomon(int dir)
{
Monitor *m = NULL;
2015-11-08 22:11:48 +00:00
if (dir > 0) {
if (!(m = selmon->next))
m = mons;
2015-11-08 22:11:48 +00:00
} else if (selmon == mons)
for (m = mons; m->next; m = m->next);
2011-07-27 17:59:10 +00:00
else
2015-11-08 22:11:48 +00:00
for (m = mons; m->next != selmon; m = m->next);
return m;
}
void
2015-11-08 22:11:48 +00:00
drawbar(Monitor *m)
{
int x, w, tw = 0;
int boxs = drw->fonts->h / 9;
int boxw = drw->fonts->h / 6 + 2;
unsigned int i, occ = 0, urg = 0;
Client *c;
if (!m->showbar)
return;
/* draw status first so it can be overdrawn by tags later */
if (m == selmon) { /* status is only drawn on selected monitor */
2024-08-08 21:34:34 +00:00
char *text, *s, ch;
drw_setscheme(drw, scheme[SchemeNorm]);
2024-08-08 21:34:34 +00:00
x = 0;
for (text = s = stext; *s; s++) {
if ((unsigned char)(*s) < ' ') {
ch = *s;
*s = '\0';
tw = TEXTW(text) - lrpad;
drw_text(drw, m->ww - statusw + x, 0, tw, bh, 0, text, 0);
x += tw;
*s = ch;
text = s + 1;
}
}
tw = TEXTW(text) - lrpad + 2;
drw_text(drw, m->ww - statusw + x, 0, tw, bh, 0, text, 0);
tw = statusw;
}
2015-11-08 22:11:48 +00:00
for (c = m->clients; c; c = c->next) {
occ |= c->tags;
2015-11-08 22:11:48 +00:00
if (c->isurgent)
urg |= c->tags;
}
2013-06-16 13:20:29 +00:00
x = 0;
2015-11-08 22:11:48 +00:00
for (i = 0; i < LENGTH(tags); i++) {
2013-06-16 13:20:29 +00:00
w = TEXTW(tags[i]);
drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? SchemeSel : SchemeNorm]);
drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i);
if (occ & 1 << i)
drw_rect(drw, x + boxs, boxs, boxw, boxw,
m == selmon && selmon->sel && selmon->sel->tags & 1 << i,
urg & 1 << i);
2013-06-16 13:20:29 +00:00
x += w;
}
w = TEXTW(m->ltsymbol);
drw_setscheme(drw, scheme[SchemeNorm]);
x = drw_text(drw, x, 0, w, bh, lrpad / 2, m->ltsymbol, 0);
if ((w = m->ww - tw - x) > bh) {
2015-11-08 22:11:48 +00:00
if (m->sel) {
drw_setscheme(drw, scheme[m == selmon ? SchemeSel : SchemeNorm]);
drw_text(drw, x, 0, w, bh, lrpad / 2, m->sel->name, 0);
if (m->sel->isfloating)
drw_rect(drw, x + boxs, boxs, boxw, boxw, m->sel->isfixed, 0);
2015-11-08 22:11:48 +00:00
} else {
drw_setscheme(drw, scheme[SchemeNorm]);
drw_rect(drw, x, 0, w, bh, 1, 1);
}
}
2013-06-16 13:20:29 +00:00
drw_map(drw, m->barwin, 0, 0, m->ww, bh);
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
drawbars(void)
{
2009-06-22 13:58:08 +00:00
Monitor *m;
2015-11-08 22:11:48 +00:00
for (m = mons; m; m = m->next)
2009-06-22 13:58:08 +00:00
drawbar(m);
}
void
2015-11-08 22:11:48 +00:00
enternotify(XEvent *e)
{
2011-06-25 08:07:28 +00:00
Client *c;
Monitor *m;
2007-09-16 09:53:14 +00:00
XCrossingEvent *ev = &e->xcrossing;
2015-11-08 22:11:48 +00:00
if ((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
return;
2011-06-25 08:07:28 +00:00
c = wintoclient(ev->window);
m = c ? c->mon : wintomon(ev->window);
2015-11-08 22:11:48 +00:00
if (m != selmon) {
2015-11-08 21:48:43 +00:00
unfocus(selmon->sel, 1);
selmon = m;
2015-11-08 22:11:48 +00:00
} else if (!c || c == selmon->sel)
2011-06-25 08:07:28 +00:00
return;
focus(c);
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
expose(XEvent *e)
{
2009-06-22 13:58:08 +00:00
Monitor *m;
2007-09-16 09:53:14 +00:00
XExposeEvent *ev = &e->xexpose;
2007-09-15 20:25:27 +00:00
2015-11-08 22:11:48 +00:00
if (ev->count == 0 && (m = wintomon(ev->window)))
drawbar(m);
}
void
2015-11-08 22:11:48 +00:00
focus(Client *c)
{
if (!c || !ISVISIBLE(c))
for (c = selmon->stack; c && !ISVISIBLE(c); c = c->snext);
if (selmon->sel && selmon->sel != c)
2015-11-08 21:48:43 +00:00
unfocus(selmon->sel, 0);
2015-11-08 22:11:48 +00:00
if (c) {
if (c->mon != selmon)
2009-06-24 14:37:32 +00:00
selmon = c->mon;
2015-11-08 22:11:48 +00:00
if (c->isurgent)
seturgent(c, 0);
2007-09-16 09:53:14 +00:00
detachstack(c);
attachstack(c);
2015-11-08 21:48:43 +00:00
grabbuttons(c, 1);
XSetWindowBorder(dpy, c->win, scheme[SchemeSel][ColBorder].pixel);
2024-05-30 19:39:43 +00:00
if (!selmon->pertag->drawwithgaps[selmon->pertag->curtag] && !c->isfloating) {
XWindowChanges wc;
wc.sibling = selmon->barwin;
wc.stack_mode = Below;
XConfigureWindow(dpy, c->win, CWSibling | CWStackMode, &wc);
}
setfocus(c);
2015-11-08 22:11:48 +00:00
} else {
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
}
selmon->sel = c;
drawbars();
2007-09-15 20:25:27 +00:00
}
/* there are some broken focus acquiring clients needing extra handling */
void
2015-11-08 22:11:48 +00:00
focusin(XEvent *e)
{
XFocusChangeEvent *ev = &e->xfocus;
2015-11-08 22:11:48 +00:00
if (selmon->sel && ev->window != selmon->sel->win)
setfocus(selmon->sel);
}
void
2015-11-08 22:11:48 +00:00
focusmon(const Arg *arg)
{
Monitor *m;
2015-11-08 22:11:48 +00:00
if (!mons->next)
return;
2015-11-08 22:11:48 +00:00
if ((m = dirtomon(arg->i)) == selmon)
return;
unfocus(selmon->sel, 0);
selmon = m;
focus(NULL);
}
void
2015-11-08 22:11:48 +00:00
focusstack(const Arg *arg)
{
2008-06-11 08:12:06 +00:00
Client *c = NULL, *i;
2007-09-15 20:25:27 +00:00
if (!selmon->sel || (selmon->sel->isfullscreen && lockfullscreen))
2007-09-16 09:53:14 +00:00
return;
2015-11-08 22:11:48 +00:00
if (arg->i > 0) {
for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);
if (!c)
for (c = selmon->clients; c && !ISVISIBLE(c); c = c->next);
} else {
for (i = selmon->clients; i != selmon->sel; i = i->next)
if (ISVISIBLE(i))
2008-06-11 08:12:06 +00:00
c = i;
2015-11-08 22:11:48 +00:00
if (!c)
for (; i; i = i->next)
if (ISVISIBLE(i))
2008-06-11 08:12:06 +00:00
c = i;
2007-09-16 09:53:14 +00:00
}
2015-11-08 22:11:48 +00:00
if (c) {
2007-09-16 09:53:14 +00:00
focus(c);
restack(selmon);
2007-09-16 09:53:14 +00:00
}
2007-09-15 20:25:27 +00:00
}
2011-11-06 19:30:06 +00:00
Atom
2015-11-08 22:11:48 +00:00
getatomprop(Client *c, Atom prop)
{
2011-11-06 19:30:06 +00:00
int di;
unsigned long dl;
unsigned char *p = NULL;
Atom da, atom = None;
2015-11-08 22:11:48 +00:00
if (XGetWindowProperty(dpy, c->win, prop, 0L, sizeof atom, False, XA_ATOM,
&da, &di, &dl, &dl, &p) == Success && p) {
2011-11-06 19:30:06 +00:00
atom = *(Atom *)p;
XFree(p);
}
return atom;
}
2015-11-08 21:48:43 +00:00
int
2015-11-08 22:11:48 +00:00
getrootptr(int *x, int *y)
{
int di;
unsigned int dui;
Window dummy;
2009-07-02 17:40:04 +00:00
2015-11-08 21:48:43 +00:00
return XQueryPointer(dpy, root, &dummy, &dummy, x, y, &di, &di, &dui);
}
long
2015-11-08 22:11:48 +00:00
getstate(Window w)
{
int format;
2007-09-16 09:53:14 +00:00
long result = -1;
unsigned char *p = NULL;
2008-07-16 17:17:42 +00:00
unsigned long n, extra;
2007-09-16 09:53:14 +00:00
Atom real;
2007-09-15 20:25:27 +00:00
2015-11-08 22:11:48 +00:00
if (XGetWindowProperty(dpy, w, wmatom[WMState], 0L, 2L, False, wmatom[WMState],
&real, &format, &n, &extra, (unsigned char **)&p) != Success)
2007-09-16 09:53:14 +00:00
return -1;
2015-11-08 22:11:48 +00:00
if (n != 0)
2007-09-16 09:53:14 +00:00
result = *p;
XFree(p);
return result;
2007-09-15 20:25:27 +00:00
}
2015-11-08 21:48:43 +00:00
int
2015-11-08 22:11:48 +00:00
gettextprop(Window w, Atom atom, char *text, unsigned int size)
{
2007-09-16 09:53:14 +00:00
char **list = NULL;
int n;
XTextProperty name;
2007-09-15 20:25:27 +00:00
2015-11-08 22:11:48 +00:00
if (!text || size == 0)
2015-11-08 21:48:43 +00:00
return 0;
2007-09-16 09:53:14 +00:00
text[0] = '\0';
if (!XGetTextProperty(dpy, w, &name, atom) || !name.nitems)
2015-11-08 21:48:43 +00:00
return 0;
if (name.encoding == XA_STRING) {
2007-09-16 09:53:14 +00:00
strncpy(text, (char *)name.value, size - 1);
} else if (XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success && n > 0 && *list) {
strncpy(text, *list, size - 1);
XFreeStringList(list);
2007-09-16 09:53:14 +00:00
}
text[size - 1] = '\0';
XFree(name.value);
2015-11-08 21:48:43 +00:00
return 1;
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
grabbuttons(Client *c, int focused)
{
updatenumlockmask();
{
unsigned int i, j;
unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
if (!focused)
XGrabButton(dpy, AnyButton, AnyModifier, c->win, False,
BUTTONMASK, GrabModeSync, GrabModeSync, None, None);
for (i = 0; i < LENGTH(buttons); i++)
if (buttons[i].click == ClkClientWin)
for (j = 0; j < LENGTH(modifiers); j++)
XGrabButton(dpy, buttons[i].button,
buttons[i].mask | modifiers[j],
c->win, False, BUTTONMASK,
GrabModeAsync, GrabModeSync, None, None);
}
2007-09-16 09:53:14 +00:00
}
void
2015-11-08 22:11:48 +00:00
grabkeys(void)
{
updatenumlockmask();
2009-07-02 17:40:04 +00:00
{
unsigned int i, j, k;
2008-08-23 08:31:28 +00:00
unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
int start, end, skip;
KeySym *syms;
2008-08-23 08:31:28 +00:00
XUngrabKey(dpy, AnyKey, AnyModifier, root);
XDisplayKeycodes(dpy, &start, &end);
syms = XGetKeyboardMapping(dpy, start, end - start + 1, &skip);
if (!syms)
return;
for (k = start; k <= end; k++)
for (i = 0; i < LENGTH(keys); i++)
/* skip modifier codes, we do that ourselves */
if (keys[i].keysym == syms[(k - start) * skip])
for (j = 0; j < LENGTH(modifiers); j++)
XGrabKey(dpy, k,
keys[i].mod | modifiers[j],
root, True,
GrabModeAsync, GrabModeAsync);
XFree(syms);
}
}
2011-10-25 19:40:46 +00:00
void
2015-11-08 22:11:48 +00:00
incnmaster(const Arg *arg)
{
2024-05-30 19:39:43 +00:00
selmon->nmaster = selmon->pertag->nmasters[selmon->pertag->curtag] = MAX(selmon->nmaster + arg->i, 0);
2011-10-25 19:40:46 +00:00
arrange(selmon);
}
#ifdef XINERAMA
2015-11-08 21:48:43 +00:00
static int
2015-11-08 22:11:48 +00:00
isuniquegeom(XineramaScreenInfo *unique, size_t n, XineramaScreenInfo *info)
{
while (n--)
if (unique[n].x_org == info->x_org && unique[n].y_org == info->y_org
&& unique[n].width == info->width && unique[n].height == info->height)
2015-11-08 21:48:43 +00:00
return 0;
return 1;
}
#endif /* XINERAMA */
void
2015-11-08 22:11:48 +00:00
keypress(XEvent *e)
{
2008-07-16 17:17:42 +00:00
unsigned int i;
2007-09-16 09:53:14 +00:00
KeySym keysym;
XKeyEvent *ev;
ev = &e->xkey;
keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
2015-11-08 22:11:48 +00:00
for (i = 0; i < LENGTH(keys); i++)
if (keysym == keys[i].keysym
2009-07-14 15:26:04 +00:00
&& CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
&& keys[i].func)
2008-06-11 08:12:06 +00:00
keys[i].func(&(keys[i].arg));
2007-09-16 09:53:14 +00:00
}
void
2015-11-08 22:11:48 +00:00
killclient(const Arg *arg)
{
if (!selmon->sel)
2007-09-15 20:25:27 +00:00
return;
2015-11-08 22:11:48 +00:00
if (!sendevent(selmon->sel, wmatom[WMDelete])) {
2009-09-08 12:30:18 +00:00
XGrabServer(dpy);
XSetErrorHandler(xerrordummy);
XSetCloseDownMode(dpy, DestroyAll);
XKillClient(dpy, selmon->sel->win);
2009-09-08 12:30:18 +00:00
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
}
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
manage(Window w, XWindowAttributes *wa)
{
2007-09-16 09:53:14 +00:00
Client *c, *t = NULL;
2008-08-18 09:22:46 +00:00
Window trans = None;
2007-09-16 09:53:14 +00:00
XWindowChanges wc;
2007-09-15 20:25:27 +00:00
c = ecalloc(1, sizeof(Client));
2007-09-16 09:53:14 +00:00
c->win = w;
/* geometry */
c->x = c->oldx = wa->x;
c->y = c->oldy = wa->y;
c->w = c->oldw = wa->width;
c->h = c->oldh = wa->height;
c->oldbw = wa->border_width;
2009-07-12 21:34:29 +00:00
updatetitle(c);
2015-11-08 22:11:48 +00:00
if (XGetTransientForHint(dpy, w, &trans) && (t = wintoclient(trans))) {
c->mon = t->mon;
c->tags = t->tags;
2015-11-08 22:11:48 +00:00
} else {
c->mon = selmon;
applyrules(c);
}
2011-11-06 19:30:06 +00:00
if (c->x + WIDTH(c) > c->mon->wx + c->mon->ww)
c->x = c->mon->wx + c->mon->ww - WIDTH(c);
if (c->y + HEIGHT(c) > c->mon->wy + c->mon->wh)
c->y = c->mon->wy + c->mon->wh - HEIGHT(c);
c->x = MAX(c->x, c->mon->wx);
c->y = MAX(c->y, c->mon->wy);
2011-11-06 19:30:06 +00:00
c->bw = borderpx;
wc.border_width = c->bw;
2007-09-16 09:53:14 +00:00
XConfigureWindow(dpy, w, CWBorderWidth, &wc);
XSetWindowBorder(dpy, w, scheme[SchemeNorm][ColBorder].pixel);
2007-09-16 09:53:14 +00:00
configure(c); /* propagates border_width, if size doesn't change */
2011-11-02 12:01:28 +00:00
updatewindowtype(c);
updatesizehints(c);
updatewmhints(c);
XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
2015-11-08 21:48:43 +00:00
grabbuttons(c, 0);
2015-11-08 22:11:48 +00:00
if (!c->isfloating)
c->isfloating = c->oldstate = trans != None || c->isfixed;
2015-11-08 22:11:48 +00:00
if (c->isfloating)
XRaiseWindow(dpy, c->win);
2007-09-16 09:53:14 +00:00
attach(c);
attachstack(c);
XChangeProperty(dpy, root, netatom[NetClientList], XA_WINDOW, 32, PropModeAppend,
(unsigned char *) &(c->win), 1);
2008-06-22 08:29:06 +00:00
XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */
2007-09-16 09:53:14 +00:00
setclientstate(c, NormalState);
if (c->mon == selmon)
2015-11-08 21:48:43 +00:00
unfocus(selmon->sel, 0);
c->mon->sel = c;
arrange(c->mon);
XMapWindow(dpy, c->win);
focus(NULL);
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
mappingnotify(XEvent *e)
{
2007-09-16 09:53:14 +00:00
XMappingEvent *ev = &e->xmapping;
2007-09-15 20:25:27 +00:00
2007-09-16 09:53:14 +00:00
XRefreshKeyboardMapping(ev);
2015-11-08 22:11:48 +00:00
if (ev->request == MappingKeyboard)
grabkeys();
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
maprequest(XEvent *e)
{
2007-09-16 09:53:14 +00:00
static XWindowAttributes wa;
XMapRequestEvent *ev = &e->xmaprequest;
if (!XGetWindowAttributes(dpy, ev->window, &wa) || wa.override_redirect)
2007-09-16 09:53:14 +00:00
return;
2015-11-08 22:11:48 +00:00
if (!wintoclient(ev->window))
2007-09-16 09:53:14 +00:00
manage(ev->window, &wa);
2007-09-15 20:25:27 +00:00
}
2008-06-19 10:38:53 +00:00
void
2015-11-08 22:11:48 +00:00
monocle(Monitor *m)
{
unsigned int n = 0;
2008-06-19 10:38:53 +00:00
Client *c;
2015-11-08 22:11:48 +00:00
for (c = m->clients; c; c = c->next)
if (ISVISIBLE(c))
n++;
2015-11-08 22:11:48 +00:00
if (n > 0) /* override layout symbol */
snprintf(m->ltsymbol, sizeof m->ltsymbol, "[%d]", n);
2015-11-08 22:11:48 +00:00
for (c = nexttiled(m->clients); c; c = nexttiled(c->next))
2024-05-30 19:39:43 +00:00
if (selmon->pertag->drawwithgaps[selmon->pertag->curtag])
resize(c, m->wx, m->wy, m->ww - 2 * c->bw, m->wh - 2 * c->bw, 0);
else
resize(c, m->wx - c->bw, m->wy, m->ww, m->wh, False);
2008-06-19 10:38:53 +00:00
}
2011-11-15 19:16:58 +00:00
void
2015-11-08 22:11:48 +00:00
motionnotify(XEvent *e)
{
2011-11-15 19:16:58 +00:00
static Monitor *mon = NULL;
Monitor *m;
XMotionEvent *ev = &e->xmotion;
2015-11-08 22:11:48 +00:00
if (ev->window != root)
2011-11-15 19:16:58 +00:00
return;
2015-11-08 22:11:48 +00:00
if ((m = recttomon(ev->x_root, ev->y_root, 1, 1)) != mon && mon) {
2015-11-08 21:48:43 +00:00
unfocus(selmon->sel, 1);
2011-11-15 19:16:58 +00:00
selmon = m;
focus(NULL);
}
mon = m;
}
void
2015-11-08 22:11:48 +00:00
movemouse(const Arg *arg)
{
int x, y, ocx, ocy, nx, ny;
Client *c;
Monitor *m;
2007-09-15 20:25:27 +00:00
XEvent ev;
Time lasttime = 0;
2007-09-15 20:25:27 +00:00
2015-11-08 22:11:48 +00:00
if (!(c = selmon->sel))
return;
2015-11-08 22:11:48 +00:00
if (c->isfullscreen) /* no support moving fullscreen windows by mouse */
return;
restack(selmon);
ocx = c->x;
ocy = c->y;
2015-11-08 22:11:48 +00:00
if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
None, cursor[CurMove]->cursor, CurrentTime) != GrabSuccess)
2007-09-15 20:25:27 +00:00
return;
2015-11-08 22:11:48 +00:00
if (!getrootptr(&x, &y))
return;
do {
XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
2011-05-12 14:16:33 +00:00
switch(ev.type) {
2007-09-16 09:53:14 +00:00
case ConfigureRequest:
case Expose:
case MapRequest:
handler[ev.type](&ev);
break;
case MotionNotify:
if ((ev.xmotion.time - lasttime) <= (1000 / 60))
continue;
lasttime = ev.xmotion.time;
nx = ocx + (ev.xmotion.x - x);
ny = ocy + (ev.xmotion.y - y);
if (abs(selmon->wx - nx) < snap)
nx = selmon->wx;
else if (abs((selmon->wx + selmon->ww) - (nx + WIDTH(c))) < snap)
nx = selmon->wx + selmon->ww - WIDTH(c);
if (abs(selmon->wy - ny) < snap)
ny = selmon->wy;
else if (abs((selmon->wy + selmon->wh) - (ny + HEIGHT(c))) < snap)
ny = selmon->wy + selmon->wh - HEIGHT(c);
if (!c->isfloating && selmon->lt[selmon->sellt]->arrange
&& (abs(nx - c->x) > snap || abs(ny - c->y) > snap))
togglefloating(NULL);
2015-11-08 22:11:48 +00:00
if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
2015-11-08 21:48:43 +00:00
resize(c, nx, ny, c->w, c->h, 1);
2007-09-16 09:53:14 +00:00
break;
}
2015-11-08 22:11:48 +00:00
} while (ev.type != ButtonRelease);
XUngrabPointer(dpy, CurrentTime);
2015-11-08 22:11:48 +00:00
if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
sendmon(c, m);
selmon = m;
focus(NULL);
}
2007-09-16 09:53:14 +00:00
}
Client *
2015-11-08 22:11:48 +00:00
nexttiled(Client *c)
{
for (; c && (c->isfloating || !ISVISIBLE(c)); c = c->next);
2007-09-16 09:53:14 +00:00
return c;
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
pop(Client *c)
{
detach(c);
attach(c);
focus(c);
arrange(c->mon);
2009-06-30 18:39:59 +00:00
}
void
2015-11-08 22:11:48 +00:00
propertynotify(XEvent *e)
{
2007-09-16 09:53:14 +00:00
Client *c;
Window trans;
XPropertyEvent *ev = &e->xproperty;
2007-09-15 20:25:27 +00:00
2015-11-08 22:11:48 +00:00
if ((ev->window == root) && (ev->atom == XA_WM_NAME))
updatestatus();
2015-11-08 22:11:48 +00:00
else if (ev->state == PropertyDelete)
2007-09-16 09:53:14 +00:00
return; /* ignore */
2015-11-08 22:11:48 +00:00
else if ((c = wintoclient(ev->window))) {
2011-05-12 14:16:33 +00:00
switch(ev->atom) {
default: break;
case XA_WM_TRANSIENT_FOR:
2015-11-08 22:11:48 +00:00
if (!c->isfloating && (XGetTransientForHint(dpy, c->win, &trans)) &&
(c->isfloating = (wintoclient(trans)) != NULL))
arrange(c->mon);
break;
case XA_WM_NORMAL_HINTS:
manage: propertynotify: Reduce cost of unused size hints This patch defers all size hint calculations until they are actually needed, drastically reducing the number of calls to updatesizehints(), which can be expensive when called repeatedly (as it currently is during resizes). In my unscientific testing this reduces calls to updatesizehints() by over 90% during a typical work session. There are no functional changes for users other than an increase in responsiveness after resizes and a reduction in CPU time. In slower environments or X servers, this patch also offers an improvement in responsiveness that is often tangible after resizing a client that changes hints during resizes. There are two main motivations to defer this work to the time of hint application: 1. Some clients, especially terminals using incremental size hints, resend XA_WM_NORMAL_HINTS events on resize to avoid fighting with the WM or mouse resizing. For example, some terminals like urxvt clear PBaseSize and PResizeInc during XResizeWindow and restore them afterwards. For this reason, after the resize is concluded, we typically receive a backlogged XA_WM_NORMAL_HINTS message for each update period with movement, which is useless. In some cases one may get hundreds or thousands of XA_WM_NORMAL_HINTS messages on large resizes, and currently all of these result in a separate updatesizehints() call, of which all but the final one are immediately outdated. (We can't just blindly discard these messages during resizes like we do for EnterNotify, because some of them might actually be for other windows, and may not be XA_WM_NORMAL_HINTS events.) 2. For users which use resizehints=0 most of these updates are unused anyway -- in the normal case where the client is not floating these values won't be used, so there's no need to calculate them up front. A synthetic test using the mouse to resize a floating terminal window from roughly 256x256 to 1024x1024 and back again shows that the number of calls to updatesizehints() goes from over 500 before this patch (one for each update interval with movement) to 2 after this patch (one for each hint application), with no change in user visible behaviour. This also reduces the delay before dwm is ready to process new events again after a large resize on such a client, as it avoids the thundering herd of updatesizehints() calls when hundreds of backlogged XA_WM_NORMAL_HINTS messages appear at once after a resize is finished.
2022-03-17 15:56:13 +00:00
c->hintsvalid = 0;
break;
case XA_WM_HINTS:
updatewmhints(c);
drawbars();
break;
2007-09-16 09:53:14 +00:00
}
2015-11-08 22:11:48 +00:00
if (ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
2007-09-16 09:53:14 +00:00
updatetitle(c);
2015-11-08 22:11:48 +00:00
if (c == c->mon->sel)
2009-08-18 14:59:38 +00:00
drawbar(c->mon);
2007-09-16 09:53:14 +00:00
}
2015-11-08 22:11:48 +00:00
if (ev->atom == netatom[NetWMWindowType])
2011-11-02 12:01:28 +00:00
updatewindowtype(c);
2007-09-16 09:53:14 +00:00
}
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
quit(const Arg *arg)
{
2015-11-08 21:48:43 +00:00
running = 0;
2007-09-15 20:25:27 +00:00
}
2011-11-06 19:31:29 +00:00
Monitor *
2015-11-08 22:11:48 +00:00
recttomon(int x, int y, int w, int h)
{
2011-11-06 19:31:29 +00:00
Monitor *m, *r = selmon;
int a, area = 0;
2015-11-08 22:11:48 +00:00
for (m = mons; m; m = m->next)
if ((a = INTERSECT(x, y, w, h, m)) > area) {
2011-11-06 19:31:29 +00:00
area = a;
r = m;
}
return r;
}
void
2015-11-08 22:11:48 +00:00
resize(Client *c, int x, int y, int w, int h, int interact)
{
if (applysizehints(c, &x, &y, &w, &h, interact))
resizeclient(c, x, y, w, h);
}
void
2015-11-08 22:11:48 +00:00
resizeclient(Client *c, int x, int y, int w, int h)
{
2007-10-03 14:25:25 +00:00
XWindowChanges wc;
2008-02-20 08:13:41 +00:00
c->oldx = c->x; c->x = wc.x = x;
c->oldy = c->y; c->y = wc.y = y;
c->oldw = c->w; c->w = wc.width = w;
c->oldh = c->h; c->h = wc.height = h;
wc.border_width = c->bw;
2024-05-30 19:39:43 +00:00
if (!selmon->pertag->drawwithgaps[selmon->pertag->curtag] && /* this is the noborderfloatingfix patch, slightly modified so that it will work if, and only if, gaps are disabled. */
(((nexttiled(c->mon->clients) == c && !nexttiled(c->next)) /* these two first lines are the only ones changed. if you are manually patching and have noborder installed already, just change these lines; or conversely, just remove this section if the noborder patch is not desired;) */
|| &monocle == c->mon->lt[c->mon->sellt]->arrange))
&& !c->isfullscreen && !c->isfloating
&& NULL != c->mon->lt[c->mon->sellt]->arrange) {
c->w = wc.width += c->bw * 2;
c->h = wc.height += c->bw * 2;
wc.border_width = 0;
}
XConfigureWindow(dpy, c->win, CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
configure(c);
XSync(dpy, False);
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
resizemouse(const Arg *arg)
{
int ocx, ocy, nw, nh;
Client *c;
Monitor *m;
2007-09-16 09:53:14 +00:00
XEvent ev;
Time lasttime = 0;
2007-09-16 09:53:14 +00:00
2015-11-08 22:11:48 +00:00
if (!(c = selmon->sel))
return;
2015-11-08 22:11:48 +00:00
if (c->isfullscreen) /* no support resizing fullscreen windows by mouse */
return;
restack(selmon);
2007-09-16 09:53:14 +00:00
ocx = c->x;
ocy = c->y;
2015-11-08 22:11:48 +00:00
if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
None, cursor[CurResize]->cursor, CurrentTime) != GrabSuccess)
2007-09-16 09:53:14 +00:00
return;
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
do {
2008-08-18 18:28:57 +00:00
XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
2007-09-16 09:53:14 +00:00
switch(ev.type) {
case ConfigureRequest:
case Expose:
case MapRequest:
handler[ev.type](&ev);
break;
case MotionNotify:
if ((ev.xmotion.time - lasttime) <= (1000 / 60))
continue;
lasttime = ev.xmotion.time;
2008-12-20 12:02:14 +00:00
nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1);
nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1);
2015-11-08 22:11:48 +00:00
if (c->mon->wx + nw >= selmon->wx && c->mon->wx + nw <= selmon->wx + selmon->ww
&& c->mon->wy + nh >= selmon->wy && c->mon->wy + nh <= selmon->wy + selmon->wh)
2009-07-14 15:26:04 +00:00
{
2015-11-08 22:11:48 +00:00
if (!c->isfloating && selmon->lt[selmon->sellt]->arrange
2009-07-14 15:26:04 +00:00
&& (abs(nw - c->w) > snap || abs(nh - c->h) > snap))
2008-05-19 12:41:58 +00:00
togglefloating(NULL);
2008-04-27 17:22:52 +00:00
}
2015-11-08 22:11:48 +00:00
if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
2015-11-08 21:48:43 +00:00
resize(c, c->x, c->y, nw, nh, 1);
2007-09-16 09:53:14 +00:00
break;
}
2015-11-08 22:11:48 +00:00
} while (ev.type != ButtonRelease);
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
XUngrabPointer(dpy, CurrentTime);
2015-11-08 22:11:48 +00:00
while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
sendmon(c, m);
selmon = m;
focus(NULL);
}
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
restack(Monitor *m)
{
2007-09-16 09:53:14 +00:00
Client *c;
XEvent ev;
XWindowChanges wc;
2007-09-15 20:25:27 +00:00
drawbar(m);
2015-11-08 22:11:48 +00:00
if (!m->sel)
2007-09-16 09:53:14 +00:00
return;
2015-11-08 22:11:48 +00:00
if (m->sel->isfloating || !m->lt[m->sellt]->arrange)
XRaiseWindow(dpy, m->sel->win);
2015-11-08 22:11:48 +00:00
if (m->lt[m->sellt]->arrange) {
2007-09-16 09:53:14 +00:00
wc.stack_mode = Below;
wc.sibling = m->barwin;
2015-11-08 22:11:48 +00:00
for (c = m->stack; c; c = c->snext)
if (!c->isfloating && ISVISIBLE(c)) {
2008-04-27 17:22:52 +00:00
XConfigureWindow(dpy, c->win, CWSibling|CWStackMode, &wc);
wc.sibling = c->win;
}
2007-09-16 09:53:14 +00:00
}
XSync(dpy, False);
2015-11-08 22:11:48 +00:00
while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
run(void)
{
2007-09-16 10:34:08 +00:00
XEvent ev;
/* main event loop */
2007-09-16 10:34:08 +00:00
XSync(dpy, False);
2015-11-08 22:11:48 +00:00
while (running && !XNextEvent(dpy, &ev))
if (handler[ev.type])
2009-07-14 15:01:14 +00:00
handler[ev.type](&ev); /* call handler */
2007-09-16 10:34:08 +00:00
}
2024-05-30 19:39:43 +00:00
void
runAutostart(void) {
system("cd ~/.dwm; ./autostart_blocking.sh");
system("cd ~/.dwm; ./autostart.sh &");
}
void
2015-11-08 22:11:48 +00:00
scan(void)
{
2008-07-16 17:17:42 +00:00
unsigned int i, num;
Window d1, d2, *wins = NULL;
2007-09-15 20:25:27 +00:00
XWindowAttributes wa;
2015-11-08 22:11:48 +00:00
if (XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
for (i = 0; i < num; i++) {
if (!XGetWindowAttributes(dpy, wins[i], &wa)
2008-05-13 13:33:02 +00:00
|| wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
continue;
2015-11-08 22:11:48 +00:00
if (wa.map_state == IsViewable || getstate(wins[i]) == IconicState)
manage(wins[i], &wa);
}
2015-11-08 22:11:48 +00:00
for (i = 0; i < num; i++) { /* now the transients */
if (!XGetWindowAttributes(dpy, wins[i], &wa))
continue;
2015-11-08 22:11:48 +00:00
if (XGetTransientForHint(dpy, wins[i], &d1)
2008-05-13 13:33:02 +00:00
&& (wa.map_state == IsViewable || getstate(wins[i]) == IconicState))
manage(wins[i], &wa);
2007-09-15 20:25:27 +00:00
}
2015-11-08 22:11:48 +00:00
if (wins)
XFree(wins);
2007-09-15 20:25:27 +00:00
}
}
void
2015-11-08 22:11:48 +00:00
sendmon(Client *c, Monitor *m)
{
if (c->mon == m)
return;
2015-11-08 21:48:43 +00:00
unfocus(c, 1);
detach(c);
detachstack(c);
c->mon = m;
c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */
attach(c);
attachstack(c);
focus(NULL);
arrange(NULL);
}
void
2015-11-08 22:11:48 +00:00
setclientstate(Client *c, long state)
{
2009-07-02 19:56:23 +00:00
long data[] = { state, None };
2007-09-16 09:53:14 +00:00
XChangeProperty(dpy, c->win, wmatom[WMState], wmatom[WMState], 32,
PropModeReplace, (unsigned char *)data, 2);
2007-09-16 09:53:14 +00:00
}
2015-11-08 21:48:43 +00:00
int
2015-11-08 22:11:48 +00:00
sendevent(Client *c, Atom proto)
{
int n;
Atom *protocols;
2015-11-08 21:48:43 +00:00
int exists = 0;
XEvent ev;
2015-11-08 22:11:48 +00:00
if (XGetWMProtocols(dpy, c->win, &protocols, &n)) {
while (!exists && n--)
exists = protocols[n] == proto;
XFree(protocols);
}
2015-11-08 22:11:48 +00:00
if (exists) {
ev.type = ClientMessage;
ev.xclient.window = c->win;
ev.xclient.message_type = wmatom[WMProtocols];
ev.xclient.format = 32;
ev.xclient.data.l[0] = proto;
ev.xclient.data.l[1] = CurrentTime;
XSendEvent(dpy, c->win, False, NoEventMask, &ev);
}
return exists;
}
void
2015-11-08 22:11:48 +00:00
setfocus(Client *c)
{
if (!c->neverfocus) {
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
XChangeProperty(dpy, root, netatom[NetActiveWindow],
XA_WINDOW, 32, PropModeReplace,
(unsigned char *) &(c->win), 1);
}
sendevent(c, wmatom[WMTakeFocus]);
}
2011-11-06 19:30:06 +00:00
void
2015-11-08 22:11:48 +00:00
setfullscreen(Client *c, int fullscreen)
{
if (fullscreen && !c->isfullscreen) {
2011-11-06 19:30:06 +00:00
XChangeProperty(dpy, c->win, netatom[NetWMState], XA_ATOM, 32,
PropModeReplace, (unsigned char*)&netatom[NetWMFullscreen], 1);
2015-11-08 21:48:43 +00:00
c->isfullscreen = 1;
2011-11-06 19:30:06 +00:00
c->oldstate = c->isfloating;
c->oldbw = c->bw;
c->bw = 0;
2015-11-08 21:48:43 +00:00
c->isfloating = 1;
2011-11-06 19:30:06 +00:00
resizeclient(c, c->mon->mx, c->mon->my, c->mon->mw, c->mon->mh);
XRaiseWindow(dpy, c->win);
2015-11-08 22:11:48 +00:00
} else if (!fullscreen && c->isfullscreen){
2011-11-06 19:30:06 +00:00
XChangeProperty(dpy, c->win, netatom[NetWMState], XA_ATOM, 32,
PropModeReplace, (unsigned char*)0, 0);
2015-11-08 21:48:43 +00:00
c->isfullscreen = 0;
2011-11-06 19:30:06 +00:00
c->isfloating = c->oldstate;
c->bw = c->oldbw;
c->x = c->oldx;
c->y = c->oldy;
c->w = c->oldw;
c->h = c->oldh;
resizeclient(c, c->x, c->y, c->w, c->h);
arrange(c->mon);
}
}
2024-05-30 19:39:43 +00:00
void
setgaps(const Arg *arg)
{
switch(arg->i)
{
case GAP_TOGGLE:
selmon->pertag->drawwithgaps[selmon->pertag->curtag] = !selmon->pertag->drawwithgaps[selmon->pertag->curtag];
break;
case GAP_RESET:
if (selmon->pertag->curtag > 0)
selmon->pertag->gappx[selmon->pertag->curtag] = gappx[selmon->pertag->curtag - 1 % LENGTH(gappx)];
else
selmon->pertag->gappx[0] = gappx[0];
break;
default:
if (selmon->pertag->gappx[selmon->pertag->curtag] + arg->i < 0)
selmon->pertag->gappx[selmon->pertag->curtag] = 0;
else
selmon->pertag->gappx[selmon->pertag->curtag] += arg->i;
}
arrange(selmon);
}
2008-06-19 10:38:53 +00:00
void
2015-11-08 22:11:48 +00:00
setlayout(const Arg *arg)
{
if (!arg || !arg->v || arg->v != selmon->lt[selmon->sellt])
2024-05-30 19:39:43 +00:00
selmon->sellt = selmon->pertag->sellts[selmon->pertag->curtag] ^= 1;
2015-11-08 22:11:48 +00:00
if (arg && arg->v)
2024-05-30 19:39:43 +00:00
selmon->lt[selmon->sellt] = selmon->pertag->ltidxs[selmon->pertag->curtag][selmon->sellt] = (Layout *)arg->v;
strncpy(selmon->ltsymbol, selmon->lt[selmon->sellt]->symbol, sizeof selmon->ltsymbol);
2015-11-08 22:11:48 +00:00
if (selmon->sel)
arrange(selmon);
2008-06-19 10:38:53 +00:00
else
drawbar(selmon);
2008-06-19 10:38:53 +00:00
}
/* arg > 1.0 will set mfact absolutely */
2008-05-19 19:07:12 +00:00
void
2015-11-08 22:11:48 +00:00
setmfact(const Arg *arg)
{
2008-06-11 08:12:06 +00:00
float f;
2008-05-19 19:07:12 +00:00
2015-11-08 22:11:48 +00:00
if (!arg || !selmon->lt[selmon->sellt]->arrange)
2008-05-19 19:07:12 +00:00
return;
f = arg->f < 1.0 ? arg->f + selmon->mfact : arg->f - 1.0;
if (f < 0.05 || f > 0.95)
return;
2024-05-30 19:39:43 +00:00
selmon->mfact = selmon->pertag->mfacts[selmon->pertag->curtag] = f;
arrange(selmon);
2008-05-19 19:07:12 +00:00
}
void
2015-11-08 22:11:48 +00:00
setup(void)
{
int i;
2007-09-15 20:25:27 +00:00
XSetWindowAttributes wa;
Atom utf8string;
struct sigaction sa;
/* do not transform children into zombies when they terminate */
sigemptyset(&sa.sa_mask);
sa.sa_flags = SA_NOCLDSTOP | SA_NOCLDWAIT | SA_RESTART;
sa.sa_handler = SIG_IGN;
sigaction(SIGCHLD, &sa, NULL);
/* clean up any zombies (inherited from .xinitrc etc) immediately */
while (waitpid(-1, NULL, WNOHANG) > 0);
2009-08-13 09:45:59 +00:00
/* init screen */
screen = DefaultScreen(dpy);
sw = DisplayWidth(dpy, screen);
sh = DisplayHeight(dpy, screen);
root = RootWindow(dpy, screen);
2013-06-16 13:20:29 +00:00
drw = drw_create(dpy, screen, root, sw, sh);
if (!drw_fontset_create(drw, fonts, LENGTH(fonts)))
2016-08-12 12:35:25 +00:00
die("no fonts could be loaded.");
lrpad = drw->fonts->h;
bh = drw->fonts->h + 2;
updategeom();
2007-09-15 20:25:27 +00:00
/* init atoms */
utf8string = XInternAtom(dpy, "UTF8_STRING", False);
2007-09-15 20:25:27 +00:00
wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
wmatom[WMState] = XInternAtom(dpy, "WM_STATE", False);
wmatom[WMTakeFocus] = XInternAtom(dpy, "WM_TAKE_FOCUS", False);
2011-05-12 14:16:33 +00:00
netatom[NetActiveWindow] = XInternAtom(dpy, "_NET_ACTIVE_WINDOW", False);
2007-09-15 20:25:27 +00:00
netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
netatom[NetWMState] = XInternAtom(dpy, "_NET_WM_STATE", False);
netatom[NetWMCheck] = XInternAtom(dpy, "_NET_SUPPORTING_WM_CHECK", False);
netatom[NetWMFullscreen] = XInternAtom(dpy, "_NET_WM_STATE_FULLSCREEN", False);
2011-11-02 12:01:28 +00:00
netatom[NetWMWindowType] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE", False);
netatom[NetWMWindowTypeDialog] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE_DIALOG", False);
netatom[NetClientList] = XInternAtom(dpy, "_NET_CLIENT_LIST", False);
2007-09-15 20:25:27 +00:00
/* init cursors */
2013-06-16 13:20:29 +00:00
cursor[CurNormal] = drw_cur_create(drw, XC_left_ptr);
cursor[CurResize] = drw_cur_create(drw, XC_sizing);
cursor[CurMove] = drw_cur_create(drw, XC_fleur);
2008-02-18 17:08:22 +00:00
/* init appearance */
scheme = ecalloc(LENGTH(colors), sizeof(Clr *));
for (i = 0; i < LENGTH(colors); i++)
scheme[i] = drw_scm_create(drw, colors[i], 3);
/* init bars */
2009-06-22 13:58:08 +00:00
updatebars();
updatestatus();
/* supporting window for NetWMCheck */
wmcheckwin = XCreateSimpleWindow(dpy, root, 0, 0, 1, 1, 0, 0, 0);
XChangeProperty(dpy, wmcheckwin, netatom[NetWMCheck], XA_WINDOW, 32,
PropModeReplace, (unsigned char *) &wmcheckwin, 1);
XChangeProperty(dpy, wmcheckwin, netatom[NetWMName], utf8string, 8,
PropModeReplace, (unsigned char *) "dwm", 3);
XChangeProperty(dpy, root, netatom[NetWMCheck], XA_WINDOW, 32,
PropModeReplace, (unsigned char *) &wmcheckwin, 1);
/* EWMH support per view */
XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
PropModeReplace, (unsigned char *) netatom, NetLast);
XDeleteProperty(dpy, root, netatom[NetClientList]);
/* select events */
2013-06-16 13:20:29 +00:00
wa.cursor = cursor[CurNormal]->cursor;
wa.event_mask = SubstructureRedirectMask|SubstructureNotifyMask
|ButtonPressMask|PointerMotionMask|EnterWindowMask
|LeaveWindowMask|StructureNotifyMask|PropertyChangeMask;
XChangeWindowAttributes(dpy, root, CWEventMask|CWCursor, &wa);
XSelectInput(dpy, root, wa.event_mask);
grabkeys();
focus(NULL);
2007-09-15 20:25:27 +00:00
}
void
seturgent(Client *c, int urg)
{
XWMHints *wmh;
c->isurgent = urg;
if (!(wmh = XGetWMHints(dpy, c->win)))
return;
wmh->flags = urg ? (wmh->flags | XUrgencyHint) : (wmh->flags & ~XUrgencyHint);
XSetWMHints(dpy, c->win, wmh);
XFree(wmh);
}
void
2015-11-08 22:11:48 +00:00
showhide(Client *c)
{
if (!c)
2008-09-06 08:34:49 +00:00
return;
2015-11-08 22:11:48 +00:00
if (ISVISIBLE(c)) {
/* show clients top down */
XMoveWindow(dpy, c->win, c->x, c->y);
2015-11-08 22:11:48 +00:00
if ((!c->mon->lt[c->mon->sellt]->arrange || c->isfloating) && !c->isfullscreen)
2015-11-08 21:48:43 +00:00
resize(c, c->x, c->y, c->w, c->h, 0);
showhide(c->snext);
2015-11-08 22:11:48 +00:00
} else {
/* hide clients bottom up */
showhide(c->snext);
2011-10-30 11:14:34 +00:00
XMoveWindow(dpy, c->win, WIDTH(c) * -2, c->y);
2008-09-06 08:34:49 +00:00
}
}
void
2015-11-08 22:11:48 +00:00
spawn(const Arg *arg)
{
struct sigaction sa;
2024-05-30 19:39:43 +00:00
// if (arg->v == dmenucmd)
// dmenumon[0] = '0' + selmon->num;
2015-11-08 22:11:48 +00:00
if (fork() == 0) {
if (dpy)
close(ConnectionNumber(dpy));
2024-08-08 21:34:34 +00:00
if (arg->v == statuscmd) {
for (int i = 0; i < LENGTH(statuscmds); i++) {
if (statuscmdn == statuscmds[i].id) {
statuscmd[2] = statuscmds[i].cmd;
setenv("BUTTON", lastbutton, 1);
break;
}
}
if (!statuscmd[2])
exit(EXIT_SUCCESS);
}
setsid();
sigemptyset(&sa.sa_mask);
sa.sa_flags = 0;
sa.sa_handler = SIG_DFL;
sigaction(SIGCHLD, &sa, NULL);
execvp(((char **)arg->v)[0], (char **)arg->v);
die("dwm: execvp '%s' failed:", ((char **)arg->v)[0]);
2007-09-15 20:25:27 +00:00
}
}
void
2015-11-08 22:11:48 +00:00
tag(const Arg *arg)
{
if (selmon->sel && arg->ui & TAGMASK) {
selmon->sel->tags = arg->ui & TAGMASK;
focus(NULL);
arrange(selmon);
}
2007-09-15 20:25:27 +00:00
}
void
2015-11-08 22:11:48 +00:00
tagmon(const Arg *arg)
{
if (!selmon->sel || !mons->next)
2009-07-02 19:38:56 +00:00
return;
sendmon(selmon->sel, dirtomon(arg->i));
}
2008-05-19 19:07:12 +00:00
void
2015-11-08 22:11:48 +00:00
tile(Monitor *m)
{
2011-10-28 22:45:12 +00:00
unsigned int i, n, h, mw, my, ty;
2008-05-19 19:07:12 +00:00
Client *c;
2015-11-08 22:11:48 +00:00
for (n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
if (n == 0)
2008-05-19 19:07:12 +00:00
return;
2024-05-30 19:39:43 +00:00
if (m->pertag->drawwithgaps[m->pertag->curtag]) { /* draw with fullgaps logic */
if (n > m->nmaster)
mw = m->nmaster ? m->ww * m->mfact : 0;
else
mw = m->ww - m->pertag->gappx[m->pertag->curtag];
for (i = 0, my = ty = m->pertag->gappx[m->pertag->curtag], c = nexttiled(m->clients); c; c = nexttiled(c->next), i++)
if (i < m->nmaster) {
h = (m->wh - my) / (MIN(n, m->nmaster) - i) - m->pertag->gappx[m->pertag->curtag];
resize(c, m->wx + m->pertag->gappx[m->pertag->curtag], m->wy + my, mw - (2*c->bw) - m->pertag->gappx[m->pertag->curtag], h - (2*c->bw), 0);
if (my + HEIGHT(c) + m->pertag->gappx[m->pertag->curtag] < m->wh)
my += HEIGHT(c) + m->pertag->gappx[m->pertag->curtag];
} else {
h = (m->wh - ty) / (n - i) - m->pertag->gappx[m->pertag->curtag];
resize(c, m->wx + mw + m->pertag->gappx[m->pertag->curtag], m->wy + ty, m->ww - mw - (2*c->bw) - 2*m->pertag->gappx[m->pertag->curtag], h - (2*c->bw), 0);
if (ty + HEIGHT(c) + m->pertag->gappx[m->pertag->curtag] < m->wh)
ty += HEIGHT(c) + m->pertag->gappx[m->pertag->curtag];
}
} else { /* draw with singularborders logic */
if (n > m->nmaster)
mw = m->nmaster ? m->ww * m->mfact : 0;
else
mw = m->ww;
for (i = my = ty = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++)
if (i < m->nmaster) {
h = (m->wh - my) / (MIN(n, m->nmaster) - i);
if (n == 1)
resize(c, m->wx - c->bw, m->wy, m->ww, m->wh, False);
else
resize(c, m->wx - c->bw, m->wy + my, mw - c->bw, h - c->bw, False);
my += HEIGHT(c) - c->bw;
} else {
h = (m->wh - ty) / (n - i);
resize(c, m->wx + mw - c->bw, m->wy + ty, m->ww - mw, h - c->bw, False);
ty += HEIGHT(c) - c->bw;
}
}
2008-05-19 19:07:12 +00:00
}
void
2015-11-08 22:11:48 +00:00
togglebar(const Arg *arg)
{
2024-05-30 19:39:43 +00:00
selmon->showbar = selmon->pertag->showbars[selmon->pertag->curtag] = !selmon->showbar;
updatebarpos(selmon);
XMoveResizeWindow(dpy, selmon->barwin, selmon->wx, selmon->by, selmon->ww, bh);
arrange(selmon);
}
void
2015-11-08 22:11:48 +00:00
togglefloating(const Arg *arg)
{
if (!selmon->sel)
2007-09-16 09:53:14 +00:00
return;
2015-11-08 22:11:48 +00:00
if (selmon->sel->isfullscreen) /* no support for fullscreen windows */
return;
selmon->sel->isfloating = !selmon->sel->isfloating || selmon->sel->isfixed;
2015-11-08 22:11:48 +00:00
if (selmon->sel->isfloating)
resize(selmon->sel, selmon->sel->x, selmon->sel->y,
selmon->sel->w, selmon->sel->h, 0);
arrange(selmon);
2007-09-16 09:53:14 +00:00
}
2024-05-30 19:39:43 +00:00
void
togglefullscr(const Arg *arg)
{
if(selmon->sel)
setfullscreen(selmon->sel, !selmon->sel->isfullscreen);
}
void
2015-11-08 22:11:48 +00:00
toggletag(const Arg *arg)
{
2009-08-16 07:18:54 +00:00
unsigned int newtags;
2008-06-19 08:11:11 +00:00
2015-11-08 22:11:48 +00:00
if (!selmon->sel)
return;
2009-08-16 07:18:54 +00:00
newtags = selmon->sel->tags ^ (arg->ui & TAGMASK);
2015-11-08 22:11:48 +00:00
if (newtags) {
2009-08-16 07:18:54 +00:00
selmon->sel->tags = newtags;
focus(NULL);
arrange(selmon);
2008-06-19 08:11:11 +00:00
}
2007-09-16 09:53:14 +00:00
}
void
2015-11-08 22:11:48 +00:00
toggleview(const Arg *arg)
{
2009-08-16 07:18:54 +00:00
unsigned int newtagset = selmon->tagset[selmon->seltags] ^ (arg->ui & TAGMASK);
2024-05-30 19:39:43 +00:00
int i;
2008-06-19 08:11:11 +00:00
2015-11-08 22:11:48 +00:00
if (newtagset) {
2009-08-16 07:18:54 +00:00
selmon->tagset[selmon->seltags] = newtagset;
2024-05-30 19:39:43 +00:00
if (newtagset == ~0) {
selmon->pertag->prevtag = selmon->pertag->curtag;
selmon->pertag->curtag = 0;
}
/* test if the user did not select the same tag */
if (!(newtagset & 1 << (selmon->pertag->curtag - 1))) {
selmon->pertag->prevtag = selmon->pertag->curtag;
for (i = 0; !(newtagset & 1 << i); i++) ;
selmon->pertag->curtag = i + 1;
}
/* apply settings for this view */
selmon->nmaster = selmon->pertag->nmasters[selmon->pertag->curtag];
selmon->mfact = selmon->pertag->mfacts[selmon->pertag->curtag];
selmon->sellt = selmon->pertag->sellts[selmon->pertag->curtag];
selmon->lt[selmon->sellt] = selmon->pertag->ltidxs[selmon->pertag->curtag][selmon->sellt];
selmon->lt[selmon->sellt^1] = selmon->pertag->ltidxs[selmon->pertag->curtag][selmon->sellt^1];
if (selmon->showbar != selmon->pertag->showbars[selmon->pertag->curtag])
togglebar(NULL);
focus(NULL);
arrange(selmon);
2008-06-19 08:11:11 +00:00
}
2007-09-16 09:53:14 +00:00
}
void
2015-11-08 22:11:48 +00:00
unfocus(Client *c, int setfocus)
{
if (!c)
return;
2015-11-08 21:48:43 +00:00
grabbuttons(c, 0);
XSetWindowBorder(dpy, c->win, scheme[SchemeNorm][ColBorder].pixel);
2015-11-08 22:11:48 +00:00
if (setfocus) {
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
}
}
void
2015-11-08 22:11:48 +00:00
unmanage(Client *c, int destroyed)
{
Monitor *m = c->mon;
2007-09-16 09:53:14 +00:00
XWindowChanges wc;
detach(c);
detachstack(c);
2015-11-08 22:11:48 +00:00
if (!destroyed) {
2009-09-08 12:13:03 +00:00
wc.border_width = c->oldbw;
XGrabServer(dpy); /* avoid race conditions */
2009-09-08 12:13:03 +00:00
XSetErrorHandler(xerrordummy);
unmanage: stop listening for events for unmanaged windows This is in particular to avoid flickering in dwm (and high CPU usage) when hovering the mouse over a tabbed window that was previously managed by dwm. Consider the following two scenarios: 1) We start tabbed (window 0xc000003), tabbed is managed by the window manager. We start st being embedded into tabbed. $ st -w 0xc000003 What happens here is that: - tabbed gets a MapRequest for the st window - tabbed reparents the st window - tabbed will receive X events for the window The window manager will have no awareness of the st window and the X server will not send X events to the window manager relating to the st window. There is no flickering or any other issues relating to focus. 2) We start tabbed (window 0xc000003), tabbed is managed by the window manager. We start st as normal (window 0xd400005). What happens here is that: - the window manager gets a MapRequest for the st window - dwm manages the st window as a normal client - dwm will receive X events for the window Now we use xdotool to trigger a reparenting of the st window into tabbed. $ xdotool windowreparent 0xd400005 0xc000003 What happens here is that: - tabbed gets a MapRequest for the st window - tabbed reparents the st window - the window manager gets an UnmapNotify - the window manager no longer manages the st window - both the window manager and tabbed will receive X events for the st window In dwm move the mouse cursor over the tabbed window. What happens now is that: - dwm will receive a FocusIn event for the tabbed window - dwm will set input focus for the tabbed window - tabbed will receive a FocusIn event for the main window - tabbed will give focus to the window on the currently selected tab - which again triggers a FocusIn event which dwm receives - dwm determines that the window that the FocusIn event is for (0xd400005) is not the currently selected client (tabbed) - dwm sets input focus for the tabbed window - this causes an infinite loop as long as the mouse cursor hovers the tabbed window, resulting in flickering and high CPU usage The fix here is to tell the X server that we are no longer interested in receiving events for this window when the window manager stops managing the window.
2022-08-01 09:42:44 +00:00
XSelectInput(dpy, c->win, NoEventMask);
2009-09-08 12:13:03 +00:00
XConfigureWindow(dpy, c->win, CWBorderWidth, &wc); /* restore border */
XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
setclientstate(c, WithdrawnState);
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
}
2007-09-16 09:53:14 +00:00
free(c);
2009-06-30 18:39:59 +00:00
focus(NULL);
updateclientlist();
arrange(m);
2007-09-16 09:53:14 +00:00
}
void
2015-11-08 22:11:48 +00:00
unmapnotify(XEvent *e)
{
2007-09-16 09:53:14 +00:00
Client *c;
XUnmapEvent *ev = &e->xunmap;
2015-11-08 22:11:48 +00:00
if ((c = wintoclient(ev->window))) {
if (ev->send_event)
setclientstate(c, WithdrawnState);
else
2015-11-08 21:48:43 +00:00
unmanage(c, 0);
}
2007-09-16 09:53:14 +00:00
}
2009-06-22 13:58:08 +00:00
void
2015-11-08 22:11:48 +00:00
updatebars(void)
{
2009-06-22 13:58:08 +00:00
Monitor *m;
2011-05-12 14:16:33 +00:00
XSetWindowAttributes wa = {
.override_redirect = True,
.background_pixmap = ParentRelative,
.event_mask = ButtonPressMask|ExposureMask
};
XClassHint ch = {"dwm", "dwm"};
2015-11-08 22:11:48 +00:00
for (m = mons; m; m = m->next) {
if (m->barwin)
continue;
2009-06-22 13:58:08 +00:00
m->barwin = XCreateWindow(dpy, root, m->wx, m->by, m->ww, bh, 0, DefaultDepth(dpy, screen),
CopyFromParent, DefaultVisual(dpy, screen),
CWOverrideRedirect|CWBackPixmap|CWEventMask, &wa);
2013-06-16 13:20:29 +00:00
XDefineCursor(dpy, m->barwin, cursor[CurNormal]->cursor);
2009-06-22 13:58:08 +00:00
XMapRaised(dpy, m->barwin);
XSetClassHint(dpy, m->barwin, &ch);
2009-06-22 13:58:08 +00:00
}
}
void
2015-11-08 22:11:48 +00:00
updatebarpos(Monitor *m)
{
m->wy = m->my;
m->wh = m->mh;
2015-11-08 22:11:48 +00:00
if (m->showbar) {
m->wh -= bh;
m->by = m->topbar ? m->wy : m->wy + m->wh;
m->wy = m->topbar ? m->wy + bh : m->wy;
2015-11-08 22:11:48 +00:00
} else
m->by = -bh;
}
void
2015-11-08 22:11:48 +00:00
updateclientlist()
{
Client *c;
Monitor *m;
XDeleteProperty(dpy, root, netatom[NetClientList]);
2015-11-08 22:11:48 +00:00
for (m = mons; m; m = m->next)
for (c = m->clients; c; c = c->next)
XChangeProperty(dpy, root, netatom[NetClientList],
XA_WINDOW, 32, PropModeAppend,
(unsigned char *) &(c->win), 1);
}
2015-11-08 21:48:43 +00:00
int
2015-11-08 22:11:48 +00:00
updategeom(void)
{
2015-11-08 21:48:43 +00:00
int dirty = 0;
2009-06-30 18:39:59 +00:00
#ifdef XINERAMA
2015-11-08 22:11:48 +00:00
if (XineramaIsActive(dpy)) {
int i, j, n, nn;
Client *c;
Monitor *m;
XineramaScreenInfo *info = XineramaQueryScreens(dpy, &nn);
XineramaScreenInfo *unique = NULL;
2015-11-08 22:11:48 +00:00
for (n = 0, m = mons; m; m = m->next, n++);
/* only consider unique geometries as separate screens */
unique = ecalloc(nn, sizeof(XineramaScreenInfo));
2015-11-08 22:11:48 +00:00
for (i = 0, j = 0; i < nn; i++)
if (isuniquegeom(unique, j, &info[i]))
memcpy(&unique[j++], &info[i], sizeof(XineramaScreenInfo));
XFree(info);
nn = j;
/* new monitors if nn > n */
for (i = n; i < nn; i++) {
for (m = mons; m && m->next; m = m->next);
if (m)
m->next = createmon();
else
mons = createmon();
}
for (i = 0, m = mons; i < nn && m; m = m->next, i++)
if (i >= n
|| unique[i].x_org != m->mx || unique[i].y_org != m->my
|| unique[i].width != m->mw || unique[i].height != m->mh)
{
dirty = 1;
m->num = i;
m->mx = m->wx = unique[i].x_org;
m->my = m->wy = unique[i].y_org;
m->mw = m->ww = unique[i].width;
m->mh = m->wh = unique[i].height;
updatebarpos(m);
}
/* removed monitors if n > nn */
for (i = nn; i < n; i++) {
for (m = mons; m && m->next; m = m->next);
while ((c = m->clients)) {
dirty = 1;
m->clients = c->next;
detachstack(c);
c->mon = mons;
attach(c);
attachstack(c);
}
if (m == selmon)
selmon = mons;
cleanupmon(m);
}
free(unique);
2015-11-08 22:11:48 +00:00
} else
2009-06-30 18:39:59 +00:00
#endif /* XINERAMA */
{ /* default monitor setup */
2015-11-08 22:11:48 +00:00
if (!mons)
mons = createmon();
2015-11-08 22:11:48 +00:00
if (mons->mw != sw || mons->mh != sh) {
2015-11-08 21:48:43 +00:00
dirty = 1;
mons->mw = mons->ww = sw;
mons->mh = mons->wh = sh;
updatebarpos(mons);
}
2009-06-22 13:58:08 +00:00
}
2015-11-08 22:11:48 +00:00
if (dirty) {
selmon = mons;
selmon = wintomon(root);
}
return dirty;
}
void
2015-11-08 22:11:48 +00:00
updatenumlockmask(void)
{
unsigned int i, j;
XModifierKeymap *modmap;
numlockmask = 0;
modmap = XGetModifierMapping(dpy);
2015-11-08 22:11:48 +00:00
for (i = 0; i < 8; i++)
for (j = 0; j < modmap->max_keypermod; j++)
if (modmap->modifiermap[i * modmap->max_keypermod + j]
== XKeysymToKeycode(dpy, XK_Num_Lock))
numlockmask = (1 << i);
XFreeModifiermap(modmap);
}
void
2015-11-08 22:11:48 +00:00
updatesizehints(Client *c)
{
2007-09-16 09:53:14 +00:00
long msize;
XSizeHints size;
2015-11-08 22:11:48 +00:00
if (!XGetWMNormalHints(dpy, c->win, &size, &msize))
2008-09-07 08:53:59 +00:00
/* size is uninitialized, ensure that size.flags aren't used */
size.flags = PSize;
2015-11-08 22:11:48 +00:00
if (size.flags & PBaseSize) {
2007-09-16 09:53:14 +00:00
c->basew = size.base_width;
c->baseh = size.base_height;
2015-11-08 22:11:48 +00:00
} else if (size.flags & PMinSize) {
2007-09-16 09:53:14 +00:00
c->basew = size.min_width;
c->baseh = size.min_height;
2015-11-08 22:11:48 +00:00
} else
2007-09-16 09:53:14 +00:00
c->basew = c->baseh = 0;
2015-11-08 22:11:48 +00:00
if (size.flags & PResizeInc) {
2007-09-16 09:53:14 +00:00
c->incw = size.width_inc;
c->inch = size.height_inc;
2015-11-08 22:11:48 +00:00
} else
2007-09-16 09:53:14 +00:00
c->incw = c->inch = 0;
2015-11-08 22:11:48 +00:00
if (size.flags & PMaxSize) {
2007-09-16 09:53:14 +00:00
c->maxw = size.max_width;
c->maxh = size.max_height;
2015-11-08 22:11:48 +00:00
} else
2007-09-16 09:53:14 +00:00
c->maxw = c->maxh = 0;
2015-11-08 22:11:48 +00:00
if (size.flags & PMinSize) {
2007-09-16 09:53:14 +00:00
c->minw = size.min_width;
c->minh = size.min_height;
2015-11-08 22:11:48 +00:00
} else if (size.flags & PBaseSize) {
2007-09-16 09:53:14 +00:00
c->minw = size.base_width;
c->minh = size.base_height;
2015-11-08 22:11:48 +00:00
} else
2007-09-16 09:53:14 +00:00
c->minw = c->minh = 0;
2015-11-08 22:11:48 +00:00
if (size.flags & PAspect) {
c->mina = (float)size.min_aspect.y / size.min_aspect.x;
c->maxa = (float)size.max_aspect.x / size.max_aspect.y;
2015-11-08 22:11:48 +00:00
} else
2008-06-11 08:12:06 +00:00
c->maxa = c->mina = 0.0;
2017-10-10 21:10:45 +00:00
c->isfixed = (c->maxw && c->maxh && c->maxw == c->minw && c->maxh == c->minh);
manage: propertynotify: Reduce cost of unused size hints This patch defers all size hint calculations until they are actually needed, drastically reducing the number of calls to updatesizehints(), which can be expensive when called repeatedly (as it currently is during resizes). In my unscientific testing this reduces calls to updatesizehints() by over 90% during a typical work session. There are no functional changes for users other than an increase in responsiveness after resizes and a reduction in CPU time. In slower environments or X servers, this patch also offers an improvement in responsiveness that is often tangible after resizing a client that changes hints during resizes. There are two main motivations to defer this work to the time of hint application: 1. Some clients, especially terminals using incremental size hints, resend XA_WM_NORMAL_HINTS events on resize to avoid fighting with the WM or mouse resizing. For example, some terminals like urxvt clear PBaseSize and PResizeInc during XResizeWindow and restore them afterwards. For this reason, after the resize is concluded, we typically receive a backlogged XA_WM_NORMAL_HINTS message for each update period with movement, which is useless. In some cases one may get hundreds or thousands of XA_WM_NORMAL_HINTS messages on large resizes, and currently all of these result in a separate updatesizehints() call, of which all but the final one are immediately outdated. (We can't just blindly discard these messages during resizes like we do for EnterNotify, because some of them might actually be for other windows, and may not be XA_WM_NORMAL_HINTS events.) 2. For users which use resizehints=0 most of these updates are unused anyway -- in the normal case where the client is not floating these values won't be used, so there's no need to calculate them up front. A synthetic test using the mouse to resize a floating terminal window from roughly 256x256 to 1024x1024 and back again shows that the number of calls to updatesizehints() goes from over 500 before this patch (one for each update interval with movement) to 2 after this patch (one for each hint application), with no change in user visible behaviour. This also reduces the delay before dwm is ready to process new events again after a large resize on such a client, as it avoids the thundering herd of updatesizehints() calls when hundreds of backlogged XA_WM_NORMAL_HINTS messages appear at once after a resize is finished.
2022-03-17 15:56:13 +00:00
c->hintsvalid = 1;
2007-09-16 09:53:14 +00:00
}
void
updatestatus(void)
{
2024-08-08 21:34:34 +00:00
if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext))) {
strcpy(stext, "dwm-"VERSION);
2024-08-08 21:34:34 +00:00
statusw = TEXTW(stext) - lrpad + 2;
} else {
char *text, *s, ch;
statusw = 0;
for (text = s = stext; *s; s++) {
if ((unsigned char)(*s) < ' ') {
ch = *s;
*s = '\0';
statusw += TEXTW(text) - lrpad;
*s = ch;
text = s + 1;
}
}
statusw += TEXTW(text) - lrpad + 2;
}
drawbar(selmon);
}
void
2015-11-08 22:11:48 +00:00
updatetitle(Client *c)
{
if (!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name))
2008-08-25 09:43:45 +00:00
gettextprop(c->win, XA_WM_NAME, c->name, sizeof c->name);
2015-11-08 22:11:48 +00:00
if (c->name[0] == '\0') /* hack to mark broken clients */
2009-07-12 21:49:06 +00:00
strcpy(c->name, broken);
2007-09-16 09:53:14 +00:00
}
2011-11-02 12:01:28 +00:00
void
2015-11-08 22:11:48 +00:00
updatewindowtype(Client *c)
{
2011-11-06 19:30:06 +00:00
Atom state = getatomprop(c, netatom[NetWMState]);
Atom wtype = getatomprop(c, netatom[NetWMWindowType]);
2011-11-02 12:01:28 +00:00
2015-11-08 22:11:48 +00:00
if (state == netatom[NetWMFullscreen])
2015-11-08 21:48:43 +00:00
setfullscreen(c, 1);
2015-11-08 22:11:48 +00:00
if (wtype == netatom[NetWMWindowTypeDialog])
2015-11-08 21:48:43 +00:00
c->isfloating = 1;
2011-11-02 12:01:28 +00:00
}
void
2015-11-08 22:11:48 +00:00
updatewmhints(Client *c)
{
XWMHints *wmh;
2015-11-08 22:11:48 +00:00
if ((wmh = XGetWMHints(dpy, c->win))) {
if (c == selmon->sel && wmh->flags & XUrgencyHint) {
wmh->flags &= ~XUrgencyHint;
XSetWMHints(dpy, c->win, wmh);
2015-11-08 22:11:48 +00:00
} else
2015-11-08 21:48:43 +00:00
c->isurgent = (wmh->flags & XUrgencyHint) ? 1 : 0;
2015-11-08 22:11:48 +00:00
if (wmh->flags & InputHint)
c->neverfocus = !wmh->input;
else
2015-11-08 21:48:43 +00:00
c->neverfocus = 0;
XFree(wmh);
}
}
2008-02-26 22:51:23 +00:00
void
2015-11-08 22:11:48 +00:00
view(const Arg *arg)
{
2024-05-30 19:39:43 +00:00
int i;
unsigned int tmptag;
2015-11-08 22:11:48 +00:00
if ((arg->ui & TAGMASK) == selmon->tagset[selmon->seltags])
2008-07-02 10:06:46 +00:00
return;
selmon->seltags ^= 1; /* toggle sel tagset */
2024-05-30 19:39:43 +00:00
if (arg->ui & TAGMASK) {
selmon->tagset[selmon->seltags] = arg->ui & TAGMASK;
2024-05-30 19:39:43 +00:00
selmon->pertag->prevtag = selmon->pertag->curtag;
if (arg->ui == ~0)
selmon->pertag->curtag = 0;
else {
for (i = 0; !(arg->ui & 1 << i); i++) ;
selmon->pertag->curtag = i + 1;
}
} else {
tmptag = selmon->pertag->prevtag;
selmon->pertag->prevtag = selmon->pertag->curtag;
selmon->pertag->curtag = tmptag;
}
selmon->nmaster = selmon->pertag->nmasters[selmon->pertag->curtag];
selmon->mfact = selmon->pertag->mfacts[selmon->pertag->curtag];
selmon->sellt = selmon->pertag->sellts[selmon->pertag->curtag];
selmon->lt[selmon->sellt] = selmon->pertag->ltidxs[selmon->pertag->curtag][selmon->sellt];
selmon->lt[selmon->sellt^1] = selmon->pertag->ltidxs[selmon->pertag->curtag][selmon->sellt^1];
if (selmon->showbar != selmon->pertag->showbars[selmon->pertag->curtag])
togglebar(NULL);
focus(NULL);
arrange(selmon);
2008-02-26 22:51:23 +00:00
}
2009-06-30 18:39:59 +00:00
Client *
2015-11-08 22:11:48 +00:00
wintoclient(Window w)
{
2009-06-30 18:39:59 +00:00
Client *c;
Monitor *m;
2015-11-08 22:11:48 +00:00
for (m = mons; m; m = m->next)
for (c = m->clients; c; c = c->next)
if (c->win == w)
2009-06-30 18:39:59 +00:00
return c;
return NULL;
}
Monitor *
2015-11-08 22:11:48 +00:00
wintomon(Window w)
{
2009-06-30 18:39:59 +00:00
int x, y;
Client *c;
Monitor *m;
2015-11-08 22:11:48 +00:00
if (w == root && getrootptr(&x, &y))
2011-11-06 19:31:29 +00:00
return recttomon(x, y, 1, 1);
2015-11-08 22:11:48 +00:00
for (m = mons; m; m = m->next)
if (w == m->barwin)
2009-06-30 18:39:59 +00:00
return m;
2015-11-08 22:11:48 +00:00
if ((c = wintoclient(w)))
2009-06-30 18:39:59 +00:00
return c->mon;
2009-07-02 13:42:06 +00:00
return selmon;
2009-06-30 18:39:59 +00:00
}
2007-09-16 09:53:14 +00:00
/* There's no way to check accesses to destroyed windows, thus those cases are
* ignored (especially on UnmapNotify's). Other types of errors call Xlibs
* default error handler, which may call exit. */
int
2015-11-08 22:11:48 +00:00
xerror(Display *dpy, XErrorEvent *ee)
{
if (ee->error_code == BadWindow
2007-09-16 09:53:14 +00:00
|| (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
|| (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
|| (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
|| (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
|| (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
2008-05-06 14:13:36 +00:00
|| (ee->request_code == X_GrabButton && ee->error_code == BadAccess)
2007-09-16 09:53:14 +00:00
|| (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
|| (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
return 0;
fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
ee->request_code, ee->error_code);
2007-09-16 09:53:14 +00:00
return xerrorxlib(dpy, ee); /* may call exit */
}
int
2015-11-08 22:11:48 +00:00
xerrordummy(Display *dpy, XErrorEvent *ee)
{
2007-09-16 09:53:14 +00:00
return 0;
}
/* Startup Error handler to check if another window manager
* is already running. */
int
2015-11-08 22:11:48 +00:00
xerrorstart(Display *dpy, XErrorEvent *ee)
{
2016-08-12 12:35:25 +00:00
die("dwm: another window manager is already running");
2007-09-16 09:53:14 +00:00
return -1;
}
2008-05-19 19:07:12 +00:00
void
2015-11-08 22:11:48 +00:00
zoom(const Arg *arg)
{
Client *c = selmon->sel;
2008-05-19 19:07:12 +00:00
if (!selmon->lt[selmon->sellt]->arrange || !c || c->isfloating)
return;
if (c == nexttiled(selmon->clients) && !(c = nexttiled(c->next)))
return;
pop(c);
2008-05-19 19:07:12 +00:00
}
2007-09-15 20:25:27 +00:00
int
2015-11-08 22:11:48 +00:00
main(int argc, char *argv[])
{
if (argc == 2 && !strcmp("-v", argv[1]))
2016-08-12 12:35:25 +00:00
die("dwm-"VERSION);
2015-11-08 22:11:48 +00:00
else if (argc != 1)
2016-08-12 12:35:25 +00:00
die("usage: dwm [-v]");
2015-11-08 22:11:48 +00:00
if (!setlocale(LC_CTYPE, "") || !XSupportsLocale())
fputs("warning: no locale support\n", stderr);
2015-11-08 22:11:48 +00:00
if (!(dpy = XOpenDisplay(NULL)))
2016-08-12 12:35:25 +00:00
die("dwm: cannot open display");
2007-09-16 10:34:08 +00:00
checkotherwm();
2007-09-15 20:25:27 +00:00
setup();
2018-05-25 05:56:27 +00:00
#ifdef __OpenBSD__
if (pledge("stdio rpath proc exec", NULL) == -1)
2018-05-25 05:56:27 +00:00
die("pledge");
#endif /* __OpenBSD__ */
2007-09-15 20:25:27 +00:00
scan();
2024-05-30 19:39:43 +00:00
runAutostart();
2007-09-16 10:34:08 +00:00
run();
2007-09-15 20:25:27 +00:00
cleanup();
XCloseDisplay(dpy);
2011-05-12 14:16:33 +00:00
return EXIT_SUCCESS;
2007-09-15 20:25:27 +00:00
}