dwm/dwm.c

2421 lines
57 KiB
C
Raw 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 22:25:27 +02:00
#include <errno.h>
#include <locale.h>
#include <signal.h>
2015-11-08 20:38:00 +01:00
#include <stdarg.h>
2007-09-15 22:25:27 +02:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
2007-09-27 09:14:32 +02:00
#include <sys/types.h>
2007-09-15 22:25:27 +02:00
#include <sys/wait.h>
#include <X11/cursorfont.h>
#include <X11/keysym.h>
#include <X11/Xatom.h>
2007-10-17 11:19:14 +02:00
#include <X11/Xlib.h>
2007-09-15 22:25:27 +02:00
#include <X11/Xproto.h>
#include <X11/Xutil.h>
#ifdef XINERAMA
#include <X11/extensions/Xinerama.h>
#endif /* XINERAMA */
#include <X11/Xft/Xft.h>
2022-04-23 13:31:45 +02:00
#include <X11/Xlib-xcb.h>
#include <xcb/res.h>
#ifdef __OpenBSD__
#include <sys/sysctl.h>
#include <kvm.h>
#endif /* __OpenBSD */
2007-09-15 22:25:27 +02:00
2013-04-17 21:21:47 +02:00
#include "drw.h"
#include "util.h"
2012-11-17 19:01:22 +01:00
2007-09-15 22:25:27 +02:00
/* macros */
#define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
2011-06-27 21:12:42 +02:00
#define CLEANMASK(mask) (mask & ~(numlockmask|LockMask) & (ShiftMask|ControlMask|Mod1Mask|Mod2Mask|Mod3Mask|Mod4Mask|Mod5Mask))
2011-11-06 20:31:29 +01:00
#define INTERSECT(x,y,w,h,m) (MAX(0, MIN((x)+(w),(m)->wx+(m)->ww) - MAX((x),(m)->wx)) \
* MAX(0, MIN((y)+(h),(m)->wy+(m)->wh) - MAX((y),(m)->wy)))
2022-04-23 13:27:36 +02:00
#define ISVISIBLEONTAG(C, T) ((C->tags & T))
#define ISVISIBLE(C) ISVISIBLEONTAG(C, C->mon->tagset[C->mon->seltags])
#define LENGTH(X) (sizeof X / sizeof X[0])
#define MOUSEMASK (BUTTONMASK|PointerMotionMask)
#define WIDTH(X) ((X)->w + 2 * (X)->bw)
#define HEIGHT(X) ((X)->h + 2 * (X)->bw)
#define TAGMASK ((1 << LENGTH(tags)) - 1)
#define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
/* enums */
enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
enum { SchemeNorm, SchemeSel }; /* color schemes */
enum { NetSupported, NetWMName, NetWMState, NetWMCheck,
2011-11-02 13:01:28 +01:00
NetWMFullscreen, NetActiveWindow, NetWMWindowType,
NetWMWindowTypeDialog, NetClientList, NetLast }; /* EWMH atoms */
enum { WMProtocols, WMDelete, WMState, WMTakeFocus, WMLast }; /* default atoms */
2022-04-23 13:30:27 +02:00
enum { ClkTagBar, ClkLtSymbol, ClkStatusText, ClkClientWin,
ClkRootWin, ClkLast }; /* clicks */
typedef union {
int i;
2008-07-16 19:17:42 +02:00
unsigned int ui;
float f;
const void *v;
} Arg;
typedef struct {
2008-07-16 19:17:42 +02:00
unsigned int click;
unsigned int mask;
unsigned int button;
void (*func)(const Arg *arg);
const Arg arg;
} Button;
2009-06-22 15:58:08 +02:00
typedef struct Monitor Monitor;
typedef struct Client Client;
struct Client {
char name[256];
2008-06-15 11:52:57 +02:00
float mina, maxa;
int x, y, w, h;
int oldx, oldy, oldw, oldh;
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 16:56:13 +01:00
int basew, baseh, incw, inch, maxw, maxh, minw, minh, hintsvalid;
2008-05-22 12:50:18 +02:00
int bw, oldbw;
2008-07-16 19:17:42 +02:00
unsigned int tags;
2022-04-23 13:37:21 +02:00
int isfixed, iscentered, isfloating, isurgent, neverfocus, oldstate, isfullscreen, isterminal, noswallow;
2022-04-23 13:31:45 +02:00
pid_t pid;
Client *next;
Client *snext;
2022-04-23 13:31:45 +02:00
Client *swallowing;
Monitor *mon;
Window win;
};
typedef struct {
2008-07-16 19:17:42 +02:00
unsigned int mod;
KeySym keysym;
2008-06-11 10:12:06 +02:00
void (*func)(const Arg *);
const Arg arg;
} Key;
typedef struct {
2009-06-22 15:58:08 +02:00
const char *symbol;
void (*arrange)(Monitor *);
} Layout;
struct Monitor {
char ltsymbol[16];
float mfact;
2011-10-25 21:40:46 +02:00
int nmaster;
int num;
2009-07-09 12:29:01 +02:00
int by; /* bar geometry */
2009-06-30 21:15:31 +02:00
int mx, my, mw, mh; /* screen size */
int wx, wy, ww, wh; /* window area */
2022-04-23 13:28:58 +02:00
int gappx; /* gaps between windows */
unsigned int seltags;
unsigned int sellt;
unsigned int tagset[2];
2015-11-08 22:48:43 +01:00
int showbar;
int topbar;
Client *clients;
Client *sel;
Client *stack;
2009-06-22 15:58:08 +02:00
Monitor *next;
Window barwin;
const Layout *lt[2];
2009-06-22 15:58:08 +02:00
};
typedef struct {
2008-03-14 15:35:45 +01:00
const char *class;
const char *instance;
const char *title;
2008-07-16 19:17:42 +02:00
unsigned int tags;
2022-04-23 13:37:21 +02:00
int iscentered;
2015-11-08 22:48:43 +01:00
int isfloating;
2022-04-23 13:31:45 +02:00
int isterminal;
int noswallow;
int monitor;
} Rule;
2007-10-18 17:02:19 +02:00
/* function declarations */
2008-06-11 10:12:06 +02:00
static void applyrules(Client *c);
2015-11-08 22:48:43 +01:00
static int applysizehints(Client *c, int *x, int *y, int *w, int *h, int interact);
static void arrange(Monitor *m);
static void arrangemon(Monitor *m);
2008-06-11 10:12:06 +02:00
static void attach(Client *c);
2022-04-23 13:27:36 +02:00
static void attachaside(Client *c);
2008-06-11 10:12:06 +02:00
static void attachstack(Client *c);
static void buttonpress(XEvent *e);
static void checkotherwm(void);
static void cleanup(void);
static void cleanupmon(Monitor *mon);
static void clientmessage(XEvent *e);
2008-06-11 10:12:06 +02:00
static void configure(Client *c);
static void configurenotify(XEvent *e);
static void configurerequest(XEvent *e);
static Monitor *createmon(void);
2008-06-11 10:12:06 +02:00
static void destroynotify(XEvent *e);
static void detach(Client *c);
static void detachstack(Client *c);
static Monitor *dirtomon(int dir);
static void drawbar(Monitor *m);
static void drawbars(void);
2008-06-11 10:12:06 +02:00
static void enternotify(XEvent *e);
static void expose(XEvent *e);
static void focus(Client *c);
static void focusin(XEvent *e);
2009-07-01 20:15:20 +02:00
static void focusmon(const Arg *arg);
2008-06-11 10:12:06 +02:00
static void focusstack(const Arg *arg);
static Atom getatomprop(Client *c, Atom prop);
2015-11-08 22:48:43 +01:00
static int getrootptr(int *x, int *y);
2008-06-11 10:12:06 +02:00
static long getstate(Window w);
2015-11-08 22:48:43 +01:00
static int gettextprop(Window w, Atom atom, char *text, unsigned int size);
static void grabbuttons(Client *c, int focused);
2008-06-11 10:12:06 +02:00
static void grabkeys(void);
2011-10-25 21:40:46 +02:00
static void incnmaster(const Arg *arg);
2008-06-11 10:12:06 +02:00
static void keypress(XEvent *e);
static void killclient(const Arg *arg);
static void manage(Window w, XWindowAttributes *wa);
static void mappingnotify(XEvent *e);
static void maprequest(XEvent *e);
static void monocle(Monitor *m);
2011-11-15 20:16:58 +01:00
static void motionnotify(XEvent *e);
static void movemouse(const Arg *arg);
2022-04-23 13:27:36 +02:00
static Client *nexttagged(Client *c);
2009-06-23 18:20:33 +02:00
static Client *nexttiled(Client *c);
2011-04-15 10:13:06 +02:00
static void pop(Client *);
2008-06-11 10:12:06 +02:00
static void propertynotify(XEvent *e);
static void quit(const Arg *arg);
2011-11-06 20:31:29 +01:00
static Monitor *recttomon(int x, int y, int w, int h);
2015-11-08 22:48:43 +01:00
static void resize(Client *c, int x, int y, int w, int h, int interact);
static void resizeclient(Client *c, int x, int y, int w, int h);
static void resizemouse(const Arg *arg);
static void restack(Monitor *m);
2008-06-11 10:12:06 +02:00
static void run(void);
static void scan(void);
2015-11-08 22:48:43 +01:00
static int sendevent(Client *c, Atom proto);
static void sendmon(Client *c, Monitor *m);
2008-06-11 10:12:06 +02:00
static void setclientstate(Client *c, long state);
static void setfocus(Client *c);
2015-11-08 22:48:43 +01:00
static void setfullscreen(Client *c, int fullscreen);
2022-04-23 13:28:58 +02:00
static void setgaps(const Arg *arg);
2008-06-19 12:38:53 +02:00
static void setlayout(const Arg *arg);
2008-06-11 10:12:06 +02:00
static void setmfact(const Arg *arg);
static void setup(void);
static void seturgent(Client *c, int urg);
static void showhide(Client *c);
2009-08-13 11:45:59 +02:00
static void sigchld(int unused);
2008-06-11 10:12:06 +02:00
static void spawn(const Arg *arg);
static void tag(const Arg *arg);
2009-07-01 20:15:20 +02:00
static void tagmon(const Arg *arg);
static void tile(Monitor *);
2008-06-11 10:12:06 +02:00
static void togglebar(const Arg *arg);
static void togglefloating(const Arg *arg);
static void toggletag(const Arg *arg);
static void toggleview(const Arg *arg);
2015-11-08 22:48:43 +01:00
static void unfocus(Client *c, int setfocus);
static void unmanage(Client *c, int destroyed);
2008-06-11 10:12:06 +02:00
static void unmapnotify(XEvent *e);
static void updatebarpos(Monitor *m);
2009-06-22 15:58:08 +02:00
static void updatebars(void);
static void updateclientlist(void);
static int updategeom(void);
static void updatenumlockmask(void);
2008-06-11 10:12:06 +02:00
static void updatesizehints(Client *c);
static void updatestatus(void);
2008-06-11 10:12:06 +02:00
static void updatetitle(Client *c);
static void updatewindowtype(Client *c);
2008-06-11 10:12:06 +02:00
static void updatewmhints(Client *c);
static void view(const Arg *arg);
2009-06-30 20:39:59 +02:00
static Client *wintoclient(Window w);
static Monitor *wintomon(Window w);
2008-06-11 10:12:06 +02:00
static int xerror(Display *dpy, XErrorEvent *ee);
static int xerrordummy(Display *dpy, XErrorEvent *ee);
static int xerrorstart(Display *dpy, XErrorEvent *ee);
static void zoom(const Arg *arg);
2022-04-23 13:31:45 +02:00
static pid_t getparentprocess(pid_t p);
static int isdescprocess(pid_t p, pid_t c);
static Client *swallowingclient(Window w);
static Client *termforwin(const Client *c);
static pid_t winpid(Window w);
/* variables */
2009-07-12 23:49:06 +02:00
static const char broken[] = "broken";
static char stext[256];
static int screen;
static int sw, sh; /* X display screen geometry width, height */
static int bh, blw = 0; /* bar geometry */
static int lrpad; /* sum of left and right padding for text */
2008-06-11 10:12:06 +02:00
static int (*xerrorxlib)(Display *, XErrorEvent *);
2008-07-16 19:17:42 +02:00
static unsigned int numlockmask = 0;
2008-06-11 10:12:06 +02:00
static void (*handler[LASTEvent]) (XEvent *) = {
[ButtonPress] = buttonpress,
[ClientMessage] = clientmessage,
[ConfigureRequest] = configurerequest,
[ConfigureNotify] = configurenotify,
[DestroyNotify] = destroynotify,
[EnterNotify] = enternotify,
[Expose] = expose,
[FocusIn] = focusin,
[KeyPress] = keypress,
[MappingNotify] = mappingnotify,
[MapRequest] = maprequest,
2011-11-15 20:16:58 +01:00
[MotionNotify] = motionnotify,
[PropertyNotify] = propertynotify,
[UnmapNotify] = unmapnotify
};
2008-06-11 10:12:06 +02:00
static Atom wmatom[WMLast], netatom[NetLast];
2015-11-08 22:48:43 +01:00
static int running = 1;
2013-06-16 15:20:29 +02:00
static Cur *cursor[CurLast];
static Clr **scheme;
2008-06-11 10:12:06 +02:00
static Display *dpy;
2013-06-16 15:20:29 +02:00
static Drw *drw;
static Monitor *mons, *selmon;
static Window root, wmcheckwin;
2009-07-02 21:56:23 +02:00
2022-04-23 13:31:45 +02:00
static xcb_connection_t *xcon;
/* configuration, allows nested code to access above variables */
#include "config.h"
2008-07-16 19:17:42 +02:00
/* compile-time check if all tags fit into an unsigned int bit array. */
2009-07-14 17:01:14 +02:00
struct NumTags { char limitexceeded[LENGTH(tags) > 31 ? -1 : 1]; };
2007-10-18 17:02:19 +02:00
/* function implementations */
void
2015-11-08 23:11:48 +01:00
applyrules(Client *c)
{
2009-07-12 23:49:06 +02:00
const char *class, *instance;
2008-07-16 19:17:42 +02:00
unsigned int i;
const Rule *r;
Monitor *m;
XClassHint ch = { NULL, NULL };
2007-09-15 22:25:27 +02:00
2007-09-16 11:53:14 +02:00
/* rule matching */
2022-04-23 13:37:21 +02:00
c->iscentered = 0;
2015-11-08 22:48:43 +01: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 23:11:48 +01:00
for (i = 0; i < LENGTH(rules); i++) {
r = &rules[i];
2015-11-08 23:11:48 +01:00
if ((!r->title || strstr(c->name, r->title))
&& (!r->class || strstr(class, r->class))
&& (!r->instance || strstr(instance, r->instance)))
{
2022-04-23 13:37:21 +02:00
c->iscentered = r->iscentered;
2022-04-23 13:31:45 +02:00
c->isterminal = r->isterminal;
c->noswallow = r->noswallow;
c->isfloating = r->isfloating;
c->tags |= r->tags;
2015-11-08 23:11:48 +01:00
for (m = mons; m && m->num != r->monitor; m = m->next);
if (m)
c->mon = m;
2007-09-16 11:53:14 +02:00
}
2008-02-26 23:51:23 +01:00
}
2015-11-08 23:11:48 +01:00
if (ch.res_class)
XFree(ch.res_class);
2015-11-08 23:11:48 +01: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 22:25:27 +02:00
}
2015-11-08 22:48:43 +01:00
int
2015-11-08 23:11:48 +01:00
applysizehints(Client *c, int *x, int *y, int *w, int *h, int interact)
{
2015-11-08 22:48:43 +01:00
int baseismin;
2009-06-30 21:15:31 +02:00
Monitor *m = c->mon;
/* set minimum possible */
*w = MAX(1, *w);
*h = MAX(1, *h);
2015-11-08 23:11:48 +01:00
if (interact) {
if (*x > sw)
*x = sw - WIDTH(c);
2015-11-08 23:11:48 +01:00
if (*y > sh)
*y = sh - HEIGHT(c);
2015-11-08 23:11:48 +01:00
if (*x + *w + 2 * c->bw < 0)
*x = 0;
2015-11-08 23:11:48 +01:00
if (*y + *h + 2 * c->bw < 0)
*y = 0;
2015-11-08 23:11:48 +01:00
} else {
if (*x >= m->wx + m->ww)
2011-11-04 20:02:35 +01:00
*x = m->wx + m->ww - WIDTH(c);
2015-11-08 23:11:48 +01:00
if (*y >= m->wy + m->wh)
2011-11-04 20:02:35 +01:00
*y = m->wy + m->wh - HEIGHT(c);
2015-11-08 23:11:48 +01:00
if (*x + *w + 2 * c->bw <= m->wx)
2011-11-04 20:02:35 +01:00
*x = m->wx;
2015-11-08 23:11:48 +01:00
if (*y + *h + 2 * c->bw <= m->wy)
2011-11-04 20:02:35 +01:00
*y = m->wy;
}
2015-11-08 23:11:48 +01:00
if (*h < bh)
*h = bh;
2015-11-08 23:11:48 +01:00
if (*w < bh)
*w = bh;
2015-11-08 23:11:48 +01: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 16:56:13 +01: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 23:11:48 +01:00
if (!baseismin) { /* temporarily remove base dimensions */
*w -= c->basew;
*h -= c->baseh;
}
/* adjust for aspect limits */
2015-11-08 23:11:48 +01:00
if (c->mina > 0 && c->maxa > 0) {
if (c->maxa < (float)*w / *h)
2009-07-17 16:28:07 +02:00
*w = *h * c->maxa + 0.5;
2015-11-08 23:11:48 +01:00
else if (c->mina < (float)*h / *w)
2009-07-17 16:28:07 +02:00
*h = *w * c->mina + 0.5;
}
2015-11-08 23:11:48 +01:00
if (baseismin) { /* increment calculation requires this */
*w -= c->basew;
*h -= c->baseh;
}
/* adjust for increment value */
2015-11-08 23:11:48 +01:00
if (c->incw)
*w -= *w % c->incw;
2015-11-08 23:11:48 +01: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 23:11:48 +01:00
if (c->maxw)
*w = MIN(*w, c->maxw);
2015-11-08 23:11:48 +01: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 23:11:48 +01:00
arrange(Monitor *m)
{
if (m)
showhide(m->stack);
2015-11-08 23:11:48 +01:00
else for (m = mons; m; m = m->next)
showhide(m->stack);
2015-11-08 23:11:48 +01:00
if (m) {
arrangemon(m);
restack(m);
2015-11-08 23:11:48 +01:00
} else for (m = mons; m; m = m->next)
arrangemon(m);
}
void
2015-11-08 23:11:48 +01:00
arrangemon(Monitor *m)
{
strncpy(m->ltsymbol, m->lt[m->sellt]->symbol, sizeof m->ltsymbol);
2015-11-08 23:11:48 +01:00
if (m->lt[m->sellt]->arrange)
m->lt[m->sellt]->arrange(m);
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
attach(Client *c)
{
c->next = c->mon->clients;
c->mon->clients = c;
2007-09-15 22:25:27 +02:00
}
2022-04-23 13:27:36 +02:00
void
attachaside(Client *c) {
Client *at = nexttagged(c);
if(!at) {
attach(c);
return;
}
c->next = at->next;
at->next = c;
}
void
2015-11-08 23:11:48 +01:00
attachstack(Client *c)
{
c->snext = c->mon->stack;
c->mon->stack = c;
2007-09-15 22:25:27 +02:00
}
2022-04-23 13:31:45 +02:00
void
swallow(Client *p, Client *c)
{
if (c->noswallow || c->isterminal)
return;
if (c->noswallow && !swallowfloating && c->isfloating)
return;
detach(c);
detachstack(c);
setclientstate(c, WithdrawnState);
XUnmapWindow(dpy, p->win);
p->swallowing = c;
c->mon = p->mon;
Window w = p->win;
p->win = c->win;
c->win = w;
updatetitle(p);
XMoveResizeWindow(dpy, p->win, p->x, p->y, p->w, p->h);
arrange(p->mon);
configure(p);
updateclientlist();
}
void
unswallow(Client *c)
{
c->win = c->swallowing->win;
free(c->swallowing);
c->swallowing = NULL;
/* unfullscreen the client */
setfullscreen(c, 0);
updatetitle(c);
arrange(c->mon);
XMapWindow(dpy, c->win);
XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
setclientstate(c, NormalState);
focus(NULL);
arrange(c->mon);
}
void
2015-11-08 23:11:48 +01:00
buttonpress(XEvent *e)
{
2008-07-16 19:17:42 +02:00
unsigned int i, x, click;
2008-06-20 17:52:07 +02:00
Arg arg = {0};
2007-09-16 11:53:14 +02:00
Client *c;
Monitor *m;
2007-09-16 11:53:14 +02:00
XButtonPressedEvent *ev = &e->xbutton;
2007-09-15 22:25:27 +02:00
2008-06-15 11:52:57 +02:00
click = ClkRootWin;
/* focus monitor if necessary */
2015-11-08 23:11:48 +01:00
if ((m = wintomon(ev->window)) && m != selmon) {
2015-11-08 22:48:43 +01:00
unfocus(selmon->sel, 1);
selmon = m;
focus(NULL);
}
2015-11-08 23:11:48 +01:00
if (ev->window == selmon->barwin) {
2009-07-09 12:29:01 +02:00
i = x = 0;
2022-04-23 13:29:31 +02:00
unsigned int occ = 0;
for(c = m->clients; c; c=c->next)
occ |= c->tags;
do {
/* Do not reserve space for vacant tags */
if (!(occ & 1 << i || m->tagset[m->seltags] & 1 << i))
continue;
x += TEXTW(tags[i]);
2022-04-23 13:29:31 +02:00
} while (ev->x >= x && ++i < LENGTH(tags));
2015-11-08 23:11:48 +01:00
if (i < LENGTH(tags)) {
2008-06-20 17:52:07 +02:00
click = ClkTagBar;
arg.ui = 1 << i;
2015-11-08 23:11:48 +01:00
} else if (ev->x < x + blw)
click = ClkLtSymbol;
else
2022-04-23 13:30:27 +02:00
click = ClkStatusText;
2015-11-08 23:11:48 +01:00
} else if ((c = wintoclient(ev->window))) {
2008-06-15 11:52:57 +02:00
focus(c);
restack(selmon);
XAllowEvents(dpy, ReplayPointer, CurrentTime);
click = ClkClientWin;
2008-06-15 11:52:57 +02:00
}
2015-11-08 23:11:48 +01:00
for (i = 0; i < LENGTH(buttons); i++)
if (click == buttons[i].click && buttons[i].func && buttons[i].button == ev->button
2009-07-14 17:26:04 +02:00
&& CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
2008-09-01 23:18:50 +02:00
buttons[i].func(click == ClkTagBar && buttons[i].arg.i == 0 ? &arg : &buttons[i].arg);
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
checkotherwm(void)
{
xerrorxlib = XSetErrorHandler(xerrorstart);
2007-09-16 12:34:08 +02:00
/* this causes an error if some other window manager is running */
XSelectInput(dpy, DefaultRootWindow(dpy), SubstructureRedirectMask);
2007-09-16 12:34:08 +02:00
XSync(dpy, False);
XSetErrorHandler(xerror);
2007-09-16 12:34:08 +02:00
XSync(dpy, False);
}
void
2015-11-08 23:11:48 +01:00
cleanup(void)
{
2008-08-12 21:24:40 +02:00
Arg a = {.ui = ~0};
Layout foo = { "", NULL };
Monitor *m;
size_t i;
2008-06-11 10:12:06 +02:00
view(&a);
selmon->lt[selmon->sellt] = &foo;
2015-11-08 23:11:48 +01:00
for (m = mons; m; m = m->next)
while (m->stack)
2015-11-08 22:48:43 +01:00
unmanage(m->stack, 0);
2008-02-18 18:08:22 +01:00
XUngrabKey(dpy, AnyKey, AnyModifier, root);
2015-11-08 23:11:48 +01:00
while (mons)
cleanupmon(mons);
2015-11-08 23:11:48 +01: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 15:20:29 +02:00
drw_free(drw);
2008-02-18 18:08:22 +01:00
XSync(dpy, False);
XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
2007-09-15 22:25:27 +02:00
}
2009-06-22 15:58:08 +02:00
void
2015-11-08 23:11:48 +01:00
cleanupmon(Monitor *mon)
{
2009-06-22 15:58:08 +02:00
Monitor *m;
2015-11-08 23:11:48 +01:00
if (mon == mons)
mons = mons->next;
else {
2015-11-08 23:11:48 +01:00
for (m = mons; m && m->next != mon; m = m->next);
m->next = mon->next;
2009-06-22 15:58:08 +02:00
}
XUnmapWindow(dpy, mon->barwin);
XDestroyWindow(dpy, mon->barwin);
free(mon);
2009-06-22 15:58:08 +02:00
}
void
2015-11-08 23:11:48 +01:00
clientmessage(XEvent *e)
{
XClientMessageEvent *cme = &e->xclient;
Client *c = wintoclient(cme->window);
2015-11-08 23:11:48 +01:00
if (!c)
return;
2015-11-08 23:11:48 +01:00
if (cme->message_type == netatom[NetWMState]) {
if (cme->data.l[1] == netatom[NetWMFullscreen]
|| cme->data.l[2] == netatom[NetWMFullscreen])
2011-11-06 20:30:06 +01: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 23:11:48 +01:00
} else if (cme->message_type == netatom[NetActiveWindow]) {
if (c != selmon->sel && !c->isurgent)
seturgent(c, 1);
}
}
void
2015-11-08 23:11:48 +01:00
configure(Client *c)
{
2007-09-16 11:53:14 +02:00
XConfigureEvent ce;
2007-09-15 22:25:27 +02:00
2007-09-16 11:53:14 +02: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 11:53:14 +02:00
ce.above = None;
ce.override_redirect = False;
XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&ce);
}
void
2015-11-08 23:11:48 +01:00
configurenotify(XEvent *e)
{
2009-06-22 15:58:08 +02:00
Monitor *m;
Client *c;
2007-09-16 11:53:14 +02:00
XConfigureEvent *ev = &e->xconfigure;
2015-11-08 22:48:43 +01:00
int dirty;
2007-09-16 11:53:14 +02:00
/* TODO: updategeom handling sucks, needs to be simplified */
2015-11-08 23:11:48 +01:00
if (ev->window == root) {
dirty = (sw != ev->width || sh != ev->height);
2008-03-19 10:27:17 +01:00
sw = ev->width;
sh = ev->height;
2015-11-08 23:11:48 +01:00
if (updategeom() || dirty) {
2013-06-16 15:20:29 +02: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 10:27:17 +01:00
}
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
configurerequest(XEvent *e)
{
2007-09-15 22:25:27 +02:00
Client *c;
Monitor *m;
2007-09-15 22:25:27 +02:00
XConfigureRequestEvent *ev = &e->xconfigurerequest;
XWindowChanges wc;
2015-11-08 23:11:48 +01:00
if ((c = wintoclient(ev->window))) {
if (ev->value_mask & CWBorderWidth)
c->bw = ev->border_width;
2015-11-08 23:11:48 +01:00
else if (c->isfloating || !selmon->lt[selmon->sellt]->arrange) {
m = c->mon;
2015-11-08 23:11:48 +01:00
if (ev->value_mask & CWX) {
c->oldx = c->x;
c->x = m->mx + ev->x;
}
2015-11-08 23:11:48 +01:00
if (ev->value_mask & CWY) {
c->oldy = c->y;
c->y = m->my + ev->y;
}
2015-11-08 23:11:48 +01:00
if (ev->value_mask & CWWidth) {
c->oldw = c->w;
2007-09-15 22:25:27 +02:00
c->w = ev->width;
}
2015-11-08 23:11:48 +01:00
if (ev->value_mask & CWHeight) {
c->oldh = c->h;
2007-09-15 22:25:27 +02:00
c->h = ev->height;
}
2015-11-08 23:11:48 +01: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 23:11:48 +01: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 23:11:48 +01:00
if ((ev->value_mask & (CWX|CWY)) && !(ev->value_mask & (CWWidth|CWHeight)))
2007-09-15 22:25:27 +02:00
configure(c);
2015-11-08 23:11:48 +01:00
if (ISVISIBLE(c))
2007-09-15 22:25:27 +02:00
XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
2015-11-08 23:11:48 +01:00
} else
2007-09-15 22:25:27 +02:00
configure(c);
2015-11-08 23:11:48 +01:00
} else {
2007-09-15 22:25:27 +02: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 23:11:48 +01:00
createmon(void)
{
Monitor *m;
m = ecalloc(1, sizeof(Monitor));
m->tagset[0] = m->tagset[1] = 1;
m->mfact = mfact;
2011-10-25 21:40:46 +02:00
m->nmaster = nmaster;
m->showbar = showbar;
m->topbar = topbar;
2022-04-23 13:28:58 +02:00
m->gappx = gappx;
m->lt[0] = &layouts[0];
m->lt[1] = &layouts[1 % LENGTH(layouts)];
strncpy(m->ltsymbol, layouts[0].symbol, sizeof m->ltsymbol);
return m;
}
void
2015-11-08 23:11:48 +01:00
destroynotify(XEvent *e)
{
2007-09-15 22:25:27 +02:00
Client *c;
XDestroyWindowEvent *ev = &e->xdestroywindow;
2015-11-08 23:11:48 +01:00
if ((c = wintoclient(ev->window)))
2015-11-08 22:48:43 +01:00
unmanage(c, 1);
2022-04-23 13:31:45 +02:00
else if ((c = swallowingclient(ev->window)))
unmanage(c->swallowing, 1);
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
detach(Client *c)
{
2008-07-03 11:58:35 +02:00
Client **tc;
2008-06-11 10:12:06 +02:00
2015-11-08 23:11:48 +01:00
for (tc = &c->mon->clients; *tc && *tc != c; tc = &(*tc)->next);
2008-07-03 11:58:35 +02:00
*tc = c->next;
2007-09-16 11:53:14 +02:00
}
2007-09-15 22:25:27 +02:00
void
2015-11-08 23:11:48 +01:00
detachstack(Client *c)
{
2009-06-30 20:45:25 +02:00
Client **tc, *t;
2007-09-16 11:53:14 +02:00
2015-11-08 23:11:48 +01:00
for (tc = &c->mon->stack; *tc && *tc != c; tc = &(*tc)->snext);
2007-09-16 11:53:14 +02:00
*tc = c->snext;
2009-06-30 20:39:59 +02:00
2015-11-08 23:11:48 +01:00
if (c == c->mon->sel) {
for (t = c->mon->stack; t && !ISVISIBLE(t); t = t->snext);
2009-06-30 20:45:25 +02:00
c->mon->sel = t;
2009-06-30 20:39:59 +02:00
}
2007-09-16 11:53:14 +02:00
}
Monitor *
2015-11-08 23:11:48 +01:00
dirtomon(int dir)
{
Monitor *m = NULL;
2015-11-08 23:11:48 +01:00
if (dir > 0) {
if (!(m = selmon->next))
m = mons;
2015-11-08 23:11:48 +01:00
} else if (selmon == mons)
for (m = mons; m->next; m = m->next);
2011-07-27 19:59:10 +02:00
else
2015-11-08 23:11:48 +01:00
for (m = mons; m->next != selmon; m = m->next);
return m;
}
void
2015-11-08 23:11:48 +01: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 */
drw_setscheme(drw, scheme[SchemeNorm]);
tw = TEXTW(stext) - lrpad + 2; /* 2px right padding */
drw_text(drw, m->ww - tw, 0, tw, bh, 0, stext, 0);
}
2015-11-08 23:11:48 +01:00
for (c = m->clients; c; c = c->next) {
occ |= c->tags;
2015-11-08 23:11:48 +01:00
if (c->isurgent)
urg |= c->tags;
}
2013-06-16 15:20:29 +02:00
x = 0;
2015-11-08 23:11:48 +01:00
for (i = 0; i < LENGTH(tags); i++) {
2022-04-23 13:29:31 +02:00
/* Do not draw vacant tags */
if(!(occ & 1 << i || m->tagset[m->seltags] & 1 << i))
continue;
2013-06-16 15:20:29 +02: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);
2013-06-16 15:20:29 +02:00
x += w;
}
2013-06-16 15:20:29 +02:00
w = blw = 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) {
drw_setscheme(drw, scheme[SchemeNorm]);
drw_rect(drw, x, 0, w, bh, 1, 1);
}
2013-06-16 15:20:29 +02:00
drw_map(drw, m->barwin, 0, 0, m->ww, bh);
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
drawbars(void)
{
2009-06-22 15:58:08 +02:00
Monitor *m;
2015-11-08 23:11:48 +01:00
for (m = mons; m; m = m->next)
2009-06-22 15:58:08 +02:00
drawbar(m);
}
void
2015-11-08 23:11:48 +01:00
enternotify(XEvent *e)
{
2011-06-25 10:07:28 +02:00
Client *c;
Monitor *m;
2007-09-16 11:53:14 +02:00
XCrossingEvent *ev = &e->xcrossing;
2015-11-08 23:11:48 +01:00
if ((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
return;
2011-06-25 10:07:28 +02:00
c = wintoclient(ev->window);
m = c ? c->mon : wintomon(ev->window);
2015-11-08 23:11:48 +01:00
if (m != selmon) {
2015-11-08 22:48:43 +01:00
unfocus(selmon->sel, 1);
selmon = m;
2015-11-08 23:11:48 +01:00
} else if (!c || c == selmon->sel)
2011-06-25 10:07:28 +02:00
return;
focus(c);
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
expose(XEvent *e)
{
2009-06-22 15:58:08 +02:00
Monitor *m;
2007-09-16 11:53:14 +02:00
XExposeEvent *ev = &e->xexpose;
2007-09-15 22:25:27 +02:00
2015-11-08 23:11:48 +01:00
if (ev->count == 0 && (m = wintomon(ev->window)))
drawbar(m);
}
void
2015-11-08 23:11:48 +01: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 22:48:43 +01:00
unfocus(selmon->sel, 0);
2015-11-08 23:11:48 +01:00
if (c) {
if (c->mon != selmon)
2009-06-24 16:37:32 +02:00
selmon = c->mon;
2015-11-08 23:11:48 +01:00
if (c->isurgent)
seturgent(c, 0);
2007-09-16 11:53:14 +02:00
detachstack(c);
attachstack(c);
2015-11-08 22:48:43 +01:00
grabbuttons(c, 1);
XSetWindowBorder(dpy, c->win, scheme[SchemeSel][ColBorder].pixel);
setfocus(c);
2015-11-08 23:11:48 +01:00
} else {
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
}
selmon->sel = c;
drawbars();
2007-09-15 22:25:27 +02:00
}
/* there are some broken focus acquiring clients needing extra handling */
void
2015-11-08 23:11:48 +01:00
focusin(XEvent *e)
{
XFocusChangeEvent *ev = &e->xfocus;
2015-11-08 23:11:48 +01:00
if (selmon->sel && ev->window != selmon->sel->win)
setfocus(selmon->sel);
}
void
2015-11-08 23:11:48 +01:00
focusmon(const Arg *arg)
{
Monitor *m;
2015-11-08 23:11:48 +01:00
if (!mons->next)
return;
2015-11-08 23:11:48 +01:00
if ((m = dirtomon(arg->i)) == selmon)
return;
unfocus(selmon->sel, 0);
selmon = m;
focus(NULL);
}
void
2015-11-08 23:11:48 +01:00
focusstack(const Arg *arg)
{
2008-06-11 10:12:06 +02:00
Client *c = NULL, *i;
2007-09-15 22:25:27 +02:00
if (!selmon->sel || (selmon->sel->isfullscreen && lockfullscreen))
2007-09-16 11:53:14 +02:00
return;
2015-11-08 23:11:48 +01: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 10:12:06 +02:00
c = i;
2015-11-08 23:11:48 +01:00
if (!c)
for (; i; i = i->next)
if (ISVISIBLE(i))
2008-06-11 10:12:06 +02:00
c = i;
2007-09-16 11:53:14 +02:00
}
2015-11-08 23:11:48 +01:00
if (c) {
2007-09-16 11:53:14 +02:00
focus(c);
restack(selmon);
2007-09-16 11:53:14 +02:00
}
2007-09-15 22:25:27 +02:00
}
2011-11-06 20:30:06 +01:00
Atom
2015-11-08 23:11:48 +01:00
getatomprop(Client *c, Atom prop)
{
2011-11-06 20:30:06 +01:00
int di;
unsigned long dl;
unsigned char *p = NULL;
Atom da, atom = None;
2015-11-08 23:11:48 +01:00
if (XGetWindowProperty(dpy, c->win, prop, 0L, sizeof atom, False, XA_ATOM,
&da, &di, &dl, &dl, &p) == Success && p) {
2011-11-06 20:30:06 +01:00
atom = *(Atom *)p;
XFree(p);
}
return atom;
}
2015-11-08 22:48:43 +01:00
int
2015-11-08 23:11:48 +01:00
getrootptr(int *x, int *y)
{
int di;
unsigned int dui;
Window dummy;
2009-07-02 19:40:04 +02:00
2015-11-08 22:48:43 +01:00
return XQueryPointer(dpy, root, &dummy, &dummy, x, y, &di, &di, &dui);
}
long
2015-11-08 23:11:48 +01:00
getstate(Window w)
{
int format;
2007-09-16 11:53:14 +02:00
long result = -1;
unsigned char *p = NULL;
2008-07-16 19:17:42 +02:00
unsigned long n, extra;
2007-09-16 11:53:14 +02:00
Atom real;
2007-09-15 22:25:27 +02:00
2015-11-08 23:11:48 +01:00
if (XGetWindowProperty(dpy, w, wmatom[WMState], 0L, 2L, False, wmatom[WMState],
&real, &format, &n, &extra, (unsigned char **)&p) != Success)
2007-09-16 11:53:14 +02:00
return -1;
2015-11-08 23:11:48 +01:00
if (n != 0)
2007-09-16 11:53:14 +02:00
result = *p;
XFree(p);
return result;
2007-09-15 22:25:27 +02:00
}
2015-11-08 22:48:43 +01:00
int
2015-11-08 23:11:48 +01:00
gettextprop(Window w, Atom atom, char *text, unsigned int size)
{
2007-09-16 11:53:14 +02:00
char **list = NULL;
int n;
XTextProperty name;
2007-09-15 22:25:27 +02:00
2015-11-08 23:11:48 +01:00
if (!text || size == 0)
2015-11-08 22:48:43 +01:00
return 0;
2007-09-16 11:53:14 +02:00
text[0] = '\0';
if (!XGetTextProperty(dpy, w, &name, atom) || !name.nitems)
2015-11-08 22:48:43 +01:00
return 0;
2015-11-08 23:11:48 +01:00
if (name.encoding == XA_STRING)
2007-09-16 11:53:14 +02:00
strncpy(text, (char *)name.value, size - 1);
else {
2015-11-08 23:11:48 +01:00
if (XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success && n > 0 && *list) {
2007-09-16 11:53:14 +02:00
strncpy(text, *list, size - 1);
XFreeStringList(list);
2007-09-15 22:25:27 +02:00
}
2007-09-16 11:53:14 +02:00
}
text[size - 1] = '\0';
XFree(name.value);
2015-11-08 22:48:43 +01:00
return 1;
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01: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 11:53:14 +02:00
}
void
2015-11-08 23:11:48 +01:00
grabkeys(void)
{
updatenumlockmask();
2009-07-02 19:40:04 +02:00
{
unsigned int i, j;
2008-08-23 10:31:28 +02:00
unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
KeyCode code;
XUngrabKey(dpy, AnyKey, AnyModifier, root);
2015-11-08 23:11:48 +01:00
for (i = 0; i < LENGTH(keys); i++)
if ((code = XKeysymToKeycode(dpy, keys[i].keysym)))
for (j = 0; j < LENGTH(modifiers); j++)
2008-09-02 19:47:01 +02:00
XGrabKey(dpy, code, keys[i].mod | modifiers[j], root,
True, GrabModeAsync, GrabModeAsync);
}
}
2011-10-25 21:40:46 +02:00
void
2015-11-08 23:11:48 +01:00
incnmaster(const Arg *arg)
{
2011-10-31 20:09:27 +01:00
selmon->nmaster = MAX(selmon->nmaster + arg->i, 0);
2011-10-25 21:40:46 +02:00
arrange(selmon);
}
#ifdef XINERAMA
2015-11-08 22:48:43 +01:00
static int
2015-11-08 23:11:48 +01: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 22:48:43 +01:00
return 0;
return 1;
}
#endif /* XINERAMA */
void
2015-11-08 23:11:48 +01:00
keypress(XEvent *e)
{
2008-07-16 19:17:42 +02:00
unsigned int i;
2007-09-16 11:53:14 +02:00
KeySym keysym;
XKeyEvent *ev;
ev = &e->xkey;
keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
2015-11-08 23:11:48 +01:00
for (i = 0; i < LENGTH(keys); i++)
if (keysym == keys[i].keysym
2009-07-14 17:26:04 +02:00
&& CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
&& keys[i].func)
2008-06-11 10:12:06 +02:00
keys[i].func(&(keys[i].arg));
2007-09-16 11:53:14 +02:00
}
void
2015-11-08 23:11:48 +01:00
killclient(const Arg *arg)
{
if (!selmon->sel)
2007-09-15 22:25:27 +02:00
return;
2015-11-08 23:11:48 +01:00
if (!sendevent(selmon->sel, wmatom[WMDelete])) {
2009-09-08 14:30:18 +02:00
XGrabServer(dpy);
XSetErrorHandler(xerrordummy);
XSetCloseDownMode(dpy, DestroyAll);
XKillClient(dpy, selmon->sel->win);
2009-09-08 14:30:18 +02:00
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
}
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
manage(Window w, XWindowAttributes *wa)
{
2022-04-23 13:31:45 +02:00
Client *c, *t = NULL, *term = NULL;
2008-08-18 11:22:46 +02:00
Window trans = None;
2007-09-16 11:53:14 +02:00
XWindowChanges wc;
2007-09-15 22:25:27 +02:00
c = ecalloc(1, sizeof(Client));
2007-09-16 11:53:14 +02:00
c->win = w;
2022-04-23 13:31:45 +02:00
c->pid = winpid(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 23:34:29 +02:00
updatetitle(c);
2015-11-08 23:11:48 +01:00
if (XGetTransientForHint(dpy, w, &trans) && (t = wintoclient(trans))) {
c->mon = t->mon;
c->tags = t->tags;
2015-11-08 23:11:48 +01:00
} else {
c->mon = selmon;
applyrules(c);
2022-04-23 13:31:45 +02:00
term = termforwin(c);
}
2011-11-06 20:30:06 +01:00
2015-11-08 23:11:48 +01:00
if (c->x + WIDTH(c) > c->mon->mx + c->mon->mw)
2011-11-06 20:30:06 +01:00
c->x = c->mon->mx + c->mon->mw - WIDTH(c);
2015-11-08 23:11:48 +01:00
if (c->y + HEIGHT(c) > c->mon->my + c->mon->mh)
2011-11-06 20:30:06 +01:00
c->y = c->mon->my + c->mon->mh - HEIGHT(c);
c->x = MAX(c->x, c->mon->mx);
/* only fix client y-offset, if the client center might cover the bar */
c->y = MAX(c->y, ((c->mon->by == c->mon->my) && (c->x + (c->w / 2) >= c->mon->wx)
&& (c->x + (c->w / 2) < c->mon->wx + c->mon->ww)) ? bh : c->mon->my);
2011-11-06 20:30:06 +01:00
c->bw = borderpx;
wc.border_width = c->bw;
2007-09-16 11:53:14 +02:00
XConfigureWindow(dpy, w, CWBorderWidth, &wc);
XSetWindowBorder(dpy, w, scheme[SchemeNorm][ColBorder].pixel);
2007-09-16 11:53:14 +02:00
configure(c); /* propagates border_width, if size doesn't change */
2011-11-02 13:01:28 +01:00
updatewindowtype(c);
updatewmhints(c);
2022-04-23 13:37:21 +02:00
if (c->iscentered) {
c->x = c->mon->mx + (c->mon->mw - WIDTH(c)) / 2;
c->y = c->mon->my + (c->mon->mh - HEIGHT(c)) / 2;
}
XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
2015-11-08 22:48:43 +01:00
grabbuttons(c, 0);
2015-11-08 23:11:48 +01:00
if (!c->isfloating)
c->isfloating = c->oldstate = t || c->isfixed;
2015-11-08 23:11:48 +01:00
if (c->isfloating)
XRaiseWindow(dpy, c->win);
2022-04-23 13:27:36 +02:00
attachaside(c);
2007-09-16 11:53:14 +02:00
attachstack(c);
XChangeProperty(dpy, root, netatom[NetClientList], XA_WINDOW, 32, PropModeAppend,
(unsigned char *) &(c->win), 1);
2008-06-22 10:29:06 +02:00
XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */
2007-09-16 11:53:14 +02:00
setclientstate(c, NormalState);
if (c->mon == selmon)
2015-11-08 22:48:43 +01:00
unfocus(selmon->sel, 0);
c->mon->sel = c;
arrange(c->mon);
XMapWindow(dpy, c->win);
2022-04-23 13:31:45 +02:00
if (term)
swallow(term, c);
focus(NULL);
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
mappingnotify(XEvent *e)
{
2007-09-16 11:53:14 +02:00
XMappingEvent *ev = &e->xmapping;
2007-09-15 22:25:27 +02:00
2007-09-16 11:53:14 +02:00
XRefreshKeyboardMapping(ev);
2015-11-08 23:11:48 +01:00
if (ev->request == MappingKeyboard)
grabkeys();
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
maprequest(XEvent *e)
{
2007-09-16 11:53:14 +02:00
static XWindowAttributes wa;
XMapRequestEvent *ev = &e->xmaprequest;
2015-11-08 23:11:48 +01:00
if (!XGetWindowAttributes(dpy, ev->window, &wa))
2007-09-15 22:25:27 +02:00
return;
2015-11-08 23:11:48 +01:00
if (wa.override_redirect)
2007-09-16 11:53:14 +02:00
return;
2015-11-08 23:11:48 +01:00
if (!wintoclient(ev->window))
2007-09-16 11:53:14 +02:00
manage(ev->window, &wa);
2007-09-15 22:25:27 +02:00
}
2008-06-19 12:38:53 +02:00
void
2015-11-08 23:11:48 +01:00
monocle(Monitor *m)
{
unsigned int n = 0;
2008-06-19 12:38:53 +02:00
Client *c;
2015-11-08 23:11:48 +01:00
for (c = m->clients; c; c = c->next)
if (ISVISIBLE(c))
n++;
2015-11-08 23:11:48 +01:00
if (n > 0) /* override layout symbol */
snprintf(m->ltsymbol, sizeof m->ltsymbol, "[%d]", n);
2015-11-08 23:11:48 +01:00
for (c = nexttiled(m->clients); c; c = nexttiled(c->next))
2015-11-08 22:48:43 +01:00
resize(c, m->wx, m->wy, m->ww - 2 * c->bw, m->wh - 2 * c->bw, 0);
2008-06-19 12:38:53 +02:00
}
2011-11-15 20:16:58 +01:00
void
2015-11-08 23:11:48 +01:00
motionnotify(XEvent *e)
{
2011-11-15 20:16:58 +01:00
static Monitor *mon = NULL;
Monitor *m;
XMotionEvent *ev = &e->xmotion;
2015-11-08 23:11:48 +01:00
if (ev->window != root)
2011-11-15 20:16:58 +01:00
return;
2015-11-08 23:11:48 +01:00
if ((m = recttomon(ev->x_root, ev->y_root, 1, 1)) != mon && mon) {
2015-11-08 22:48:43 +01:00
unfocus(selmon->sel, 1);
2011-11-15 20:16:58 +01:00
selmon = m;
focus(NULL);
}
mon = m;
}
void
2015-11-08 23:11:48 +01:00
movemouse(const Arg *arg)
{
int x, y, ocx, ocy, nx, ny;
Client *c;
Monitor *m;
2007-09-15 22:25:27 +02:00
XEvent ev;
Time lasttime = 0;
2007-09-15 22:25:27 +02:00
2015-11-08 23:11:48 +01:00
if (!(c = selmon->sel))
return;
2015-11-08 23:11:48 +01:00
if (c->isfullscreen) /* no support moving fullscreen windows by mouse */
return;
restack(selmon);
ocx = c->x;
ocy = c->y;
2015-11-08 23:11:48 +01:00
if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
None, cursor[CurMove]->cursor, CurrentTime) != GrabSuccess)
2007-09-15 22:25:27 +02:00
return;
2015-11-08 23:11:48 +01:00
if (!getrootptr(&x, &y))
return;
do {
XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
2011-05-12 16:16:33 +02:00
switch(ev.type) {
2007-09-16 11:53:14 +02: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 23:11:48 +01:00
if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
2015-11-08 22:48:43 +01:00
resize(c, nx, ny, c->w, c->h, 1);
2007-09-16 11:53:14 +02:00
break;
}
2015-11-08 23:11:48 +01:00
} while (ev.type != ButtonRelease);
XUngrabPointer(dpy, CurrentTime);
2015-11-08 23:11:48 +01:00
if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
sendmon(c, m);
selmon = m;
focus(NULL);
}
2007-09-16 11:53:14 +02:00
}
2022-04-23 13:27:36 +02:00
Client *
nexttagged(Client *c) {
Client *walked = c->mon->clients;
for(;
walked && (walked->isfloating || !ISVISIBLEONTAG(walked, c->tags));
walked = walked->next
);
return walked;
}
Client *
2015-11-08 23:11:48 +01:00
nexttiled(Client *c)
{
for (; c && (c->isfloating || !ISVISIBLE(c)); c = c->next);
2007-09-16 11:53:14 +02:00
return c;
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
pop(Client *c)
{
detach(c);
attach(c);
focus(c);
arrange(c->mon);
2009-06-30 20:39:59 +02:00
}
void
2015-11-08 23:11:48 +01:00
propertynotify(XEvent *e)
{
2007-09-16 11:53:14 +02:00
Client *c;
Window trans;
XPropertyEvent *ev = &e->xproperty;
2007-09-15 22:25:27 +02:00
2015-11-08 23:11:48 +01:00
if ((ev->window == root) && (ev->atom == XA_WM_NAME))
updatestatus();
2015-11-08 23:11:48 +01:00
else if (ev->state == PropertyDelete)
2007-09-16 11:53:14 +02:00
return; /* ignore */
2015-11-08 23:11:48 +01:00
else if ((c = wintoclient(ev->window))) {
2011-05-12 16:16:33 +02:00
switch(ev->atom) {
default: break;
case XA_WM_TRANSIENT_FOR:
2015-11-08 23:11:48 +01: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 16:56:13 +01:00
c->hintsvalid = 0;
break;
case XA_WM_HINTS:
updatewmhints(c);
drawbars();
break;
2007-09-16 11:53:14 +02:00
}
2022-04-23 13:30:27 +02:00
if (ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName])
2007-09-16 11:53:14 +02:00
updatetitle(c);
2015-11-08 23:11:48 +01:00
if (ev->atom == netatom[NetWMWindowType])
2011-11-02 13:01:28 +01:00
updatewindowtype(c);
2007-09-16 11:53:14 +02:00
}
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
quit(const Arg *arg)
{
2015-11-08 22:48:43 +01:00
running = 0;
2007-09-15 22:25:27 +02:00
}
2011-11-06 20:31:29 +01:00
Monitor *
2015-11-08 23:11:48 +01:00
recttomon(int x, int y, int w, int h)
{
2011-11-06 20:31:29 +01:00
Monitor *m, *r = selmon;
int a, area = 0;
2015-11-08 23:11:48 +01:00
for (m = mons; m; m = m->next)
if ((a = INTERSECT(x, y, w, h, m)) > area) {
2011-11-06 20:31:29 +01:00
area = a;
r = m;
}
return r;
}
void
2015-11-08 23:11:48 +01: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 23:11:48 +01:00
resizeclient(Client *c, int x, int y, int w, int h)
{
2007-10-03 16:25:25 +02:00
XWindowChanges wc;
2008-02-20 09:13:41 +01: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;
XConfigureWindow(dpy, c->win, CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
configure(c);
XSync(dpy, False);
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
resizemouse(const Arg *arg)
{
int ocx, ocy, nw, nh;
Client *c;
Monitor *m;
2007-09-16 11:53:14 +02:00
XEvent ev;
Time lasttime = 0;
2007-09-16 11:53:14 +02:00
2015-11-08 23:11:48 +01:00
if (!(c = selmon->sel))
return;
2015-11-08 23:11:48 +01:00
if (c->isfullscreen) /* no support resizing fullscreen windows by mouse */
return;
restack(selmon);
2007-09-16 11:53:14 +02:00
ocx = c->x;
ocy = c->y;
2015-11-08 23:11:48 +01:00
if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
None, cursor[CurResize]->cursor, CurrentTime) != GrabSuccess)
2007-09-16 11:53:14 +02: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 20:28:57 +02:00
XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
2007-09-16 11:53:14 +02: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 13:02:14 +01: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 23:11:48 +01: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 17:26:04 +02:00
{
2015-11-08 23:11:48 +01:00
if (!c->isfloating && selmon->lt[selmon->sellt]->arrange
2009-07-14 17:26:04 +02:00
&& (abs(nw - c->w) > snap || abs(nh - c->h) > snap))
2008-05-19 14:41:58 +02:00
togglefloating(NULL);
2008-04-27 19:22:52 +02:00
}
2015-11-08 23:11:48 +01:00
if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
2015-11-08 22:48:43 +01:00
resize(c, c->x, c->y, nw, nh, 1);
2007-09-16 11:53:14 +02:00
break;
}
2015-11-08 23:11:48 +01: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 23:11:48 +01: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 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
restack(Monitor *m)
{
2007-09-16 11:53:14 +02:00
Client *c;
XEvent ev;
XWindowChanges wc;
2007-09-15 22:25:27 +02:00
drawbar(m);
2015-11-08 23:11:48 +01:00
if (!m->sel)
2007-09-16 11:53:14 +02:00
return;
2015-11-08 23:11:48 +01:00
if (m->sel->isfloating || !m->lt[m->sellt]->arrange)
XRaiseWindow(dpy, m->sel->win);
2015-11-08 23:11:48 +01:00
if (m->lt[m->sellt]->arrange) {
2007-09-16 11:53:14 +02:00
wc.stack_mode = Below;
wc.sibling = m->barwin;
2015-11-08 23:11:48 +01:00
for (c = m->stack; c; c = c->snext)
if (!c->isfloating && ISVISIBLE(c)) {
2008-04-27 19:22:52 +02:00
XConfigureWindow(dpy, c->win, CWSibling|CWStackMode, &wc);
wc.sibling = c->win;
}
2007-09-16 11:53:14 +02:00
}
XSync(dpy, False);
2015-11-08 23:11:48 +01:00
while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
run(void)
{
2007-09-16 12:34:08 +02:00
XEvent ev;
/* main event loop */
2007-09-16 12:34:08 +02:00
XSync(dpy, False);
2015-11-08 23:11:48 +01:00
while (running && !XNextEvent(dpy, &ev))
if (handler[ev.type])
2009-07-14 17:01:14 +02:00
handler[ev.type](&ev); /* call handler */
2007-09-16 12:34:08 +02:00
}
void
2015-11-08 23:11:48 +01:00
scan(void)
{
2008-07-16 19:17:42 +02:00
unsigned int i, num;
Window d1, d2, *wins = NULL;
2007-09-15 22:25:27 +02:00
XWindowAttributes wa;
2015-11-08 23:11:48 +01:00
if (XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
for (i = 0; i < num; i++) {
if (!XGetWindowAttributes(dpy, wins[i], &wa)
2008-05-13 15:33:02 +02:00
|| wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
continue;
2015-11-08 23:11:48 +01:00
if (wa.map_state == IsViewable || getstate(wins[i]) == IconicState)
manage(wins[i], &wa);
}
2015-11-08 23:11:48 +01:00
for (i = 0; i < num; i++) { /* now the transients */
if (!XGetWindowAttributes(dpy, wins[i], &wa))
continue;
2015-11-08 23:11:48 +01:00
if (XGetTransientForHint(dpy, wins[i], &d1)
2008-05-13 15:33:02 +02:00
&& (wa.map_state == IsViewable || getstate(wins[i]) == IconicState))
manage(wins[i], &wa);
2007-09-15 22:25:27 +02:00
}
2015-11-08 23:11:48 +01:00
if (wins)
XFree(wins);
2007-09-15 22:25:27 +02:00
}
}
void
2015-11-08 23:11:48 +01:00
sendmon(Client *c, Monitor *m)
{
if (c->mon == m)
return;
2015-11-08 22:48:43 +01:00
unfocus(c, 1);
detach(c);
detachstack(c);
c->mon = m;
c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */
2022-04-23 13:27:36 +02:00
attachaside(c);
attachstack(c);
focus(NULL);
arrange(NULL);
}
void
2015-11-08 23:11:48 +01:00
setclientstate(Client *c, long state)
{
2009-07-02 21:56:23 +02:00
long data[] = { state, None };
2007-09-16 11:53:14 +02:00
XChangeProperty(dpy, c->win, wmatom[WMState], wmatom[WMState], 32,
PropModeReplace, (unsigned char *)data, 2);
2007-09-16 11:53:14 +02:00
}
2015-11-08 22:48:43 +01:00
int
2015-11-08 23:11:48 +01:00
sendevent(Client *c, Atom proto)
{
int n;
Atom *protocols;
2015-11-08 22:48:43 +01:00
int exists = 0;
XEvent ev;
2015-11-08 23:11:48 +01:00
if (XGetWMProtocols(dpy, c->win, &protocols, &n)) {
while (!exists && n--)
exists = protocols[n] == proto;
XFree(protocols);
}
2015-11-08 23:11:48 +01: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 23:11:48 +01: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 20:30:06 +01:00
void
2015-11-08 23:11:48 +01:00
setfullscreen(Client *c, int fullscreen)
{
if (fullscreen && !c->isfullscreen) {
2011-11-06 20:30:06 +01:00
XChangeProperty(dpy, c->win, netatom[NetWMState], XA_ATOM, 32,
PropModeReplace, (unsigned char*)&netatom[NetWMFullscreen], 1);
2015-11-08 22:48:43 +01:00
c->isfullscreen = 1;
2011-11-06 20:30:06 +01:00
c->oldstate = c->isfloating;
c->oldbw = c->bw;
c->bw = 0;
2015-11-08 22:48:43 +01:00
c->isfloating = 1;
2011-11-06 20:30:06 +01:00
resizeclient(c, c->mon->mx, c->mon->my, c->mon->mw, c->mon->mh);
XRaiseWindow(dpy, c->win);
2015-11-08 23:11:48 +01:00
} else if (!fullscreen && c->isfullscreen){
2011-11-06 20:30:06 +01:00
XChangeProperty(dpy, c->win, netatom[NetWMState], XA_ATOM, 32,
PropModeReplace, (unsigned char*)0, 0);
2015-11-08 22:48:43 +01:00
c->isfullscreen = 0;
2011-11-06 20:30:06 +01: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);
}
}
2022-04-23 13:28:58 +02:00
void
setgaps(const Arg *arg)
{
if ((arg->i == 0) || (selmon->gappx + arg->i < 0))
selmon->gappx = 0;
else
selmon->gappx += arg->i;
arrange(selmon);
}
2008-06-19 12:38:53 +02:00
void
2015-11-08 23:11:48 +01:00
setlayout(const Arg *arg)
{
if (!arg || !arg->v || arg->v != selmon->lt[selmon->sellt])
selmon->sellt ^= 1;
2015-11-08 23:11:48 +01:00
if (arg && arg->v)
selmon->lt[selmon->sellt] = (Layout *)arg->v;
strncpy(selmon->ltsymbol, selmon->lt[selmon->sellt]->symbol, sizeof selmon->ltsymbol);
2015-11-08 23:11:48 +01:00
if (selmon->sel)
arrange(selmon);
2008-06-19 12:38:53 +02:00
else
drawbar(selmon);
2008-06-19 12:38:53 +02:00
}
/* arg > 1.0 will set mfact absolutely */
2008-05-19 21:07:12 +02:00
void
2015-11-08 23:11:48 +01:00
setmfact(const Arg *arg)
{
2008-06-11 10:12:06 +02:00
float f;
2008-05-19 21:07:12 +02:00
2015-11-08 23:11:48 +01:00
if (!arg || !selmon->lt[selmon->sellt]->arrange)
2008-05-19 21:07:12 +02:00
return;
f = arg->f < 1.0 ? arg->f + selmon->mfact : arg->f - 1.0;
if (f < 0.05 || f > 0.95)
return;
selmon->mfact = f;
arrange(selmon);
2008-05-19 21:07:12 +02:00
}
void
2015-11-08 23:11:48 +01:00
setup(void)
{
int i;
2007-09-15 22:25:27 +02:00
XSetWindowAttributes wa;
Atom utf8string;
2009-08-13 11:45:59 +02:00
/* clean up any zombies immediately */
sigchld(0);
/* init screen */
screen = DefaultScreen(dpy);
sw = DisplayWidth(dpy, screen);
sh = DisplayHeight(dpy, screen);
root = RootWindow(dpy, screen);
2013-06-16 15:20:29 +02:00
drw = drw_create(dpy, screen, root, sw, sh);
if (!drw_fontset_create(drw, fonts, LENGTH(fonts)))
2016-08-12 14:35:25 +02:00
die("no fonts could be loaded.");
lrpad = drw->fonts->h;
bh = drw->fonts->h + 2;
updategeom();
2007-09-15 22:25:27 +02:00
/* init atoms */
utf8string = XInternAtom(dpy, "UTF8_STRING", False);
2007-09-15 22:25:27 +02: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 16:16:33 +02:00
netatom[NetActiveWindow] = XInternAtom(dpy, "_NET_ACTIVE_WINDOW", False);
2007-09-15 22:25:27 +02: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 13:01:28 +01: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 22:25:27 +02:00
/* init cursors */
2013-06-16 15:20:29 +02: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 18:08:22 +01: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 15:58:08 +02: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 15:20:29 +02: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 22:25:27 +02: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 23:11:48 +01:00
showhide(Client *c)
{
if (!c)
2008-09-06 10:34:49 +02:00
return;
2015-11-08 23:11:48 +01:00
if (ISVISIBLE(c)) {
/* show clients top down */
XMoveWindow(dpy, c->win, c->x, c->y);
2015-11-08 23:11:48 +01:00
if ((!c->mon->lt[c->mon->sellt]->arrange || c->isfloating) && !c->isfullscreen)
2015-11-08 22:48:43 +01:00
resize(c, c->x, c->y, c->w, c->h, 0);
showhide(c->snext);
2015-11-08 23:11:48 +01:00
} else {
/* hide clients bottom up */
showhide(c->snext);
2011-10-30 12:14:34 +01:00
XMoveWindow(dpy, c->win, WIDTH(c) * -2, c->y);
2008-09-06 10:34:49 +02:00
}
}
void
2015-11-08 23:11:48 +01:00
sigchld(int unused)
{
if (signal(SIGCHLD, sigchld) == SIG_ERR)
die("can't install SIGCHLD handler:");
2015-11-08 23:11:48 +01:00
while (0 < waitpid(-1, NULL, WNOHANG));
}
void
2015-11-08 23:11:48 +01:00
spawn(const Arg *arg)
{
if (arg->v == dmenucmd)
dmenumon[0] = '0' + selmon->num;
2015-11-08 23:11:48 +01:00
if (fork() == 0) {
if (dpy)
close(ConnectionNumber(dpy));
setsid();
execvp(((char **)arg->v)[0], (char **)arg->v);
fprintf(stderr, "dwm: execvp %s", ((char **)arg->v)[0]);
perror(" failed");
2011-05-12 16:16:33 +02:00
exit(EXIT_SUCCESS);
2007-09-15 22:25:27 +02:00
}
}
void
2015-11-08 23:11:48 +01:00
tag(const Arg *arg)
{
if (selmon->sel && arg->ui & TAGMASK) {
selmon->sel->tags = arg->ui & TAGMASK;
focus(NULL);
arrange(selmon);
}
2007-09-15 22:25:27 +02:00
}
void
2015-11-08 23:11:48 +01:00
tagmon(const Arg *arg)
{
if (!selmon->sel || !mons->next)
2009-07-02 21:38:56 +02:00
return;
sendmon(selmon->sel, dirtomon(arg->i));
}
2008-05-19 21:07:12 +02:00
void
2015-11-08 23:11:48 +01:00
tile(Monitor *m)
{
2011-10-29 00:45:12 +02:00
unsigned int i, n, h, mw, my, ty;
2008-05-19 21:07:12 +02:00
Client *c;
2015-11-08 23:11:48 +01:00
for (n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
if (n == 0)
2008-05-19 21:07:12 +02:00
return;
2011-10-25 21:40:46 +02:00
2015-11-08 23:11:48 +01:00
if (n > m->nmaster)
2011-10-31 20:09:27 +01:00
mw = m->nmaster ? m->ww * m->mfact : 0;
else
2022-04-23 13:28:58 +02:00
mw = m->ww - m->gappx;
for (i = 0, my = ty = m->gappx, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++)
2015-11-08 23:11:48 +01:00
if (i < m->nmaster) {
2022-04-23 13:28:58 +02:00
h = (m->wh - my) / (MIN(n, m->nmaster) - i) - m->gappx;
resize(c, m->wx + m->gappx, m->wy + my, mw - (2*c->bw) - m->gappx, h - (2*c->bw), 0);
if (my + HEIGHT(c) + m->gappx < m->wh)
my += HEIGHT(c) + m->gappx;
2015-11-08 23:11:48 +01:00
} else {
2022-04-23 13:28:58 +02:00
h = (m->wh - ty) / (n - i) - m->gappx;
resize(c, m->wx + mw + m->gappx, m->wy + ty, m->ww - mw - (2*c->bw) - 2*m->gappx, h - (2*c->bw), 0);
if (ty + HEIGHT(c) + m->gappx < m->wh)
ty += HEIGHT(c) + m->gappx;
2011-10-29 00:45:12 +02:00
}
2008-05-19 21:07:12 +02:00
}
void
2015-11-08 23:11:48 +01:00
togglebar(const Arg *arg)
{
selmon->showbar = !selmon->showbar;
updatebarpos(selmon);
XMoveResizeWindow(dpy, selmon->barwin, selmon->wx, selmon->by, selmon->ww, bh);
arrange(selmon);
}
void
2015-11-08 23:11:48 +01:00
togglefloating(const Arg *arg)
{
if (!selmon->sel)
2007-09-16 11:53:14 +02:00
return;
2015-11-08 23:11:48 +01:00
if (selmon->sel->isfullscreen) /* no support for fullscreen windows */
return;
selmon->sel->isfloating = !selmon->sel->isfloating || selmon->sel->isfixed;
2015-11-08 23:11:48 +01: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 11:53:14 +02:00
}
void
2015-11-08 23:11:48 +01:00
toggletag(const Arg *arg)
{
2009-08-16 09:18:54 +02:00
unsigned int newtags;
2008-06-19 10:11:11 +02:00
2015-11-08 23:11:48 +01:00
if (!selmon->sel)
return;
2009-08-16 09:18:54 +02:00
newtags = selmon->sel->tags ^ (arg->ui & TAGMASK);
2015-11-08 23:11:48 +01:00
if (newtags) {
2009-08-16 09:18:54 +02:00
selmon->sel->tags = newtags;
focus(NULL);
arrange(selmon);
2008-06-19 10:11:11 +02:00
}
2007-09-16 11:53:14 +02:00
}
void
2015-11-08 23:11:48 +01:00
toggleview(const Arg *arg)
{
2009-08-16 09:18:54 +02:00
unsigned int newtagset = selmon->tagset[selmon->seltags] ^ (arg->ui & TAGMASK);
2008-06-19 10:11:11 +02:00
2015-11-08 23:11:48 +01:00
if (newtagset) {
2009-08-16 09:18:54 +02:00
selmon->tagset[selmon->seltags] = newtagset;
focus(NULL);
arrange(selmon);
2008-06-19 10:11:11 +02:00
}
2007-09-16 11:53:14 +02:00
}
void
2015-11-08 23:11:48 +01:00
unfocus(Client *c, int setfocus)
{
if (!c)
return;
2015-11-08 22:48:43 +01:00
grabbuttons(c, 0);
XSetWindowBorder(dpy, c->win, scheme[SchemeNorm][ColBorder].pixel);
2015-11-08 23:11:48 +01:00
if (setfocus) {
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
}
}
void
2015-11-08 23:11:48 +01:00
unmanage(Client *c, int destroyed)
{
Monitor *m = c->mon;
2007-09-16 11:53:14 +02:00
XWindowChanges wc;
2022-04-23 13:31:45 +02:00
if (c->swallowing) {
unswallow(c);
return;
}
Client *s = swallowingclient(c->win);
if (s) {
free(s->swallowing);
s->swallowing = NULL;
arrange(m);
focus(NULL);
return;
}
2007-09-16 11:53:14 +02:00
detach(c);
detachstack(c);
2015-11-08 23:11:48 +01:00
if (!destroyed) {
2009-09-08 14:13:03 +02:00
wc.border_width = c->oldbw;
XGrabServer(dpy); /* avoid race conditions */
2009-09-08 14:13:03 +02:00
XSetErrorHandler(xerrordummy);
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 11:53:14 +02:00
free(c);
2022-04-23 13:31:45 +02:00
if (!s) {
arrange(m);
focus(NULL);
updateclientlist();
}
2007-09-16 11:53:14 +02:00
}
void
2015-11-08 23:11:48 +01:00
unmapnotify(XEvent *e)
{
2007-09-16 11:53:14 +02:00
Client *c;
XUnmapEvent *ev = &e->xunmap;
2015-11-08 23:11:48 +01:00
if ((c = wintoclient(ev->window))) {
if (ev->send_event)
setclientstate(c, WithdrawnState);
else
2015-11-08 22:48:43 +01:00
unmanage(c, 0);
}
2007-09-16 11:53:14 +02:00
}
2009-06-22 15:58:08 +02:00
void
2015-11-08 23:11:48 +01:00
updatebars(void)
{
2009-06-22 15:58:08 +02:00
Monitor *m;
2011-05-12 16:16:33 +02:00
XSetWindowAttributes wa = {
.override_redirect = True,
.background_pixmap = ParentRelative,
.event_mask = ButtonPressMask|ExposureMask
};
XClassHint ch = {"dwm", "dwm"};
2015-11-08 23:11:48 +01:00
for (m = mons; m; m = m->next) {
if (m->barwin)
continue;
2009-06-22 15:58:08 +02: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 15:20:29 +02:00
XDefineCursor(dpy, m->barwin, cursor[CurNormal]->cursor);
2009-06-22 15:58:08 +02:00
XMapRaised(dpy, m->barwin);
XSetClassHint(dpy, m->barwin, &ch);
2009-06-22 15:58:08 +02:00
}
}
void
2015-11-08 23:11:48 +01:00
updatebarpos(Monitor *m)
{
m->wy = m->my;
m->wh = m->mh;
2015-11-08 23:11:48 +01: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 23:11:48 +01:00
} else
m->by = -bh;
}
void
2015-11-08 23:11:48 +01:00
updateclientlist()
{
Client *c;
Monitor *m;
XDeleteProperty(dpy, root, netatom[NetClientList]);
2015-11-08 23:11:48 +01: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 22:48:43 +01:00
int
2015-11-08 23:11:48 +01:00
updategeom(void)
{
2015-11-08 22:48:43 +01:00
int dirty = 0;
2009-06-30 20:39:59 +02:00
#ifdef XINERAMA
2015-11-08 23:11:48 +01:00
if (XineramaIsActive(dpy)) {
int i, j, n, nn;
Client *c;
Monitor *m;
XineramaScreenInfo *info = XineramaQueryScreens(dpy, &nn);
XineramaScreenInfo *unique = NULL;
2015-11-08 23:11:48 +01: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 23:11:48 +01: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;
2022-04-23 13:27:36 +02:00
attachaside(c);
attachstack(c);
}
if (m == selmon)
selmon = mons;
cleanupmon(m);
}
free(unique);
2015-11-08 23:11:48 +01:00
} else
2009-06-30 20:39:59 +02:00
#endif /* XINERAMA */
{ /* default monitor setup */
2015-11-08 23:11:48 +01:00
if (!mons)
mons = createmon();
2015-11-08 23:11:48 +01:00
if (mons->mw != sw || mons->mh != sh) {
2015-11-08 22:48:43 +01:00
dirty = 1;
mons->mw = mons->ww = sw;
mons->mh = mons->wh = sh;
updatebarpos(mons);
}
2009-06-22 15:58:08 +02:00
}
2015-11-08 23:11:48 +01:00
if (dirty) {
selmon = mons;
selmon = wintomon(root);
}
return dirty;
}
void
2015-11-08 23:11:48 +01:00
updatenumlockmask(void)
{
unsigned int i, j;
XModifierKeymap *modmap;
numlockmask = 0;
modmap = XGetModifierMapping(dpy);
2015-11-08 23:11:48 +01: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 23:11:48 +01:00
updatesizehints(Client *c)
{
2007-09-16 11:53:14 +02:00
long msize;
XSizeHints size;
2015-11-08 23:11:48 +01:00
if (!XGetWMNormalHints(dpy, c->win, &size, &msize))
2008-09-07 10:53:59 +02:00
/* size is uninitialized, ensure that size.flags aren't used */
size.flags = PSize;
2015-11-08 23:11:48 +01:00
if (size.flags & PBaseSize) {
2007-09-16 11:53:14 +02:00
c->basew = size.base_width;
c->baseh = size.base_height;
2015-11-08 23:11:48 +01:00
} else if (size.flags & PMinSize) {
2007-09-16 11:53:14 +02:00
c->basew = size.min_width;
c->baseh = size.min_height;
2015-11-08 23:11:48 +01:00
} else
2007-09-16 11:53:14 +02:00
c->basew = c->baseh = 0;
2015-11-08 23:11:48 +01:00
if (size.flags & PResizeInc) {
2007-09-16 11:53:14 +02:00
c->incw = size.width_inc;
c->inch = size.height_inc;
2015-11-08 23:11:48 +01:00
} else
2007-09-16 11:53:14 +02:00
c->incw = c->inch = 0;
2015-11-08 23:11:48 +01:00
if (size.flags & PMaxSize) {
2007-09-16 11:53:14 +02:00
c->maxw = size.max_width;
c->maxh = size.max_height;
2015-11-08 23:11:48 +01:00
} else
2007-09-16 11:53:14 +02:00
c->maxw = c->maxh = 0;
2015-11-08 23:11:48 +01:00
if (size.flags & PMinSize) {
2007-09-16 11:53:14 +02:00
c->minw = size.min_width;
c->minh = size.min_height;
2015-11-08 23:11:48 +01:00
} else if (size.flags & PBaseSize) {
2007-09-16 11:53:14 +02:00
c->minw = size.base_width;
c->minh = size.base_height;
2015-11-08 23:11:48 +01:00
} else
2007-09-16 11:53:14 +02:00
c->minw = c->minh = 0;
2015-11-08 23:11:48 +01: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 23:11:48 +01:00
} else
2008-06-11 10:12:06 +02:00
c->maxa = c->mina = 0.0;
2017-10-10 23:10:45 +02: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 16:56:13 +01:00
c->hintsvalid = 1;
2007-09-16 11:53:14 +02:00
}
void
updatestatus(void)
{
if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
strcpy(stext, "dwm-"VERSION);
drawbar(selmon);
}
void
2015-11-08 23:11:48 +01:00
updatetitle(Client *c)
{
if (!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name))
2008-08-25 11:43:45 +02:00
gettextprop(c->win, XA_WM_NAME, c->name, sizeof c->name);
2015-11-08 23:11:48 +01:00
if (c->name[0] == '\0') /* hack to mark broken clients */
2009-07-12 23:49:06 +02:00
strcpy(c->name, broken);
2007-09-16 11:53:14 +02:00
}
2011-11-02 13:01:28 +01:00
void
2015-11-08 23:11:48 +01:00
updatewindowtype(Client *c)
{
2011-11-06 20:30:06 +01:00
Atom state = getatomprop(c, netatom[NetWMState]);
Atom wtype = getatomprop(c, netatom[NetWMWindowType]);
2011-11-02 13:01:28 +01:00
2015-11-08 23:11:48 +01:00
if (state == netatom[NetWMFullscreen])
2015-11-08 22:48:43 +01:00
setfullscreen(c, 1);
2022-04-23 13:37:21 +02:00
if (wtype == netatom[NetWMWindowTypeDialog]) {
c->iscentered = 1;
2015-11-08 22:48:43 +01:00
c->isfloating = 1;
2022-04-23 13:37:21 +02:00
}
2011-11-02 13:01:28 +01:00
}
void
2015-11-08 23:11:48 +01:00
updatewmhints(Client *c)
{
XWMHints *wmh;
2015-11-08 23:11:48 +01: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 23:11:48 +01:00
} else
2015-11-08 22:48:43 +01:00
c->isurgent = (wmh->flags & XUrgencyHint) ? 1 : 0;
2015-11-08 23:11:48 +01:00
if (wmh->flags & InputHint)
c->neverfocus = !wmh->input;
else
2015-11-08 22:48:43 +01:00
c->neverfocus = 0;
XFree(wmh);
}
}
2008-02-26 23:51:23 +01:00
void
2015-11-08 23:11:48 +01:00
view(const Arg *arg)
{
if ((arg->ui & TAGMASK) == selmon->tagset[selmon->seltags])
2008-07-02 12:06:46 +02:00
return;
selmon->seltags ^= 1; /* toggle sel tagset */
2015-11-08 23:11:48 +01:00
if (arg->ui & TAGMASK)
selmon->tagset[selmon->seltags] = arg->ui & TAGMASK;
focus(NULL);
arrange(selmon);
2008-02-26 23:51:23 +01:00
}
2022-04-23 13:31:45 +02:00
pid_t
winpid(Window w)
{
pid_t result = 0;
#ifdef __linux__
xcb_res_client_id_spec_t spec = {0};
spec.client = w;
spec.mask = XCB_RES_CLIENT_ID_MASK_LOCAL_CLIENT_PID;
xcb_generic_error_t *e = NULL;
xcb_res_query_client_ids_cookie_t c = xcb_res_query_client_ids(xcon, 1, &spec);
xcb_res_query_client_ids_reply_t *r = xcb_res_query_client_ids_reply(xcon, c, &e);
if (!r)
return (pid_t)0;
xcb_res_client_id_value_iterator_t i = xcb_res_query_client_ids_ids_iterator(r);
for (; i.rem; xcb_res_client_id_value_next(&i)) {
spec = i.data->spec;
if (spec.mask & XCB_RES_CLIENT_ID_MASK_LOCAL_CLIENT_PID) {
uint32_t *t = xcb_res_client_id_value_value(i.data);
result = *t;
break;
}
}
free(r);
if (result == (pid_t)-1)
result = 0;
#endif /* __linux__ */
#ifdef __OpenBSD__
Atom type;
int format;
unsigned long len, bytes;
unsigned char *prop;
pid_t ret;
if (XGetWindowProperty(dpy, w, XInternAtom(dpy, "_NET_WM_PID", 0), 0, 1, False, AnyPropertyType, &type, &format, &len, &bytes, &prop) != Success || !prop)
return 0;
ret = *(pid_t*)prop;
XFree(prop);
result = ret;
#endif /* __OpenBSD__ */
return result;
}
pid_t
getparentprocess(pid_t p)
{
unsigned int v = 0;
#ifdef __linux__
FILE *f;
char buf[256];
snprintf(buf, sizeof(buf) - 1, "/proc/%u/stat", (unsigned)p);
if (!(f = fopen(buf, "r")))
return 0;
fscanf(f, "%*u %*s %*c %u", &v);
fclose(f);
#endif /* __linux__*/
#ifdef __OpenBSD__
int n;
kvm_t *kd;
struct kinfo_proc *kp;
kd = kvm_openfiles(NULL, NULL, NULL, KVM_NO_FILES, NULL);
if (!kd)
return 0;
kp = kvm_getprocs(kd, KERN_PROC_PID, p, sizeof(*kp), &n);
v = kp->p_ppid;
#endif /* __OpenBSD__ */
return (pid_t)v;
}
int
isdescprocess(pid_t p, pid_t c)
{
while (p != c && c != 0)
c = getparentprocess(c);
return (int)c;
}
Client *
termforwin(const Client *w)
{
Client *c;
Monitor *m;
if (!w->pid || w->isterminal)
return NULL;
for (m = mons; m; m = m->next) {
for (c = m->clients; c; c = c->next) {
if (c->isterminal && !c->swallowing && c->pid && isdescprocess(c->pid, w->pid))
return c;
}
}
return NULL;
}
Client *
swallowingclient(Window w)
{
Client *c;
Monitor *m;
for (m = mons; m; m = m->next) {
for (c = m->clients; c; c = c->next) {
if (c->swallowing && c->swallowing->win == w)
return c;
}
}
return NULL;
}
2009-06-30 20:39:59 +02:00
Client *
2015-11-08 23:11:48 +01:00
wintoclient(Window w)
{
2009-06-30 20:39:59 +02:00
Client *c;
Monitor *m;
2015-11-08 23:11:48 +01:00
for (m = mons; m; m = m->next)
for (c = m->clients; c; c = c->next)
if (c->win == w)
2009-06-30 20:39:59 +02:00
return c;
return NULL;
}
Monitor *
2015-11-08 23:11:48 +01:00
wintomon(Window w)
{
2009-06-30 20:39:59 +02:00
int x, y;
Client *c;
Monitor *m;
2015-11-08 23:11:48 +01:00
if (w == root && getrootptr(&x, &y))
2011-11-06 20:31:29 +01:00
return recttomon(x, y, 1, 1);
2015-11-08 23:11:48 +01:00
for (m = mons; m; m = m->next)
if (w == m->barwin)
2009-06-30 20:39:59 +02:00
return m;
2015-11-08 23:11:48 +01:00
if ((c = wintoclient(w)))
2009-06-30 20:39:59 +02:00
return c->mon;
2009-07-02 15:42:06 +02:00
return selmon;
2009-06-30 20:39:59 +02:00
}
2007-09-16 11:53:14 +02: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 23:11:48 +01:00
xerror(Display *dpy, XErrorEvent *ee)
{
if (ee->error_code == BadWindow
2007-09-16 11:53:14 +02: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 16:13:36 +02:00
|| (ee->request_code == X_GrabButton && ee->error_code == BadAccess)
2007-09-16 11:53:14 +02: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 11:53:14 +02:00
return xerrorxlib(dpy, ee); /* may call exit */
}
int
2015-11-08 23:11:48 +01:00
xerrordummy(Display *dpy, XErrorEvent *ee)
{
2007-09-16 11:53:14 +02:00
return 0;
}
/* Startup Error handler to check if another window manager
* is already running. */
int
2015-11-08 23:11:48 +01:00
xerrorstart(Display *dpy, XErrorEvent *ee)
{
2016-08-12 14:35:25 +02:00
die("dwm: another window manager is already running");
2007-09-16 11:53:14 +02:00
return -1;
}
2008-05-19 21:07:12 +02:00
void
2015-11-08 23:11:48 +01:00
zoom(const Arg *arg)
{
Client *c = selmon->sel;
2008-05-19 21:07:12 +02:00
2015-11-08 23:11:48 +01:00
if (!selmon->lt[selmon->sellt]->arrange
2009-07-02 19:40:04 +02:00
|| (selmon->sel && selmon->sel->isfloating))
return;
2015-11-08 23:11:48 +01:00
if (c == nexttiled(selmon->clients))
if (!c || !(c = nexttiled(c->next)))
2008-05-19 21:07:12 +02:00
return;
pop(c);
2008-05-19 21:07:12 +02:00
}
2007-09-15 22:25:27 +02:00
int
2015-11-08 23:11:48 +01:00
main(int argc, char *argv[])
{
if (argc == 2 && !strcmp("-v", argv[1]))
2016-08-12 14:35:25 +02:00
die("dwm-"VERSION);
2015-11-08 23:11:48 +01:00
else if (argc != 1)
2016-08-12 14:35:25 +02:00
die("usage: dwm [-v]");
2015-11-08 23:11:48 +01:00
if (!setlocale(LC_CTYPE, "") || !XSupportsLocale())
fputs("warning: no locale support\n", stderr);
2015-11-08 23:11:48 +01:00
if (!(dpy = XOpenDisplay(NULL)))
2016-08-12 14:35:25 +02:00
die("dwm: cannot open display");
2022-04-23 13:31:45 +02:00
if (!(xcon = XGetXCBConnection(dpy)))
die("dwm: cannot get xcb connection\n");
2007-09-16 12:34:08 +02:00
checkotherwm();
2007-09-15 22:25:27 +02:00
setup();
2018-05-25 07:56:27 +02:00
#ifdef __OpenBSD__
2022-04-23 13:31:45 +02:00
if (pledge("stdio rpath proc exec ps", NULL) == -1)
2018-05-25 07:56:27 +02:00
die("pledge");
#endif /* __OpenBSD__ */
2007-09-15 22:25:27 +02:00
scan();
2007-09-16 12:34:08 +02:00
run();
2007-09-15 22:25:27 +02:00
cleanup();
XCloseDisplay(dpy);
2011-05-12 16:16:33 +02:00
return EXIT_SUCCESS;
2007-09-15 22:25:27 +02:00
}