Compare commits
59 Commits
Author | SHA1 | Date | |
---|---|---|---|
e87bed6df2 | |||
4ee05b3294 | |||
e81eb46a78 | |||
f315832f75 | |||
97ced11e53 | |||
4d6c4d36ce | |||
b4d53bf194 | |||
67bc08d1b9 | |||
bcb07de750 | |||
7d7cde0fd6 | |||
6b25d06d7d | |||
cff951c650 | |||
114cc3ec02 | |||
3c4b7672a8 | |||
6de149eb22 | |||
da909dd1e8 | |||
67986e81ee | |||
346bdea946 | |||
05c10c5776 | |||
b2cb925d99 | |||
9fb6502b3b | |||
9eb226ff78 | |||
e34c4eaf61 | |||
9e75bcfc75 | |||
d800ec05ff | |||
bda53ac6ad | |||
4230932563 | |||
f17e898bd1 | |||
886b2088f1 | |||
551d6bb23d | |||
d504005e91 | |||
2511b5c675 | |||
28aba061ec | |||
8e37c78ce3 | |||
ca68975ff8 | |||
529be52fea | |||
ca65478c89 | |||
a1e9362d38 | |||
cbfc69e310 | |||
1d7674bb22 | |||
e6cc22396a | |||
868159fd0a | |||
b597fa4637 | |||
d2d394eccf | |||
438beeabde | |||
281f0981a6 | |||
6ff346bed9 | |||
0925dd588c | |||
6f20315dff | |||
2e68f22118 | |||
8aa860d270 | |||
15abade272 | |||
7ab8c87281 | |||
4ff8f71643 | |||
d22abeee86 | |||
a33150eb4b | |||
fd00b3a186 | |||
e8389a4cc0 | |||
6078d756bc |
3
.hgtags
3
.hgtags
@ -11,3 +11,6 @@ bbc98e77ae89a7c9232a5be0835f60ea00d8036e 1.0
|
|||||||
44a55e6e46bf6c231780b09d919977d6f01083de 1.1
|
44a55e6e46bf6c231780b09d919977d6f01083de 1.1
|
||||||
e3179ce2b90451d2807cd53b589d768412b8666b 1.2
|
e3179ce2b90451d2807cd53b589d768412b8666b 1.2
|
||||||
f5f5cbf016a94b48a8fe9c47f0736e96d166d5d4 1.3
|
f5f5cbf016a94b48a8fe9c47f0736e96d166d5d4 1.3
|
||||||
|
3cff9403766bf83a9fc2a0aef230115d68de2a8e 1.4
|
||||||
|
728c9089b079721b43c3347124639a29baa22a97 1.5
|
||||||
|
ad3fa2d185426c51fd5deceae809770363f8d33c 1.6
|
||||||
|
2
README
2
README
@ -1,5 +1,5 @@
|
|||||||
dwm - dynamic window manager
|
dwm - dynamic window manager
|
||||||
----------------------------
|
============================
|
||||||
dwm is an extremely fast, small, and dynamic window manager for X.
|
dwm is an extremely fast, small, and dynamic window manager for X.
|
||||||
|
|
||||||
|
|
||||||
|
146
client.c
146
client.c
@ -11,11 +11,17 @@
|
|||||||
/* static functions */
|
/* static functions */
|
||||||
|
|
||||||
static void
|
static void
|
||||||
grabbuttons(Client *c, Bool focus)
|
detachstack(Client *c) {
|
||||||
{
|
Client **tc;
|
||||||
|
for(tc=&stack; *tc && *tc != c; tc=&(*tc)->snext);
|
||||||
|
*tc = c->snext;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
grabbuttons(Client *c, Bool focused) {
|
||||||
XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
|
XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
|
||||||
|
|
||||||
if(focus) {
|
if(focused) {
|
||||||
XGrabButton(dpy, Button1, MODKEY, c->win, False, BUTTONMASK,
|
XGrabButton(dpy, Button1, MODKEY, c->win, False, BUTTONMASK,
|
||||||
GrabModeAsync, GrabModeSync, None, None);
|
GrabModeAsync, GrabModeSync, None, None);
|
||||||
XGrabButton(dpy, Button1, MODKEY | LockMask, c->win, False, BUTTONMASK,
|
XGrabButton(dpy, Button1, MODKEY | LockMask, c->win, False, BUTTONMASK,
|
||||||
@ -46,12 +52,10 @@ grabbuttons(Client *c, Bool focus)
|
|||||||
else
|
else
|
||||||
XGrabButton(dpy, AnyButton, AnyModifier, c->win, False, BUTTONMASK,
|
XGrabButton(dpy, AnyButton, AnyModifier, c->win, False, BUTTONMASK,
|
||||||
GrabModeAsync, GrabModeSync, None, None);
|
GrabModeAsync, GrabModeSync, None, None);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
resizetitle(Client *c)
|
resizetitle(Client *c) {
|
||||||
{
|
|
||||||
c->tw = textw(c->name);
|
c->tw = textw(c->name);
|
||||||
if(c->tw > c->w)
|
if(c->tw > c->w)
|
||||||
c->tw = c->w + 2;
|
c->tw = c->w + 2;
|
||||||
@ -61,36 +65,47 @@ resizetitle(Client *c)
|
|||||||
XMoveResizeWindow(dpy, c->twin, c->tx, c->ty, c->tw, c->th);
|
XMoveResizeWindow(dpy, c->twin, c->tx, c->ty, c->tw, c->th);
|
||||||
else
|
else
|
||||||
XMoveResizeWindow(dpy, c->twin, c->tx + 2 * sw, c->ty, c->tw, c->th);
|
XMoveResizeWindow(dpy, c->twin, c->tx + 2 * sw, c->ty, c->tw, c->th);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
xerrordummy(Display *dsply, XErrorEvent *ee)
|
xerrordummy(Display *dsply, XErrorEvent *ee) {
|
||||||
{
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* extern functions */
|
/* extern functions */
|
||||||
|
|
||||||
void
|
void
|
||||||
ban(Client *c)
|
ban(Client *c) {
|
||||||
{
|
|
||||||
XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
|
XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
|
||||||
XMoveWindow(dpy, c->twin, c->tx + 2 * sw, c->ty);
|
XMoveWindow(dpy, c->twin, c->tx + 2 * sw, c->ty);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
focus(Client *c)
|
configure(Client *c) {
|
||||||
{
|
XEvent synev;
|
||||||
|
|
||||||
|
synev.type = ConfigureNotify;
|
||||||
|
synev.xconfigure.display = dpy;
|
||||||
|
synev.xconfigure.event = c->win;
|
||||||
|
synev.xconfigure.window = c->win;
|
||||||
|
synev.xconfigure.x = c->x;
|
||||||
|
synev.xconfigure.y = c->y;
|
||||||
|
synev.xconfigure.width = c->w;
|
||||||
|
synev.xconfigure.height = c->h;
|
||||||
|
synev.xconfigure.border_width = c->border;
|
||||||
|
synev.xconfigure.above = None;
|
||||||
|
XSendEvent(dpy, c->win, True, NoEventMask, &synev);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
focus(Client *c) {
|
||||||
Client *old;
|
Client *old;
|
||||||
|
|
||||||
if(!issel)
|
if(!issel || (c && !isvisible(c)))
|
||||||
return;
|
return;
|
||||||
if(!sel)
|
if(!sel)
|
||||||
sel = c;
|
sel = c;
|
||||||
else if(sel != c) {
|
else if(sel != c) {
|
||||||
if(maximized)
|
|
||||||
togglemax(NULL);
|
|
||||||
old = sel;
|
old = sel;
|
||||||
sel = c;
|
sel = c;
|
||||||
if(old) {
|
if(old) {
|
||||||
@ -99,6 +114,9 @@ focus(Client *c)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(c) {
|
if(c) {
|
||||||
|
detachstack(c);
|
||||||
|
c->snext = stack;
|
||||||
|
stack = c;
|
||||||
grabbuttons(c, True);
|
grabbuttons(c, True);
|
||||||
drawtitle(c);
|
drawtitle(c);
|
||||||
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
|
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
|
||||||
@ -108,8 +126,7 @@ focus(Client *c)
|
|||||||
}
|
}
|
||||||
|
|
||||||
Client *
|
Client *
|
||||||
getclient(Window w)
|
getclient(Window w) {
|
||||||
{
|
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
for(c = clients; c; c = c->next)
|
for(c = clients; c; c = c->next)
|
||||||
@ -119,8 +136,7 @@ getclient(Window w)
|
|||||||
}
|
}
|
||||||
|
|
||||||
Client *
|
Client *
|
||||||
getctitle(Window w)
|
getctitle(Window w) {
|
||||||
{
|
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
for(c = clients; c; c = c->next)
|
for(c = clients; c; c = c->next)
|
||||||
@ -130,8 +146,7 @@ getctitle(Window w)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
gravitate(Client *c, Bool invert)
|
gravitate(Client *c, Bool invert) {
|
||||||
{
|
|
||||||
int dx = 0, dy = 0;
|
int dx = 0, dy = 0;
|
||||||
|
|
||||||
switch(c->grav) {
|
switch(c->grav) {
|
||||||
@ -185,8 +200,7 @@ gravitate(Client *c, Bool invert)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
killclient(Arg *arg)
|
killclient(Arg *arg) {
|
||||||
{
|
|
||||||
if(!sel)
|
if(!sel)
|
||||||
return;
|
return;
|
||||||
if(sel->proto & PROTODELWIN)
|
if(sel->proto & PROTODELWIN)
|
||||||
@ -196,9 +210,7 @@ killclient(Arg *arg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
manage(Window w, XWindowAttributes *wa)
|
manage(Window w, XWindowAttributes *wa) {
|
||||||
{
|
|
||||||
unsigned int i;
|
|
||||||
Client *c;
|
Client *c;
|
||||||
Window trans;
|
Window trans;
|
||||||
XSetWindowAttributes twa;
|
XSetWindowAttributes twa;
|
||||||
@ -213,7 +225,7 @@ manage(Window w, XWindowAttributes *wa)
|
|||||||
c->th = bh;
|
c->th = bh;
|
||||||
|
|
||||||
c->border = 0;
|
c->border = 0;
|
||||||
setsize(c);
|
updatesize(c);
|
||||||
|
|
||||||
if(c->x + c->w + 2 > sw)
|
if(c->x + c->w + 2 > sw)
|
||||||
c->x = sw - c->w - 2;
|
c->x = sw - c->w - 2;
|
||||||
@ -247,9 +259,10 @@ manage(Window w, XWindowAttributes *wa)
|
|||||||
if(clients)
|
if(clients)
|
||||||
clients->prev = c;
|
clients->prev = c;
|
||||||
c->next = clients;
|
c->next = clients;
|
||||||
clients = c;
|
c->snext = stack;
|
||||||
|
stack = clients = c;
|
||||||
|
|
||||||
settitle(c);
|
updatetitle(c);
|
||||||
ban(c);
|
ban(c);
|
||||||
XMapWindow(dpy, c->win);
|
XMapWindow(dpy, c->win);
|
||||||
XMapWindow(dpy, c->twin);
|
XMapWindow(dpy, c->twin);
|
||||||
@ -259,8 +272,7 @@ manage(Window w, XWindowAttributes *wa)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
resize(Client *c, Bool sizehints, Corner sticky)
|
resize(Client *c, Bool sizehints, Corner sticky) {
|
||||||
{
|
|
||||||
int bottom = c->y + c->h;
|
int bottom = c->y + c->h;
|
||||||
int right = c->x + c->w;
|
int right = c->x + c->w;
|
||||||
XWindowChanges wc;
|
XWindowChanges wc;
|
||||||
@ -284,6 +296,16 @@ resize(Client *c, Bool sizehints, Corner sticky)
|
|||||||
if(sticky == BotLeft || sticky == BotRight)
|
if(sticky == BotLeft || sticky == BotRight)
|
||||||
c->y = bottom - c->h;
|
c->y = bottom - c->h;
|
||||||
|
|
||||||
|
/* offscreen appearance fixes */
|
||||||
|
if(c->x + c->w < 0)
|
||||||
|
c->x = 0;
|
||||||
|
if(c->y + c->h < bh)
|
||||||
|
c->y = bh;
|
||||||
|
if(c->x > sw)
|
||||||
|
c->x = sw - c->w;
|
||||||
|
if(c->y > sh)
|
||||||
|
c->y = sh - c->h;
|
||||||
|
|
||||||
resizetitle(c);
|
resizetitle(c);
|
||||||
wc.x = c->x;
|
wc.x = c->x;
|
||||||
wc.y = c->y;
|
wc.y = c->y;
|
||||||
@ -293,13 +315,13 @@ resize(Client *c, Bool sizehints, Corner sticky)
|
|||||||
wc.border_width = 0;
|
wc.border_width = 0;
|
||||||
else
|
else
|
||||||
wc.border_width = 1;
|
wc.border_width = 1;
|
||||||
XConfigureWindow(dpy, c->win, CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
|
XConfigureWindow(dpy, c->win, CWX | CWY | CWWidth | CWHeight | CWBorderWidth, &wc);
|
||||||
|
configure(c);
|
||||||
XSync(dpy, False);
|
XSync(dpy, False);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
setsize(Client *c)
|
updatesize(Client *c) {
|
||||||
{
|
|
||||||
long msize;
|
long msize;
|
||||||
XSizeHints size;
|
XSizeHints size;
|
||||||
|
|
||||||
@ -337,8 +359,7 @@ setsize(Client *c)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
settitle(Client *c)
|
updatetitle(Client *c) {
|
||||||
{
|
|
||||||
char **list = NULL;
|
char **list = NULL;
|
||||||
int n;
|
int n;
|
||||||
XTextProperty name;
|
XTextProperty name;
|
||||||
@ -365,57 +386,18 @@ settitle(Client *c)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
togglemax(Arg *arg)
|
unmanage(Client *c) {
|
||||||
{
|
Client *nc;
|
||||||
int ox, oy, ow, oh;
|
|
||||||
Client *c;
|
|
||||||
XEvent ev;
|
|
||||||
|
|
||||||
if(!sel)
|
/* The server grab construct avoids race conditions. */
|
||||||
return;
|
|
||||||
|
|
||||||
if((maximized = !maximized)) {
|
|
||||||
ox = sel->x;
|
|
||||||
oy = sel->y;
|
|
||||||
ow = sel->w;
|
|
||||||
oh = sel->h;
|
|
||||||
sel->x = sx;
|
|
||||||
sel->y = sy + bh;
|
|
||||||
sel->w = sw - 2;
|
|
||||||
sel->h = sh - 2 - bh;
|
|
||||||
|
|
||||||
restack();
|
|
||||||
for(c = getnext(clients); c; c = getnext(c->next))
|
|
||||||
if(c != sel)
|
|
||||||
ban(c);
|
|
||||||
resize(sel, arrange == dofloat, TopLeft);
|
|
||||||
|
|
||||||
sel->x = ox;
|
|
||||||
sel->y = oy;
|
|
||||||
sel->w = ow;
|
|
||||||
sel->h = oh;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
arrange(NULL);
|
|
||||||
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
unmanage(Client *c)
|
|
||||||
{
|
|
||||||
Client *tc, *fc;
|
|
||||||
Window trans;
|
|
||||||
XGrabServer(dpy);
|
XGrabServer(dpy);
|
||||||
XSetErrorHandler(xerrordummy);
|
XSetErrorHandler(xerrordummy);
|
||||||
|
|
||||||
detach(c);
|
detach(c);
|
||||||
|
detachstack(c);
|
||||||
if(sel == c) {
|
if(sel == c) {
|
||||||
XGetTransientForHint(dpy, c->win, &trans);
|
for(nc = stack; nc && !isvisible(nc); nc = nc->snext);
|
||||||
if(trans && (tc = getclient(trans)) && isvisible(tc))
|
focus(nc);
|
||||||
fc = tc;
|
|
||||||
else
|
|
||||||
fc = getnext(clients);
|
|
||||||
focus(fc);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
|
XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
|
||||||
|
14
config.arg.h
14
config.arg.h
@ -11,15 +11,15 @@ const char *tags[] = { "dev", "work", "net", "fnord", NULL };
|
|||||||
#define TILESYMBOL "[]="
|
#define TILESYMBOL "[]="
|
||||||
|
|
||||||
#define FONT "-*-terminus-medium-*-*-*-12-*-*-*-*-*-iso10646-*"
|
#define FONT "-*-terminus-medium-*-*-*-12-*-*-*-*-*-iso10646-*"
|
||||||
#define SELBGCOLOR "#333366"
|
|
||||||
#define SELFGCOLOR "#eeeeee"
|
|
||||||
#define NORMBGCOLOR "#333333"
|
#define NORMBGCOLOR "#333333"
|
||||||
#define NORMFGCOLOR "#dddddd"
|
#define NORMFGCOLOR "#dddddd"
|
||||||
|
#define SELBGCOLOR "#333366"
|
||||||
|
#define SELFGCOLOR "#eeeeee"
|
||||||
#define STATUSBGCOLOR "#222222"
|
#define STATUSBGCOLOR "#222222"
|
||||||
#define STATUSFGCOLOR "#9999cc"
|
#define STATUSFGCOLOR "#9999cc"
|
||||||
|
|
||||||
#define MODKEY Mod1Mask
|
|
||||||
#define MASTERW 60 /* percent */
|
#define MASTERW 60 /* percent */
|
||||||
|
#define MODKEY Mod1Mask
|
||||||
|
|
||||||
#define KEYS \
|
#define KEYS \
|
||||||
static Key key[] = { \
|
static Key key[] = { \
|
||||||
@ -28,12 +28,12 @@ static Key key[] = { \
|
|||||||
{ .cmd = "exec uxterm -bg '#111111' -fg '#eeeeee' -cr '#eeeeee' +sb -fn '"FONT"'" } }, \
|
{ .cmd = "exec uxterm -bg '#111111' -fg '#eeeeee' -cr '#eeeeee' +sb -fn '"FONT"'" } }, \
|
||||||
{ MODKEY, XK_p, spawn, \
|
{ MODKEY, XK_p, spawn, \
|
||||||
{ .cmd = "exe=\"$(IFS=:; for dir in $PATH; do " \
|
{ .cmd = "exe=\"$(IFS=:; for dir in $PATH; do " \
|
||||||
"for file in \"$dir\"/*; do [ -x \"$file\" ] && echo \"${file##*/}\"; done; " \
|
"for file in \"$dir\"/*; do [ -x \"$file\" ] && echo \"${file##*/}\"; done; done " \
|
||||||
"done | sort -u | dmenu)\" && exec \"$exe\"" } }, \
|
"| sort -u | dmenu -font '"FONT"' -normbg '"NORMBGCOLOR"' -normfg '"NORMFGCOLOR"' " \
|
||||||
|
"-selbg '"SELBGCOLOR"' -selfg '"SELFGCOLOR"')\" && exec $exe" } }, \
|
||||||
{ MODKEY, XK_j, focusnext, { 0 } }, \
|
{ MODKEY, XK_j, focusnext, { 0 } }, \
|
||||||
{ MODKEY, XK_k, focusprev, { 0 } }, \
|
{ MODKEY, XK_k, focusprev, { 0 } }, \
|
||||||
{ MODKEY, XK_Return, zoom, { 0 } }, \
|
{ MODKEY, XK_Return, zoom, { 0 } }, \
|
||||||
{ MODKEY, XK_m, togglemax, { 0 } }, \
|
|
||||||
{ MODKEY, XK_g, resizecol, { .i = 20 } }, \
|
{ MODKEY, XK_g, resizecol, { .i = 20 } }, \
|
||||||
{ MODKEY, XK_s, resizecol, { .i = -20 } }, \
|
{ MODKEY, XK_s, resizecol, { .i = -20 } }, \
|
||||||
{ MODKEY|ShiftMask, XK_1, tag, { .i = 0 } }, \
|
{ MODKEY|ShiftMask, XK_1, tag, { .i = 0 } }, \
|
||||||
@ -61,7 +61,7 @@ static Key key[] = { \
|
|||||||
#define RULES \
|
#define RULES \
|
||||||
static Rule rule[] = { \
|
static Rule rule[] = { \
|
||||||
/* class:instance:title regex tags regex isfloat */ \
|
/* class:instance:title regex tags regex isfloat */ \
|
||||||
{ "Firefox.*", "net", False }, \
|
{ "Firefox.*", "net", True}, \
|
||||||
{ "Gimp.*", NULL, True}, \
|
{ "Gimp.*", NULL, True}, \
|
||||||
{ "MPlayer.*", NULL, True}, \
|
{ "MPlayer.*", NULL, True}, \
|
||||||
{ "Acroread.*", NULL, True}, \
|
{ "Acroread.*", NULL, True}, \
|
||||||
|
@ -11,15 +11,15 @@ const char *tags[] = { "1", "2", "3", "4", "5", NULL };
|
|||||||
#define TILESYMBOL "[]="
|
#define TILESYMBOL "[]="
|
||||||
|
|
||||||
#define FONT "fixed"
|
#define FONT "fixed"
|
||||||
#define SELBGCOLOR "#666699"
|
|
||||||
#define SELFGCOLOR "#eeeeee"
|
|
||||||
#define NORMBGCOLOR "#333366"
|
#define NORMBGCOLOR "#333366"
|
||||||
#define NORMFGCOLOR "#cccccc"
|
#define NORMFGCOLOR "#cccccc"
|
||||||
|
#define SELBGCOLOR "#666699"
|
||||||
|
#define SELFGCOLOR "#eeeeee"
|
||||||
#define STATUSBGCOLOR "#dddddd"
|
#define STATUSBGCOLOR "#dddddd"
|
||||||
#define STATUSFGCOLOR "#222222"
|
#define STATUSFGCOLOR "#222222"
|
||||||
|
|
||||||
#define MODKEY Mod1Mask
|
|
||||||
#define MASTERW 60 /* percent */
|
#define MASTERW 60 /* percent */
|
||||||
|
#define MODKEY Mod1Mask
|
||||||
|
|
||||||
#define KEYS \
|
#define KEYS \
|
||||||
static Key key[] = { \
|
static Key key[] = { \
|
||||||
@ -28,7 +28,6 @@ static Key key[] = { \
|
|||||||
{ MODKEY, XK_Tab, focusnext, { 0 } }, \
|
{ MODKEY, XK_Tab, focusnext, { 0 } }, \
|
||||||
{ MODKEY|ShiftMask, XK_Tab, focusprev, { 0 } }, \
|
{ MODKEY|ShiftMask, XK_Tab, focusprev, { 0 } }, \
|
||||||
{ MODKEY, XK_Return, zoom, { 0 } }, \
|
{ MODKEY, XK_Return, zoom, { 0 } }, \
|
||||||
{ MODKEY, XK_m, togglemax, { 0 } }, \
|
|
||||||
{ MODKEY, XK_g, resizecol, { .i = 20 } }, \
|
{ MODKEY, XK_g, resizecol, { .i = 20 } }, \
|
||||||
{ MODKEY, XK_s, resizecol, { .i = -20 } }, \
|
{ MODKEY, XK_s, resizecol, { .i = -20 } }, \
|
||||||
{ MODKEY|ShiftMask, XK_1, tag, { .i = 0 } }, \
|
{ MODKEY|ShiftMask, XK_1, tag, { .i = 0 } }, \
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# dwm version
|
# dwm version
|
||||||
VERSION = 1.4
|
VERSION = 1.7
|
||||||
|
|
||||||
# Customize below to fit your system
|
# Customize below to fit your system
|
||||||
|
|
||||||
|
29
draw.c
29
draw.c
@ -10,8 +10,7 @@
|
|||||||
/* static */
|
/* static */
|
||||||
|
|
||||||
static unsigned int
|
static unsigned int
|
||||||
textnw(const char *text, unsigned int len)
|
textnw(const char *text, unsigned int len) {
|
||||||
{
|
|
||||||
XRectangle r;
|
XRectangle r;
|
||||||
|
|
||||||
if(dc.font.set) {
|
if(dc.font.set) {
|
||||||
@ -22,8 +21,7 @@ textnw(const char *text, unsigned int len)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
drawtext(const char *text, unsigned long col[ColLast], Bool highlight)
|
drawtext(const char *text, unsigned long col[ColLast], Bool highlight) {
|
||||||
{
|
|
||||||
int x, y, w, h;
|
int x, y, w, h;
|
||||||
static char buf[256];
|
static char buf[256];
|
||||||
unsigned int len, olen;
|
unsigned int len, olen;
|
||||||
@ -82,8 +80,7 @@ drawtext(const char *text, unsigned long col[ColLast], Bool highlight)
|
|||||||
/* extern */
|
/* extern */
|
||||||
|
|
||||||
void
|
void
|
||||||
drawall()
|
drawall(void) {
|
||||||
{
|
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
for(c = clients; c; c = getnext(c->next))
|
for(c = clients; c; c = getnext(c->next))
|
||||||
@ -92,8 +89,7 @@ drawall()
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
drawstatus()
|
drawstatus(void) {
|
||||||
{
|
|
||||||
int i, x;
|
int i, x;
|
||||||
|
|
||||||
dc.x = dc.y = 0;
|
dc.x = dc.y = 0;
|
||||||
@ -108,7 +104,7 @@ drawstatus()
|
|||||||
}
|
}
|
||||||
|
|
||||||
dc.w = bmw;
|
dc.w = bmw;
|
||||||
drawtext(arrange == dotile ? TILESYMBOL : FLOATSYMBOL, dc.status, False);
|
drawtext(arrange == dofloat ? FLOATSYMBOL : TILESYMBOL, dc.status, False);
|
||||||
|
|
||||||
x = dc.x + dc.w;
|
x = dc.x + dc.w;
|
||||||
dc.w = textw(stext);
|
dc.w = textw(stext);
|
||||||
@ -131,8 +127,7 @@ drawstatus()
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
drawtitle(Client *c)
|
drawtitle(Client *c) {
|
||||||
{
|
|
||||||
if(c == sel && issel) {
|
if(c == sel && issel) {
|
||||||
drawstatus();
|
drawstatus();
|
||||||
XUnmapWindow(dpy, c->twin);
|
XUnmapWindow(dpy, c->twin);
|
||||||
@ -150,18 +145,17 @@ drawtitle(Client *c)
|
|||||||
}
|
}
|
||||||
|
|
||||||
unsigned long
|
unsigned long
|
||||||
getcolor(const char *colstr)
|
getcolor(const char *colstr) {
|
||||||
{
|
|
||||||
Colormap cmap = DefaultColormap(dpy, screen);
|
Colormap cmap = DefaultColormap(dpy, screen);
|
||||||
XColor color;
|
XColor color;
|
||||||
|
|
||||||
XAllocNamedColor(dpy, cmap, colstr, &color, &color);
|
if(!XAllocNamedColor(dpy, cmap, colstr, &color, &color))
|
||||||
|
eprint("error, cannot allocate color '%s'\n", colstr);
|
||||||
return color.pixel;
|
return color.pixel;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
setfont(const char *fontstr)
|
setfont(const char *fontstr) {
|
||||||
{
|
|
||||||
char **missing, *def;
|
char **missing, *def;
|
||||||
int i, n;
|
int i, n;
|
||||||
|
|
||||||
@ -211,7 +205,6 @@ setfont(const char *fontstr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
unsigned int
|
unsigned int
|
||||||
textw(const char *text)
|
textw(const char *text) {
|
||||||
{
|
|
||||||
return textnw(text, strlen(text)) + dc.font.height;
|
return textnw(text, strlen(text)) + dc.font.height;
|
||||||
}
|
}
|
||||||
|
137
dwm.1
137
dwm.1
@ -5,10 +5,9 @@ dwm \- dynamic window manager
|
|||||||
.B dwm
|
.B dwm
|
||||||
.RB [ \-v ]
|
.RB [ \-v ]
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
.B dwm
|
dwm is a dynamic window manager for X. It manages windows in tiling and
|
||||||
is a dynamic window manager for X. It manages windows in tiling and floating
|
floating modes. Either mode can be applied dynamically, optimizing the
|
||||||
modes. Either mode can be applied dynamically, optimizing the environment for
|
environment for the application in use and the task performed.
|
||||||
the application in use and the task performed.
|
|
||||||
.P
|
.P
|
||||||
In tiling mode windows are managed in a master and stacking column. The master
|
In tiling mode windows are managed in a master and stacking column. The master
|
||||||
column contains the window which currently needs most attention, whereas the
|
column contains the window which currently needs most attention, whereas the
|
||||||
@ -17,16 +16,14 @@ resized and moved freely. Dialog windows are always managed floating,
|
|||||||
regardless of the mode selected.
|
regardless of the mode selected.
|
||||||
.P
|
.P
|
||||||
Windows are grouped by tags. Each window can be tagged with one or multiple
|
Windows are grouped by tags. Each window can be tagged with one or multiple
|
||||||
tags. Selecting a certain tag for viewing will display all windows with that
|
tags. Selecting certain tags displays all windows with these tags.
|
||||||
tag.
|
|
||||||
.P
|
.P
|
||||||
.B dwm
|
dwm contains a small status bar which displays all available tags, the mode,
|
||||||
contains a small status bar which displays all available tags, the mode, the
|
the title of the focused window, and the text read from standard input. The
|
||||||
title of the focused window, and the text read from standard input. The tags of
|
selected tags are highlighted with a different color, the tags of the focused
|
||||||
the focused window are highlighted with a small point.
|
window are highlighted with a small point.
|
||||||
.P
|
.P
|
||||||
.B dwm
|
dwm draws a 1-pixel border around windows to indicate the focus state.
|
||||||
draws a 1-pixel border around windows to indicate the focus state.
|
|
||||||
Unfocused windows contain a small bar in front of them displaying their title.
|
Unfocused windows contain a small bar in front of them displaying their title.
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
.TP
|
.TP
|
||||||
@ -39,30 +36,17 @@ prints version information to standard output, then exits.
|
|||||||
is read and displayed in the status text area.
|
is read and displayed in the status text area.
|
||||||
.TP
|
.TP
|
||||||
.B Button1
|
.B Button1
|
||||||
click on a tag label views all windows with that
|
click on a tag label to display all windows with that tag, click on the mode
|
||||||
.BR tag ,
|
label toggles between tiled and floating mode.
|
||||||
click on the mode label toggles between
|
|
||||||
.B tiled
|
|
||||||
and
|
|
||||||
.B floating
|
|
||||||
mode.
|
|
||||||
.TP
|
.TP
|
||||||
.B Button3
|
.B Button3
|
||||||
click on a tag label adds/removes all windows with that
|
click on a tag label adds/removes all windows with that tag to/from the view.
|
||||||
.B tag
|
|
||||||
to/from the view.
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Button1
|
.B Mod1-Button1
|
||||||
click on a tag label applies that
|
click on a tag label applies that tag to the focused window.
|
||||||
.B tag
|
|
||||||
to the focused
|
|
||||||
.BR window .
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Button3
|
.B Mod1-Button3
|
||||||
click on a tag label adds/removes that
|
click on a tag label adds/removes that tag to/from the focused window.
|
||||||
.B tag
|
|
||||||
to/from the focused
|
|
||||||
.BR window .
|
|
||||||
.SS Keyboard commands
|
.SS Keyboard commands
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Shift-Return
|
.B Mod1-Shift-Return
|
||||||
@ -70,114 +54,69 @@ Start
|
|||||||
.BR xterm (1).
|
.BR xterm (1).
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Tab
|
.B Mod1-Tab
|
||||||
Focus next
|
Focus next window.
|
||||||
.BR window .
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Shift-Tab
|
.B Mod1-Shift-Tab
|
||||||
Focus previous
|
Focus previous window.
|
||||||
.BR window .
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Return
|
.B Mod1-Return
|
||||||
Zoom current
|
Zooms/cycles current window to/from master column (tiling mode), toggles maximization current window (floating mode).
|
||||||
.B window
|
|
||||||
to the
|
|
||||||
.B master
|
|
||||||
column
|
|
||||||
.RB ( tiling
|
|
||||||
mode only).
|
|
||||||
.TP
|
|
||||||
.B Mod1-m
|
|
||||||
Maximize current
|
|
||||||
.BR window .
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-g
|
.B Mod1-g
|
||||||
Grow current
|
Grow current column (tiling mode only).
|
||||||
.BR column
|
|
||||||
.RB ( tiling
|
|
||||||
mode only).
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-s
|
.B Mod1-s
|
||||||
Shrink current
|
Shrink current column (tiling mode only).
|
||||||
.BR column
|
|
||||||
.RB ( tiling
|
|
||||||
mode only).
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Shift-[1..n]
|
.B Mod1-Shift-[1..n]
|
||||||
Apply
|
Apply
|
||||||
.B nth tag
|
.RB nth
|
||||||
to current
|
tag to current window.
|
||||||
.BR window .
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Control-Shift-[1..n]
|
.B Mod1-Control-Shift-[1..n]
|
||||||
Add/remove
|
Add/remove
|
||||||
.B nth tag
|
.B nth
|
||||||
to/from current
|
tag to/from current window.
|
||||||
.BR window .
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Shift-c
|
.B Mod1-Shift-c
|
||||||
Close focused
|
Close focused window.
|
||||||
.B window.
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-space
|
.B Mod1-space
|
||||||
Toggle between
|
Toggle between tiled and floating mode (affects all windows).
|
||||||
.B tiled
|
|
||||||
and
|
|
||||||
.B floating
|
|
||||||
mode (affects
|
|
||||||
.BR "all windows" ).
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-[1..n]
|
.B Mod1-[1..n]
|
||||||
View all windows with
|
View all windows with
|
||||||
.BR "tag n" .
|
.BR nth
|
||||||
|
tag.
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-0
|
.B Mod1-0
|
||||||
View all windows with any
|
View all windows with any tag.
|
||||||
.BR "tag" .
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Control-[1..n]
|
.B Mod1-Control-[1..n]
|
||||||
Add/remove all windows with
|
Add/remove all windows with
|
||||||
.B tag n
|
.BR nth
|
||||||
to/from the view.
|
tag to/from the view.
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Shift-q
|
.B Mod1-Shift-q
|
||||||
Quit
|
Quit dwm.
|
||||||
.B dwm.
|
|
||||||
.SS Mouse commands
|
.SS Mouse commands
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Button1
|
.B Mod1-Button1
|
||||||
Move current
|
Move current window while dragging (floating mode only).
|
||||||
.B window
|
|
||||||
while dragging
|
|
||||||
.RB ( floating
|
|
||||||
mode only).
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Button2
|
.B Mod1-Button2
|
||||||
Zoom current
|
Zoom current window to the master column (tiling mode only).
|
||||||
.B window
|
|
||||||
to the
|
|
||||||
.B master
|
|
||||||
column
|
|
||||||
.RB ( tiling
|
|
||||||
mode only).
|
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Button3
|
.B Mod1-Button3
|
||||||
Resize current
|
Resize current window while dragging (floating mode only).
|
||||||
.B window
|
|
||||||
while dragging
|
|
||||||
.RB ( floating
|
|
||||||
mode only).
|
|
||||||
.SH CUSTOMIZATION
|
.SH CUSTOMIZATION
|
||||||
.B dwm
|
dwm is customized by creating a custom config.h and (re)compiling the source
|
||||||
is customized by creating a custom config.h and (re)compiling the source
|
|
||||||
code. This keeps it fast, secure and simple.
|
code. This keeps it fast, secure and simple.
|
||||||
.SH CAVEATS
|
.SH CAVEATS
|
||||||
The status bar may display
|
The status bar may display
|
||||||
.B broken pipe
|
.BR "broken pipe"
|
||||||
when
|
when dwm has been started by
|
||||||
.B dwm
|
|
||||||
has been started by
|
|
||||||
.BR xdm (1),
|
.BR xdm (1),
|
||||||
because it closes standard output before executing
|
because it closes standard output before executing dwm.
|
||||||
.BR dwm .
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR dmenu (1)
|
.BR dmenu (1)
|
||||||
|
176
dwm.h
176
dwm.h
@ -1,6 +1,35 @@
|
|||||||
/*
|
/*
|
||||||
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
||||||
* See LICENSE file for license details.
|
* See LICENSE file for 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.
|
||||||
|
*
|
||||||
|
* Calls to fetch an X event from the event queue are blocking. Due reading
|
||||||
|
* status text from standard input, a select()-driven main loop has been
|
||||||
|
* implemented which selects for reads on the X connection and STDIN_FILENO to
|
||||||
|
* handle all data smoothly. 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 global
|
||||||
|
* doubly-linked client list, the focus history is remembered through a global
|
||||||
|
* stack list. Each client contains an array of Bools of the same size as the
|
||||||
|
* global tags array to indicate the tags of a client. For each client dwm
|
||||||
|
* creates a small title window, which is resized whenever the (_NET_)WM_NAME
|
||||||
|
* properties are updated or the client is moved/resized.
|
||||||
|
*
|
||||||
|
* Keys and tagging rules are organized as arrays and defined in the config.h
|
||||||
|
* file. These arrays are kept static in event.o and tag.o respectively,
|
||||||
|
* because no other part of dwm needs access to them. The current mode is
|
||||||
|
* represented by the arrange() function pointer, which wether points to
|
||||||
|
* dofloat() or dotile().
|
||||||
|
*
|
||||||
|
* To understand everything else, start reading main.c:main().
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
@ -11,23 +40,19 @@
|
|||||||
#define MOUSEMASK (BUTTONMASK | PointerMotionMask)
|
#define MOUSEMASK (BUTTONMASK | PointerMotionMask)
|
||||||
#define PROTODELWIN 1
|
#define PROTODELWIN 1
|
||||||
|
|
||||||
|
enum { NetSupported, NetWMName, NetLast }; /* EWMH atoms */
|
||||||
|
enum { WMProtocols, WMDelete, WMLast }; /* default atoms */
|
||||||
|
enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
|
||||||
|
enum { ColFG, ColBG, ColLast }; /* color */
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
TopLeft, TopRight, BotLeft, BotRight
|
||||||
|
} Corner; /* window corners */
|
||||||
|
|
||||||
typedef union {
|
typedef union {
|
||||||
const char *cmd;
|
const char *cmd;
|
||||||
int i;
|
int i;
|
||||||
} Arg;
|
} Arg; /* argument type */
|
||||||
|
|
||||||
/* atoms */
|
|
||||||
enum { NetSupported, NetWMName, NetLast };
|
|
||||||
enum { WMProtocols, WMDelete, WMLast };
|
|
||||||
|
|
||||||
/* cursor */
|
|
||||||
enum { CurNormal, CurResize, CurMove, CurLast };
|
|
||||||
|
|
||||||
/* color */
|
|
||||||
enum { ColFG, ColBG, ColLast };
|
|
||||||
|
|
||||||
/* window corners */
|
|
||||||
typedef enum { TopLeft, TopRight, BotLeft, BotRight } Corner;
|
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int ascent;
|
int ascent;
|
||||||
@ -37,7 +62,7 @@ typedef struct {
|
|||||||
XFontStruct *xfont;
|
XFontStruct *xfont;
|
||||||
} Fnt;
|
} Fnt;
|
||||||
|
|
||||||
typedef struct { /* draw context */
|
typedef struct {
|
||||||
int x, y, w, h;
|
int x, y, w, h;
|
||||||
unsigned long norm[ColLast];
|
unsigned long norm[ColLast];
|
||||||
unsigned long sel[ColLast];
|
unsigned long sel[ColLast];
|
||||||
@ -45,97 +70,100 @@ typedef struct { /* draw context */
|
|||||||
Drawable drawable;
|
Drawable drawable;
|
||||||
Fnt font;
|
Fnt font;
|
||||||
GC gc;
|
GC gc;
|
||||||
} DC;
|
} DC; /* draw context */
|
||||||
|
|
||||||
typedef struct Client Client;
|
typedef struct Client Client;
|
||||||
struct Client {
|
struct Client {
|
||||||
char name[256];
|
char name[256];
|
||||||
int proto;
|
int proto;
|
||||||
int x, y, w, h;
|
int x, y, w, h;
|
||||||
int tx, ty, tw, th; /* title */
|
int rx, ry, rw, rh; /* revert geometry */
|
||||||
|
int tx, ty, tw, th; /* title window geometry */
|
||||||
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
|
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
|
||||||
int grav;
|
int grav;
|
||||||
long flags;
|
long flags;
|
||||||
unsigned int border, weight;
|
unsigned int border, weight;
|
||||||
Bool isfloat;
|
Bool isfloat, ismax;
|
||||||
Bool *tags;
|
Bool *tags;
|
||||||
Client *next;
|
Client *next;
|
||||||
Client *prev;
|
Client *prev;
|
||||||
|
Client *snext;
|
||||||
Window win;
|
Window win;
|
||||||
Window twin;
|
Window twin;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern const char *tags[];
|
extern const char *tags[]; /* all tags */
|
||||||
extern char stext[1024];
|
extern char stext[1024]; /* status text */
|
||||||
extern int bx, by, bw, bh, bmw, mw, screen, sx, sy, sw, sh;
|
extern int bx, by, bw, bh, bmw; /* bar geometry, bar mode label width */
|
||||||
extern unsigned int ntags, numlockmask;
|
extern int mw, screen, sx, sy, sw, sh; /* screen geometry, master width */
|
||||||
extern void (*handler[LASTEvent])(XEvent *);
|
extern unsigned int ntags, numlockmask; /* number of tags, dynamic lock mask */
|
||||||
extern void (*arrange)(Arg *);
|
extern void (*handler[LASTEvent])(XEvent *); /* event handler */
|
||||||
|
extern void (*arrange)(Arg *); /* arrange function, indicates mode */
|
||||||
extern Atom wmatom[WMLast], netatom[NetLast];
|
extern Atom wmatom[WMLast], netatom[NetLast];
|
||||||
extern Bool running, issel, maximized, *seltag;
|
extern Bool running, issel, *seltag; /* seltag is array of Bool */
|
||||||
extern Client *clients, *sel;
|
extern Client *clients, *sel, *stack; /* global client list and stack */
|
||||||
extern Cursor cursor[CurLast];
|
extern Cursor cursor[CurLast];
|
||||||
extern DC dc;
|
extern DC dc; /* global draw context */
|
||||||
extern Display *dpy;
|
extern Display *dpy;
|
||||||
extern Window root, barwin;
|
extern Window root, barwin;
|
||||||
|
|
||||||
/* client.c */
|
/* client.c */
|
||||||
extern void ban(Client *c);
|
extern void ban(Client *c); /* ban c from screen */
|
||||||
extern void focus(Client *c);
|
extern void configure(Client *c); /* send synthetic configure event */
|
||||||
extern Client *getclient(Window w);
|
extern void focus(Client *c); /* focus c, c may be NULL */
|
||||||
extern Client *getctitle(Window w);
|
extern Client *getclient(Window w); /* return client of w */
|
||||||
extern void gravitate(Client *c, Bool invert);
|
extern Client *getctitle(Window w); /* return client of title window */
|
||||||
extern void killclient(Arg *arg);
|
extern void gravitate(Client *c, Bool invert); /* gravitate c */
|
||||||
extern void manage(Window w, XWindowAttributes *wa);
|
extern void killclient(Arg *arg); /* kill c nicely */
|
||||||
extern void resize(Client *c, Bool sizehints, Corner sticky);
|
extern void manage(Window w, XWindowAttributes *wa); /* manage new client */
|
||||||
extern void setsize(Client *c);
|
extern void resize(Client *c, Bool sizehints, Corner sticky); /* resize c*/
|
||||||
extern void settitle(Client *c);
|
extern void updatesize(Client *c); /* update the size structs of c */
|
||||||
extern void togglemax(Arg *arg);
|
extern void updatetitle(Client *c); /* update the name of c */
|
||||||
extern void unmanage(Client *c);
|
extern void unmanage(Client *c); /* destroy c */
|
||||||
|
|
||||||
/* draw.c */
|
/* draw.c */
|
||||||
extern void drawall();
|
extern void drawall(void); /* draw all visible client titles and the bar */
|
||||||
extern void drawstatus();
|
extern void drawstatus(void); /* draw the bar */
|
||||||
extern void drawtitle(Client *c);
|
extern void drawtitle(Client *c); /* draw title of c */
|
||||||
extern unsigned long getcolor(const char *colstr);
|
extern unsigned long getcolor(const char *colstr); /* return color of colstr */
|
||||||
extern void setfont(const char *fontstr);
|
extern void setfont(const char *fontstr); /* set the font for DC */
|
||||||
extern unsigned int textw(const char *text);
|
extern unsigned int textw(const char *text); /* return the width of text in px*/
|
||||||
|
|
||||||
/* event.c */
|
/* event.c */
|
||||||
extern void grabkeys();
|
extern void grabkeys(void); /* grab all keys defined in config.h */
|
||||||
extern void procevent();
|
extern void procevent(void); /* process pending X events */
|
||||||
|
|
||||||
/* main.c */
|
/* main.c */
|
||||||
extern int getproto(Window w);
|
extern int getproto(Window w); /* return protocol mask of WMProtocols property of w */
|
||||||
extern void quit(Arg *arg);
|
extern void quit(Arg *arg); /* quit dwm nicely */
|
||||||
extern void sendevent(Window w, Atom a, long value);
|
extern void sendevent(Window w, Atom a, long value); /* send synthetic event to w */
|
||||||
extern int xerror(Display *dsply, XErrorEvent *ee);
|
extern int xerror(Display *dsply, XErrorEvent *ee); /* dwm's X error handler */
|
||||||
|
|
||||||
/* tag.c */
|
/* tag.c */
|
||||||
extern void initrregs();
|
extern void initrregs(void); /* initialize regexps of rules defined in config.h */
|
||||||
extern Client *getnext(Client *c);
|
extern Client *getnext(Client *c); /* returns next visible client */
|
||||||
extern Client *getprev(Client *c);
|
extern Client *getprev(Client *c); /* returns previous visible client */
|
||||||
extern void settags(Client *c, Client *trans);
|
extern void settags(Client *c, Client *trans); /* sets tags of c */
|
||||||
extern void tag(Arg *arg);
|
extern void tag(Arg *arg); /* tags c with arg's index */
|
||||||
extern void toggletag(Arg *arg);
|
extern void toggletag(Arg *arg); /* toggles c tags with arg's index */
|
||||||
|
|
||||||
/* util.c */
|
/* util.c */
|
||||||
extern void *emallocz(unsigned int size);
|
extern void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */
|
||||||
extern void eprint(const char *errstr, ...);
|
extern void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */
|
||||||
extern void *erealloc(void *ptr, unsigned int size);
|
extern void *erealloc(void *ptr, unsigned int size); /* reallocates memory, exits on error */
|
||||||
extern void spawn(Arg *arg);
|
extern void spawn(Arg *arg); /* forks a new subprocess with to arg's cmd */
|
||||||
|
|
||||||
/* view.c */
|
/* view.c */
|
||||||
extern void detach(Client *c);
|
extern void detach(Client *c); /* detaches c from global client list */
|
||||||
extern void dofloat(Arg *arg);
|
extern void dofloat(Arg *arg); /* arranges all windows floating, arg is ignored */
|
||||||
extern void dotile(Arg *arg);
|
extern void dotile(Arg *arg); /* arranges all windows, arg is ignored */
|
||||||
extern void focusnext(Arg *arg);
|
extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored */
|
||||||
extern void focusprev(Arg *arg);
|
extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */
|
||||||
extern Bool isvisible(Client *c);
|
extern Bool isvisible(Client *c); /* returns True if client is visible */
|
||||||
extern void resizecol(Arg *arg);
|
extern void resizecol(Arg *arg); /* resizes the master width with arg's index value */
|
||||||
extern void restack();
|
extern void restack(void); /* restores z layers of all clients */
|
||||||
extern void togglemode(Arg *arg);
|
extern void togglemode(Arg *arg); /* toggles global arrange function (dotile/dofloat) */
|
||||||
extern void toggleview(Arg *arg);
|
extern void toggleview(Arg *arg); /* toggles the tag with arg's index (in)visible */
|
||||||
extern void view(Arg *arg);
|
extern void view(Arg *arg); /* views the tag with arg's index */
|
||||||
extern void viewall(Arg *arg);
|
extern void viewall(Arg *arg); /* views all tags, arg is ignored */
|
||||||
extern void zoom(Arg *arg);
|
extern void zoom(Arg *arg); /* zooms the focused client to master column, arg is ignored */
|
||||||
|
111
event.c
111
event.c
@ -21,8 +21,7 @@ KEYS
|
|||||||
#define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
|
#define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
|
||||||
|
|
||||||
static void
|
static void
|
||||||
movemouse(Client *c)
|
movemouse(Client *c) {
|
||||||
{
|
|
||||||
int x1, y1, ocx, ocy, di;
|
int x1, y1, ocx, ocy, di;
|
||||||
unsigned int dui;
|
unsigned int dui;
|
||||||
Window dummy;
|
Window dummy;
|
||||||
@ -33,11 +32,15 @@ movemouse(Client *c)
|
|||||||
if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
|
if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
|
||||||
None, cursor[CurMove], CurrentTime) != GrabSuccess)
|
None, cursor[CurMove], CurrentTime) != GrabSuccess)
|
||||||
return;
|
return;
|
||||||
|
c->ismax = False;
|
||||||
XQueryPointer(dpy, root, &dummy, &dummy, &x1, &y1, &di, &di, &dui);
|
XQueryPointer(dpy, root, &dummy, &dummy, &x1, &y1, &di, &di, &dui);
|
||||||
for(;;) {
|
for(;;) {
|
||||||
XMaskEvent(dpy, MOUSEMASK | ExposureMask, &ev);
|
XMaskEvent(dpy, MOUSEMASK | ExposureMask, &ev);
|
||||||
switch (ev.type) {
|
switch (ev.type) {
|
||||||
default: break;
|
case ButtonRelease:
|
||||||
|
resize(c, True, TopLeft);
|
||||||
|
XUngrabPointer(dpy, CurrentTime);
|
||||||
|
return;
|
||||||
case Expose:
|
case Expose:
|
||||||
handler[Expose](&ev);
|
handler[Expose](&ev);
|
||||||
break;
|
break;
|
||||||
@ -47,16 +50,12 @@ movemouse(Client *c)
|
|||||||
c->y = ocy + (ev.xmotion.y - y1);
|
c->y = ocy + (ev.xmotion.y - y1);
|
||||||
resize(c, False, TopLeft);
|
resize(c, False, TopLeft);
|
||||||
break;
|
break;
|
||||||
case ButtonRelease:
|
|
||||||
XUngrabPointer(dpy, CurrentTime);
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
resizemouse(Client *c)
|
resizemouse(Client *c) {
|
||||||
{
|
|
||||||
int ocx, ocy;
|
int ocx, ocy;
|
||||||
int nw, nh;
|
int nw, nh;
|
||||||
Corner sticky;
|
Corner sticky;
|
||||||
@ -67,20 +66,24 @@ resizemouse(Client *c)
|
|||||||
if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
|
if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
|
||||||
None, cursor[CurResize], CurrentTime) != GrabSuccess)
|
None, cursor[CurResize], CurrentTime) != GrabSuccess)
|
||||||
return;
|
return;
|
||||||
|
c->ismax = False;
|
||||||
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w, c->h);
|
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w, c->h);
|
||||||
for(;;) {
|
for(;;) {
|
||||||
XMaskEvent(dpy, MOUSEMASK | ExposureMask, &ev);
|
XMaskEvent(dpy, MOUSEMASK | ExposureMask, &ev);
|
||||||
switch(ev.type) {
|
switch(ev.type) {
|
||||||
default: break;
|
case ButtonRelease:
|
||||||
|
resize(c, True, TopLeft);
|
||||||
|
XUngrabPointer(dpy, CurrentTime);
|
||||||
|
return;
|
||||||
case Expose:
|
case Expose:
|
||||||
handler[Expose](&ev);
|
handler[Expose](&ev);
|
||||||
break;
|
break;
|
||||||
case MotionNotify:
|
case MotionNotify:
|
||||||
XSync(dpy, False);
|
XSync(dpy, False);
|
||||||
if((nw = abs(ocx - ev.xmotion.x)))
|
if((nw = abs(ocx - ev.xmotion.x)))
|
||||||
c->w = abs(ocx - ev.xmotion.x);
|
c->w = nw;
|
||||||
if((nh = abs(ocy - ev.xmotion.y)))
|
if((nh = abs(ocy - ev.xmotion.y)))
|
||||||
c->h = abs(ocy - ev.xmotion.y);
|
c->h = nh;
|
||||||
c->x = (ocx <= ev.xmotion.x) ? ocx : ocx - c->w;
|
c->x = (ocx <= ev.xmotion.x) ? ocx : ocx - c->w;
|
||||||
c->y = (ocy <= ev.xmotion.y) ? ocy : ocy - c->h;
|
c->y = (ocy <= ev.xmotion.y) ? ocy : ocy - c->h;
|
||||||
if(ocx <= ev.xmotion.x)
|
if(ocx <= ev.xmotion.x)
|
||||||
@ -89,16 +92,12 @@ resizemouse(Client *c)
|
|||||||
sticky = (ocy <= ev.xmotion.y) ? TopRight : BotRight;
|
sticky = (ocy <= ev.xmotion.y) ? TopRight : BotRight;
|
||||||
resize(c, True, sticky);
|
resize(c, True, sticky);
|
||||||
break;
|
break;
|
||||||
case ButtonRelease:
|
|
||||||
XUngrabPointer(dpy, CurrentTime);
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
buttonpress(XEvent *e)
|
buttonpress(XEvent *e) {
|
||||||
{
|
|
||||||
int x;
|
int x;
|
||||||
Arg a;
|
Arg a;
|
||||||
Client *c;
|
Client *c;
|
||||||
@ -131,53 +130,31 @@ buttonpress(XEvent *e)
|
|||||||
}
|
}
|
||||||
else if((c = getclient(ev->window))) {
|
else if((c = getclient(ev->window))) {
|
||||||
focus(c);
|
focus(c);
|
||||||
if(maximized || CLEANMASK(ev->state) != MODKEY)
|
if(CLEANMASK(ev->state) != MODKEY)
|
||||||
return;
|
return;
|
||||||
if(ev->button == Button1 && (arrange == dofloat || c->isfloat)) {
|
if(ev->button == Button1 && (arrange == dofloat || c->isfloat)) {
|
||||||
restack(c);
|
restack();
|
||||||
movemouse(c);
|
movemouse(c);
|
||||||
}
|
}
|
||||||
else if(ev->button == Button2)
|
else if(ev->button == Button2)
|
||||||
zoom(NULL);
|
zoom(NULL);
|
||||||
else if(ev->button == Button3 && (arrange == dofloat || c->isfloat)) {
|
else if(ev->button == Button3 && (arrange == dofloat || c->isfloat)) {
|
||||||
restack(c);
|
restack();
|
||||||
resizemouse(c);
|
resizemouse(c);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
synconfig(Client *c, int x, int y, int w, int h, unsigned int border)
|
configurerequest(XEvent *e) {
|
||||||
{
|
|
||||||
XEvent synev;
|
|
||||||
|
|
||||||
synev.type = ConfigureNotify;
|
|
||||||
synev.xconfigure.display = dpy;
|
|
||||||
synev.xconfigure.event = c->win;
|
|
||||||
synev.xconfigure.window = c->win;
|
|
||||||
synev.xconfigure.x = x;
|
|
||||||
synev.xconfigure.y = y;
|
|
||||||
synev.xconfigure.width = w;
|
|
||||||
synev.xconfigure.height = h;
|
|
||||||
synev.xconfigure.border_width = border;
|
|
||||||
synev.xconfigure.above = None;
|
|
||||||
XSendEvent(dpy, c->win, True, NoEventMask, &synev);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
configurerequest(XEvent *e)
|
|
||||||
{
|
|
||||||
unsigned long newmask;
|
unsigned long newmask;
|
||||||
Client *c;
|
Client *c;
|
||||||
XConfigureRequestEvent *ev = &e->xconfigurerequest;
|
XConfigureRequestEvent *ev = &e->xconfigurerequest;
|
||||||
|
XEvent synev;
|
||||||
XWindowChanges wc;
|
XWindowChanges wc;
|
||||||
|
|
||||||
if((c = getclient(ev->window))) {
|
if((c = getclient(ev->window))) {
|
||||||
if((c == sel) && !c->isfloat && (arrange != dofloat) && maximized) {
|
c->ismax = False;
|
||||||
synconfig(c, sx, sy + bh, sw - 2, sh - 2 - bh, ev->border_width);
|
|
||||||
XSync(dpy, False);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
gravitate(c, True);
|
gravitate(c, True);
|
||||||
if(ev->value_mask & CWX)
|
if(ev->value_mask & CWX)
|
||||||
c->x = ev->x;
|
c->x = ev->x;
|
||||||
@ -198,7 +175,7 @@ configurerequest(XEvent *e)
|
|||||||
if(newmask)
|
if(newmask)
|
||||||
XConfigureWindow(dpy, c->win, newmask, &wc);
|
XConfigureWindow(dpy, c->win, newmask, &wc);
|
||||||
else
|
else
|
||||||
synconfig(c, c->x, c->y, c->w, c->h, c->border);
|
configure(c);
|
||||||
XSync(dpy, False);
|
XSync(dpy, False);
|
||||||
if(c->isfloat)
|
if(c->isfloat)
|
||||||
resize(c, False, TopLeft);
|
resize(c, False, TopLeft);
|
||||||
@ -219,8 +196,7 @@ configurerequest(XEvent *e)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
destroynotify(XEvent *e)
|
destroynotify(XEvent *e) {
|
||||||
{
|
|
||||||
Client *c;
|
Client *c;
|
||||||
XDestroyWindowEvent *ev = &e->xdestroywindow;
|
XDestroyWindowEvent *ev = &e->xdestroywindow;
|
||||||
|
|
||||||
@ -229,15 +205,14 @@ destroynotify(XEvent *e)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
enternotify(XEvent *e)
|
enternotify(XEvent *e) {
|
||||||
{
|
|
||||||
Client *c;
|
Client *c;
|
||||||
XCrossingEvent *ev = &e->xcrossing;
|
XCrossingEvent *ev = &e->xcrossing;
|
||||||
|
|
||||||
if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
|
if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if((c = getclient(ev->window)) || (c = getctitle(ev->window)))
|
if(((c = getclient(ev->window)) || (c = getctitle(ev->window))) && isvisible(c))
|
||||||
focus(c);
|
focus(c);
|
||||||
else if(ev->window == root) {
|
else if(ev->window == root) {
|
||||||
issel = True;
|
issel = True;
|
||||||
@ -247,8 +222,7 @@ enternotify(XEvent *e)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
expose(XEvent *e)
|
expose(XEvent *e) {
|
||||||
{
|
|
||||||
Client *c;
|
Client *c;
|
||||||
XExposeEvent *ev = &e->xexpose;
|
XExposeEvent *ev = &e->xexpose;
|
||||||
|
|
||||||
@ -261,8 +235,7 @@ expose(XEvent *e)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
keypress(XEvent *e)
|
keypress(XEvent *e) {
|
||||||
{
|
|
||||||
static unsigned int len = sizeof(key) / sizeof(key[0]);
|
static unsigned int len = sizeof(key) / sizeof(key[0]);
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
KeySym keysym;
|
KeySym keysym;
|
||||||
@ -270,8 +243,8 @@ keypress(XEvent *e)
|
|||||||
|
|
||||||
keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
|
keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
|
||||||
for(i = 0; i < len; i++) {
|
for(i = 0; i < len; i++) {
|
||||||
if(keysym == key[i].keysym &&
|
if(keysym == key[i].keysym
|
||||||
CLEANMASK(key[i].mod) == CLEANMASK(ev->state))
|
&& CLEANMASK(key[i].mod) == CLEANMASK(ev->state))
|
||||||
{
|
{
|
||||||
if(key[i].func)
|
if(key[i].func)
|
||||||
key[i].func(&key[i].arg);
|
key[i].func(&key[i].arg);
|
||||||
@ -281,8 +254,7 @@ keypress(XEvent *e)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
leavenotify(XEvent *e)
|
leavenotify(XEvent *e) {
|
||||||
{
|
|
||||||
XCrossingEvent *ev = &e->xcrossing;
|
XCrossingEvent *ev = &e->xcrossing;
|
||||||
|
|
||||||
if((ev->window == root) && !ev->same_screen) {
|
if((ev->window == root) && !ev->same_screen) {
|
||||||
@ -292,8 +264,7 @@ leavenotify(XEvent *e)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
mappingnotify(XEvent *e)
|
mappingnotify(XEvent *e) {
|
||||||
{
|
|
||||||
XMappingEvent *ev = &e->xmapping;
|
XMappingEvent *ev = &e->xmapping;
|
||||||
|
|
||||||
XRefreshKeyboardMapping(ev);
|
XRefreshKeyboardMapping(ev);
|
||||||
@ -302,8 +273,7 @@ mappingnotify(XEvent *e)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
maprequest(XEvent *e)
|
maprequest(XEvent *e) {
|
||||||
{
|
|
||||||
static XWindowAttributes wa;
|
static XWindowAttributes wa;
|
||||||
XMapRequestEvent *ev = &e->xmaprequest;
|
XMapRequestEvent *ev = &e->xmaprequest;
|
||||||
|
|
||||||
@ -321,8 +291,7 @@ maprequest(XEvent *e)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
propertynotify(XEvent *e)
|
propertynotify(XEvent *e) {
|
||||||
{
|
|
||||||
Client *c;
|
Client *c;
|
||||||
Window trans;
|
Window trans;
|
||||||
XPropertyEvent *ev = &e->xproperty;
|
XPropertyEvent *ev = &e->xproperty;
|
||||||
@ -343,19 +312,18 @@ propertynotify(XEvent *e)
|
|||||||
arrange(NULL);
|
arrange(NULL);
|
||||||
break;
|
break;
|
||||||
case XA_WM_NORMAL_HINTS:
|
case XA_WM_NORMAL_HINTS:
|
||||||
setsize(c);
|
updatesize(c);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
|
if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
|
||||||
settitle(c);
|
updatetitle(c);
|
||||||
drawtitle(c);
|
drawtitle(c);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
unmapnotify(XEvent *e)
|
unmapnotify(XEvent *e) {
|
||||||
{
|
|
||||||
Client *c;
|
Client *c;
|
||||||
XUnmapEvent *ev = &e->xunmap;
|
XUnmapEvent *ev = &e->xunmap;
|
||||||
|
|
||||||
@ -380,8 +348,7 @@ void (*handler[LASTEvent]) (XEvent *) = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
void
|
void
|
||||||
grabkeys()
|
grabkeys(void) {
|
||||||
{
|
|
||||||
static unsigned int len = sizeof(key) / sizeof(key[0]);
|
static unsigned int len = sizeof(key) / sizeof(key[0]);
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
KeyCode code;
|
KeyCode code;
|
||||||
@ -401,8 +368,7 @@ grabkeys()
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
procevent()
|
procevent(void) {
|
||||||
{
|
|
||||||
XEvent ev;
|
XEvent ev;
|
||||||
|
|
||||||
while(XPending(dpy)) {
|
while(XPending(dpy)) {
|
||||||
@ -411,4 +377,3 @@ procevent()
|
|||||||
(handler[ev.type])(&ev); /* call handler */
|
(handler[ev.type])(&ev); /* call handler */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
39
main.c
39
main.c
@ -24,9 +24,9 @@ unsigned int ntags, numlockmask;
|
|||||||
Atom wmatom[WMLast], netatom[NetLast];
|
Atom wmatom[WMLast], netatom[NetLast];
|
||||||
Bool running = True;
|
Bool running = True;
|
||||||
Bool issel = True;
|
Bool issel = True;
|
||||||
Bool maximized = False;
|
|
||||||
Client *clients = NULL;
|
Client *clients = NULL;
|
||||||
Client *sel = NULL;
|
Client *sel = NULL;
|
||||||
|
Client *stack = NULL;
|
||||||
Cursor cursor[CurLast];
|
Cursor cursor[CurLast];
|
||||||
Display *dpy;
|
Display *dpy;
|
||||||
DC dc = {0};
|
DC dc = {0};
|
||||||
@ -38,8 +38,7 @@ static int (*xerrorxlib)(Display *, XErrorEvent *);
|
|||||||
static Bool otherwm, readin;
|
static Bool otherwm, readin;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
cleanup()
|
cleanup(void) {
|
||||||
{
|
|
||||||
close(STDIN_FILENO);
|
close(STDIN_FILENO);
|
||||||
while(sel) {
|
while(sel) {
|
||||||
resize(sel, True, TopLeft);
|
resize(sel, True, TopLeft);
|
||||||
@ -59,8 +58,7 @@ cleanup()
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
scan()
|
scan(void) {
|
||||||
{
|
|
||||||
unsigned int i, num;
|
unsigned int i, num;
|
||||||
Window *wins, d1, d2;
|
Window *wins, d1, d2;
|
||||||
XWindowAttributes wa;
|
XWindowAttributes wa;
|
||||||
@ -81,8 +79,7 @@ scan()
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
setup()
|
setup(void) {
|
||||||
{
|
|
||||||
int i, j;
|
int i, j;
|
||||||
unsigned int mask;
|
unsigned int mask;
|
||||||
Window w;
|
Window w;
|
||||||
@ -111,7 +108,8 @@ setup()
|
|||||||
}
|
}
|
||||||
XFree(modmap);
|
XFree(modmap);
|
||||||
|
|
||||||
wa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask | EnterWindowMask | LeaveWindowMask;
|
wa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask
|
||||||
|
| EnterWindowMask | LeaveWindowMask;
|
||||||
wa.cursor = cursor[CurNormal];
|
wa.cursor = cursor[CurNormal];
|
||||||
XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa);
|
XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa);
|
||||||
|
|
||||||
@ -162,8 +160,7 @@ setup()
|
|||||||
* is already running.
|
* is already running.
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
xerrorstart(Display *dsply, XErrorEvent *ee)
|
xerrorstart(Display *dsply, XErrorEvent *ee) {
|
||||||
{
|
|
||||||
otherwm = True;
|
otherwm = True;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@ -171,8 +168,7 @@ xerrorstart(Display *dsply, XErrorEvent *ee)
|
|||||||
/* extern */
|
/* extern */
|
||||||
|
|
||||||
int
|
int
|
||||||
getproto(Window w)
|
getproto(Window w) {
|
||||||
{
|
|
||||||
int i, format, protos, status;
|
int i, format, protos, status;
|
||||||
unsigned long extra, res;
|
unsigned long extra, res;
|
||||||
Atom *protocols, real;
|
Atom *protocols, real;
|
||||||
@ -190,8 +186,7 @@ getproto(Window w)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
sendevent(Window w, Atom a, long value)
|
sendevent(Window w, Atom a, long value) {
|
||||||
{
|
|
||||||
XEvent e;
|
XEvent e;
|
||||||
|
|
||||||
e.type = ClientMessage;
|
e.type = ClientMessage;
|
||||||
@ -205,35 +200,33 @@ sendevent(Window w, Atom a, long value)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
quit(Arg *arg)
|
quit(Arg *arg) {
|
||||||
{
|
|
||||||
readin = running = False;
|
readin = running = False;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* There's no way to check accesses to destroyed windows, thus those cases are
|
* 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
|
* ignored (especially on UnmapNotify's). Other types of errors call Xlibs
|
||||||
* default error handler, which calls exit().
|
* default error handler, which may call exit.
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
xerror(Display *dpy, XErrorEvent *ee)
|
xerror(Display *dpy, XErrorEvent *ee) {
|
||||||
{
|
|
||||||
if(ee->error_code == BadWindow
|
if(ee->error_code == BadWindow
|
||||||
|| (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
|
|| (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
|
||||||
|| (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
|
|| (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
|
||||||
|| (ee->request_code == X_PolyFillRectangle && 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_PolySegment && ee->error_code == BadDrawable)
|
||||||
|| (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
|
|| (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
|
||||||
|| (ee->request_code == X_GrabKey && ee->error_code == BadAccess))
|
|| (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
|
||||||
|
|| (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
|
||||||
return 0;
|
return 0;
|
||||||
fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
|
fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
|
||||||
ee->request_code, ee->error_code);
|
ee->request_code, ee->error_code);
|
||||||
return xerrorxlib(dpy, ee); /* may call exit() */
|
return xerrorxlib(dpy, ee); /* may call exit */
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
main(int argc, char *argv[])
|
main(int argc, char *argv[]) {
|
||||||
{
|
|
||||||
int r, xfd;
|
int r, xfd;
|
||||||
fd_set rd;
|
fd_set rd;
|
||||||
|
|
||||||
|
18
tag.c
18
tag.c
@ -33,22 +33,19 @@ static unsigned int len = 0;
|
|||||||
/* extern */
|
/* extern */
|
||||||
|
|
||||||
Client *
|
Client *
|
||||||
getnext(Client *c)
|
getnext(Client *c) {
|
||||||
{
|
|
||||||
for(; c && !isvisible(c); c = c->next);
|
for(; c && !isvisible(c); c = c->next);
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
Client *
|
Client *
|
||||||
getprev(Client *c)
|
getprev(Client *c) {
|
||||||
{
|
|
||||||
for(; c && !isvisible(c); c = c->prev);
|
for(; c && !isvisible(c); c = c->prev);
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
initrregs()
|
initrregs(void) {
|
||||||
{
|
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
regex_t *reg;
|
regex_t *reg;
|
||||||
|
|
||||||
@ -76,8 +73,7 @@ initrregs()
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
settags(Client *c, Client *trans)
|
settags(Client *c, Client *trans) {
|
||||||
{
|
|
||||||
char prop[512];
|
char prop[512];
|
||||||
unsigned int i, j;
|
unsigned int i, j;
|
||||||
regmatch_t tmp;
|
regmatch_t tmp;
|
||||||
@ -114,8 +110,7 @@ settags(Client *c, Client *trans)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
tag(Arg *arg)
|
tag(Arg *arg) {
|
||||||
{
|
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
if(!sel)
|
if(!sel)
|
||||||
@ -129,8 +124,7 @@ tag(Arg *arg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
toggletag(Arg *arg)
|
toggletag(Arg *arg) {
|
||||||
{
|
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
if(!sel)
|
if(!sel)
|
||||||
|
15
util.c
15
util.c
@ -12,8 +12,7 @@
|
|||||||
/* extern */
|
/* extern */
|
||||||
|
|
||||||
void *
|
void *
|
||||||
emallocz(unsigned int size)
|
emallocz(unsigned int size) {
|
||||||
{
|
|
||||||
void *res = calloc(1, size);
|
void *res = calloc(1, size);
|
||||||
|
|
||||||
if(!res)
|
if(!res)
|
||||||
@ -22,8 +21,7 @@ emallocz(unsigned int size)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
eprint(const char *errstr, ...)
|
eprint(const char *errstr, ...) {
|
||||||
{
|
|
||||||
va_list ap;
|
va_list ap;
|
||||||
|
|
||||||
va_start(ap, errstr);
|
va_start(ap, errstr);
|
||||||
@ -33,8 +31,7 @@ eprint(const char *errstr, ...)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void *
|
void *
|
||||||
erealloc(void *ptr, unsigned int size)
|
erealloc(void *ptr, unsigned int size) {
|
||||||
{
|
|
||||||
void *res = realloc(ptr, size);
|
void *res = realloc(ptr, size);
|
||||||
if(!res)
|
if(!res)
|
||||||
eprint("fatal: could not malloc() %u bytes\n", size);
|
eprint("fatal: could not malloc() %u bytes\n", size);
|
||||||
@ -42,8 +39,7 @@ erealloc(void *ptr, unsigned int size)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
spawn(Arg *arg)
|
spawn(Arg *arg) {
|
||||||
{
|
|
||||||
static char *shell = NULL;
|
static char *shell = NULL;
|
||||||
|
|
||||||
if(!shell && !(shell = getenv("SHELL")))
|
if(!shell && !(shell = getenv("SHELL")))
|
||||||
@ -51,7 +47,8 @@ spawn(Arg *arg)
|
|||||||
|
|
||||||
if(!arg->cmd)
|
if(!arg->cmd)
|
||||||
return;
|
return;
|
||||||
/* the double-fork construct avoids zombie processes */
|
/* The double-fork construct avoids zombie processes and keeps the code
|
||||||
|
* clean from stupid signal handlers. */
|
||||||
if(fork() == 0) {
|
if(fork() == 0) {
|
||||||
if(fork() == 0) {
|
if(fork() == 0) {
|
||||||
if(dpy)
|
if(dpy)
|
||||||
|
109
view.c
109
view.c
@ -3,25 +3,29 @@
|
|||||||
* See LICENSE file for license details.
|
* See LICENSE file for license details.
|
||||||
*/
|
*/
|
||||||
#include "dwm.h"
|
#include "dwm.h"
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
/* static */
|
/* static */
|
||||||
|
|
||||||
static Client *
|
static Client *
|
||||||
minclient()
|
minclient(void) {
|
||||||
{
|
|
||||||
Client *c, *min;
|
Client *c, *min;
|
||||||
|
|
||||||
|
if((clients && clients->isfloat) || arrange == dofloat)
|
||||||
|
return clients; /* don't touch floating order */
|
||||||
for(min = c = clients; c; c = c->next)
|
for(min = c = clients; c; c = c->next)
|
||||||
if(c->weight < min->weight)
|
if(c->weight < min->weight)
|
||||||
min = c;
|
min = c;
|
||||||
return min;
|
return min;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static Client *
|
||||||
|
nexttiled(Client *c) {
|
||||||
|
for(c = getnext(c); c && c->isfloat; c = getnext(c->next));
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
reorder()
|
reorder(void) {
|
||||||
{
|
|
||||||
Client *c, *newclients, *tail;
|
Client *c, *newclients, *tail;
|
||||||
|
|
||||||
newclients = tail = NULL;
|
newclients = tail = NULL;
|
||||||
@ -38,11 +42,24 @@ reorder()
|
|||||||
clients = newclients;
|
clients = newclients;
|
||||||
}
|
}
|
||||||
|
|
||||||
static Client *
|
static void
|
||||||
nexttiled(Client *c)
|
togglemax(Client *c)
|
||||||
{
|
{
|
||||||
for(c = getnext(c); c && c->isfloat; c = getnext(c->next));
|
XEvent ev;
|
||||||
return c;
|
if((c->ismax = !c->ismax)) {
|
||||||
|
c->rx = c->x; c->x = sx;
|
||||||
|
c->ry = c->y; c->y = bh;
|
||||||
|
c->rw = c->w; c->w = sw;
|
||||||
|
c->rh = c->h; c->h = sh - bh - 2;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
c->x = c->rx;
|
||||||
|
c->y = c->ry;
|
||||||
|
c->w = c->rw;
|
||||||
|
c->h = c->rh;
|
||||||
|
}
|
||||||
|
resize(c, True, TopLeft);
|
||||||
|
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* extern */
|
/* extern */
|
||||||
@ -50,8 +67,7 @@ nexttiled(Client *c)
|
|||||||
void (*arrange)(Arg *) = DEFMODE;
|
void (*arrange)(Arg *) = DEFMODE;
|
||||||
|
|
||||||
void
|
void
|
||||||
detach(Client *c)
|
detach(Client *c) {
|
||||||
{
|
|
||||||
if(c->prev)
|
if(c->prev)
|
||||||
c->prev->next = c->next;
|
c->prev->next = c->next;
|
||||||
if(c->next)
|
if(c->next)
|
||||||
@ -62,12 +78,9 @@ detach(Client *c)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
dofloat(Arg *arg)
|
dofloat(Arg *arg) {
|
||||||
{
|
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
maximized = False;
|
|
||||||
|
|
||||||
for(c = clients; c; c = c->next) {
|
for(c = clients; c; c = c->next) {
|
||||||
if(isvisible(c)) {
|
if(isvisible(c)) {
|
||||||
resize(c, True, TopLeft);
|
resize(c, True, TopLeft);
|
||||||
@ -75,22 +88,20 @@ dofloat(Arg *arg)
|
|||||||
else
|
else
|
||||||
ban(c);
|
ban(c);
|
||||||
}
|
}
|
||||||
if(!sel || !isvisible(sel))
|
if(!sel || !isvisible(sel)) {
|
||||||
focus(getnext(clients));
|
for(c = stack; c && !isvisible(c); c = c->snext);
|
||||||
|
focus(c);
|
||||||
|
}
|
||||||
restack();
|
restack();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
dotile(Arg *arg)
|
dotile(Arg *arg) {
|
||||||
{
|
|
||||||
int h, i, n, w;
|
int h, i, n, w;
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
maximized = False;
|
|
||||||
|
|
||||||
w = sw - mw;
|
w = sw - mw;
|
||||||
for(n = 0, c = clients; c; c = c->next)
|
for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next))
|
||||||
if(isvisible(c) && !c->isfloat)
|
|
||||||
n++;
|
n++;
|
||||||
|
|
||||||
if(n > 1)
|
if(n > 1)
|
||||||
@ -104,6 +115,7 @@ dotile(Arg *arg)
|
|||||||
resize(c, True, TopLeft);
|
resize(c, True, TopLeft);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
c->ismax = False;
|
||||||
if(n == 1) {
|
if(n == 1) {
|
||||||
c->x = sx;
|
c->x = sx;
|
||||||
c->y = sy + bh;
|
c->y = sy + bh;
|
||||||
@ -137,14 +149,15 @@ dotile(Arg *arg)
|
|||||||
else
|
else
|
||||||
ban(c);
|
ban(c);
|
||||||
}
|
}
|
||||||
if(!sel || !isvisible(sel))
|
if(!sel || !isvisible(sel)) {
|
||||||
focus(getnext(clients));
|
for(c = stack; c && !isvisible(c); c = c->snext);
|
||||||
|
focus(c);
|
||||||
|
}
|
||||||
restack();
|
restack();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
focusnext(Arg *arg)
|
focusnext(Arg *arg) {
|
||||||
{
|
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
if(!sel)
|
if(!sel)
|
||||||
@ -159,8 +172,7 @@ focusnext(Arg *arg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
focusprev(Arg *arg)
|
focusprev(Arg *arg) {
|
||||||
{
|
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
if(!sel)
|
if(!sel)
|
||||||
@ -177,8 +189,7 @@ focusprev(Arg *arg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
Bool
|
Bool
|
||||||
isvisible(Client *c)
|
isvisible(Client *c) {
|
||||||
{
|
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
for(i = 0; i < ntags; i++)
|
for(i = 0; i < ntags; i++)
|
||||||
@ -188,15 +199,14 @@ isvisible(Client *c)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
resizecol(Arg *arg)
|
resizecol(Arg *arg) {
|
||||||
{
|
|
||||||
unsigned int n;
|
unsigned int n;
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
for(n = 0, c = clients; c; c = c->next)
|
for(n = 0, c = clients; c; c = c->next)
|
||||||
if(isvisible(c) && !c->isfloat)
|
if(isvisible(c) && !c->isfloat)
|
||||||
n++;
|
n++;
|
||||||
if(!sel || sel->isfloat || n < 2 || (arrange != dotile) || maximized)
|
if(!sel || sel->isfloat || n < 2 || (arrange == dofloat))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if(sel == getnext(clients)) {
|
if(sel == getnext(clients)) {
|
||||||
@ -213,8 +223,7 @@ resizecol(Arg *arg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
restack()
|
restack(void) {
|
||||||
{
|
|
||||||
Client *c;
|
Client *c;
|
||||||
XEvent ev;
|
XEvent ev;
|
||||||
|
|
||||||
@ -237,8 +246,7 @@ restack()
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
togglemode(Arg *arg)
|
togglemode(Arg *arg) {
|
||||||
{
|
|
||||||
arrange = (arrange == dofloat) ? dotile : dofloat;
|
arrange = (arrange == dofloat) ? dotile : dofloat;
|
||||||
if(sel)
|
if(sel)
|
||||||
arrange(NULL);
|
arrange(NULL);
|
||||||
@ -247,8 +255,7 @@ togglemode(Arg *arg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
toggleview(Arg *arg)
|
toggleview(Arg *arg) {
|
||||||
{
|
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
seltag[arg->i] = !seltag[arg->i];
|
seltag[arg->i] = !seltag[arg->i];
|
||||||
@ -260,8 +267,7 @@ toggleview(Arg *arg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
view(Arg *arg)
|
view(Arg *arg) {
|
||||||
{
|
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
for(i = 0; i < ntags; i++)
|
for(i = 0; i < ntags; i++)
|
||||||
@ -272,8 +278,7 @@ view(Arg *arg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
viewall(Arg *arg)
|
viewall(Arg *arg) {
|
||||||
{
|
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
for(i = 0; i < ntags; i++)
|
for(i = 0; i < ntags; i++)
|
||||||
@ -283,23 +288,31 @@ viewall(Arg *arg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
zoom(Arg *arg)
|
zoom(Arg *arg) {
|
||||||
{
|
|
||||||
unsigned int n;
|
unsigned int n;
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
|
if(!sel)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if(sel->isfloat || (arrange == dofloat)) {
|
||||||
|
togglemax(sel);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
for(n = 0, c = clients; c; c = c->next)
|
for(n = 0, c = clients; c; c = c->next)
|
||||||
if(isvisible(c) && !c->isfloat)
|
if(isvisible(c) && !c->isfloat)
|
||||||
n++;
|
n++;
|
||||||
if(!sel || sel->isfloat || n < 2 || (arrange != dotile) || maximized)
|
if(n < 2 || (arrange == dofloat))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if((c = sel) == nexttiled(clients))
|
if((c = sel) == nexttiled(clients))
|
||||||
if(!(c = nexttiled(c->next)))
|
if(!(c = nexttiled(c->next)))
|
||||||
return;
|
return;
|
||||||
detach(c);
|
detach(c);
|
||||||
c->next = clients;
|
if(clients)
|
||||||
clients->prev = c;
|
clients->prev = c;
|
||||||
|
c->next = clients;
|
||||||
clients = c;
|
clients = c;
|
||||||
focus(c);
|
focus(c);
|
||||||
arrange(NULL);
|
arrange(NULL);
|
||||||
|
Reference in New Issue
Block a user