untested monocle
This commit is contained in:
parent
79ecbeca7e
commit
12ea925076
15
config.def.h
15
config.def.h
@ -32,8 +32,9 @@ static Bool resizehints = True; /* False means respect size hints in tiled resiz
|
|||||||
|
|
||||||
static Layout layouts[] = {
|
static Layout layouts[] = {
|
||||||
/* symbol arrange function */
|
/* symbol arrange function */
|
||||||
{ "[]=", tile }, /* first entry is default */
|
{ "[]=", tile }, /* first entry is default */
|
||||||
{ "><>", NULL }, /* no layout function means floating behavior */
|
{ "><>", NULL }, /* no layout function means floating behavior */
|
||||||
|
{ "[M]", monocle }, /* first entry is default */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* key definitions */
|
/* key definitions */
|
||||||
@ -60,11 +61,13 @@ static Key keys[] = {
|
|||||||
{ MODKEY, XK_k, focusstack, {.i = -1 } },
|
{ MODKEY, XK_k, focusstack, {.i = -1 } },
|
||||||
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
|
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
|
||||||
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
|
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
|
||||||
{ MODKEY, XK_m, togglemax, {0} },
|
|
||||||
{ MODKEY, XK_Return, zoom, {0} },
|
{ MODKEY, XK_Return, zoom, {0} },
|
||||||
{ MODKEY, XK_Tab, view, {0} },
|
{ MODKEY, XK_Tab, view, {0} },
|
||||||
{ MODKEY|ShiftMask, XK_c, killclient, {0} },
|
{ MODKEY|ShiftMask, XK_c, killclient, {0} },
|
||||||
{ MODKEY, XK_space, togglelayout, {0} },
|
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
|
||||||
|
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
|
||||||
|
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
|
||||||
|
{ MODKEY, XK_space, setlayout, {0} },
|
||||||
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
|
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
|
||||||
{ MODKEY, XK_0, view, {.ui = ~0 } },
|
{ MODKEY, XK_0, view, {.ui = ~0 } },
|
||||||
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
|
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
|
||||||
@ -91,8 +94,8 @@ static Key keys[] = {
|
|||||||
* ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
|
* ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
|
||||||
static Button buttons[] = {
|
static Button buttons[] = {
|
||||||
/* click event mask button function argument */
|
/* click event mask button function argument */
|
||||||
{ ClkLtSymbol, 0, Button1, togglelayout, {0} },
|
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
|
||||||
{ ClkLtSymbol, 0, Button3, togglemax, {0} },
|
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
|
||||||
{ ClkWinTitle, 0, Button2, zoom, {0} },
|
{ ClkWinTitle, 0, Button2, zoom, {0} },
|
||||||
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
|
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
|
||||||
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
|
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# dwm version
|
# dwm version
|
||||||
VERSION = 5.0.1
|
VERSION = 5.1
|
||||||
|
|
||||||
# Customize below to fit your system
|
# Customize below to fit your system
|
||||||
|
|
||||||
|
11
dwm.1
11
dwm.1
@ -60,8 +60,17 @@ Start
|
|||||||
.B Mod1\-b
|
.B Mod1\-b
|
||||||
Toggles bar on and off.
|
Toggles bar on and off.
|
||||||
.TP
|
.TP
|
||||||
|
.B Mod1\-t
|
||||||
|
Sets tiled layout.
|
||||||
|
.TP
|
||||||
|
.B Mod1\-f
|
||||||
|
Sets floating layout.
|
||||||
|
.TP
|
||||||
|
.B Mod1\-f
|
||||||
|
Sets monocle layout.
|
||||||
|
.TP
|
||||||
.B Mod1\-space
|
.B Mod1\-space
|
||||||
Toggles between layouts.
|
Toggles between current and previous layout.
|
||||||
.TP
|
.TP
|
||||||
.B Mod1\-j
|
.B Mod1\-j
|
||||||
Focus next window.
|
Focus next window.
|
||||||
|
72
dwm.c
72
dwm.c
@ -89,7 +89,7 @@ struct Client {
|
|||||||
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
|
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
|
||||||
int bw, oldbw;
|
int bw, oldbw;
|
||||||
uint tags;
|
uint tags;
|
||||||
Bool isbanned, isfixed, isfloating, ismoved, isurgent;
|
Bool isbanned, isfixed, isfloating, isurgent;
|
||||||
Client *next;
|
Client *next;
|
||||||
Client *snext;
|
Client *snext;
|
||||||
Window win;
|
Window win;
|
||||||
@ -168,6 +168,7 @@ static void killclient(const Arg *arg);
|
|||||||
static void manage(Window w, XWindowAttributes *wa);
|
static void manage(Window w, XWindowAttributes *wa);
|
||||||
static void mappingnotify(XEvent *e);
|
static void mappingnotify(XEvent *e);
|
||||||
static void maprequest(XEvent *e);
|
static void maprequest(XEvent *e);
|
||||||
|
static void monocle(void);
|
||||||
static void movemouse(const Arg *arg);
|
static void movemouse(const Arg *arg);
|
||||||
static Client *nexttiled(Client *c);
|
static Client *nexttiled(Client *c);
|
||||||
static void propertynotify(XEvent *e);
|
static void propertynotify(XEvent *e);
|
||||||
@ -178,6 +179,7 @@ static void restack(void);
|
|||||||
static void run(void);
|
static void run(void);
|
||||||
static void scan(void);
|
static void scan(void);
|
||||||
static void setclientstate(Client *c, long state);
|
static void setclientstate(Client *c, long state);
|
||||||
|
static void setlayout(const Arg *arg);
|
||||||
static void setmfact(const Arg *arg);
|
static void setmfact(const Arg *arg);
|
||||||
static void setup(void);
|
static void setup(void);
|
||||||
static void spawn(const Arg *arg);
|
static void spawn(const Arg *arg);
|
||||||
@ -186,8 +188,6 @@ static int textnw(const char *text, uint len);
|
|||||||
static void tile(void);
|
static void tile(void);
|
||||||
static void togglebar(const Arg *arg);
|
static void togglebar(const Arg *arg);
|
||||||
static void togglefloating(const Arg *arg);
|
static void togglefloating(const Arg *arg);
|
||||||
static void togglelayout(const Arg *arg);
|
|
||||||
static void togglemax(const Arg *arg);
|
|
||||||
static void toggletag(const Arg *arg);
|
static void toggletag(const Arg *arg);
|
||||||
static void toggleview(const Arg *arg);
|
static void toggleview(const Arg *arg);
|
||||||
static void unmanage(Client *c);
|
static void unmanage(Client *c);
|
||||||
@ -225,7 +225,6 @@ static void (*handler[LASTEvent]) (XEvent *) = {
|
|||||||
[UnmapNotify] = unmapnotify
|
[UnmapNotify] = unmapnotify
|
||||||
};
|
};
|
||||||
static Atom wmatom[WMLast], netatom[NetLast];
|
static Atom wmatom[WMLast], netatom[NetLast];
|
||||||
static Bool ismax = False;
|
|
||||||
static Bool otherwm, readin;
|
static Bool otherwm, readin;
|
||||||
static Bool running = True;
|
static Bool running = True;
|
||||||
static uint tagset[] = {1, 1}; /* after start, first tag is selected */
|
static uint tagset[] = {1, 1}; /* after start, first tag is selected */
|
||||||
@ -275,21 +274,17 @@ arrange(void) {
|
|||||||
|
|
||||||
for(c = clients; c; c = c->next)
|
for(c = clients; c; c = c->next)
|
||||||
if(c->tags & tagset[seltags]) { /* is visible */
|
if(c->tags & tagset[seltags]) { /* is visible */
|
||||||
if(ismax && !c->isfixed) {
|
if(!lt->arrange || c->isfloating)
|
||||||
XMoveResizeWindow(dpy, c->win, wx, wy, ww - 2 * c->bw, wh - 2 * c->bw);
|
|
||||||
c->ismoved = True;
|
|
||||||
}
|
|
||||||
else if(!lt->arrange || c->isfloating)
|
|
||||||
resize(c, c->x, c->y, c->w, c->h, True);
|
resize(c, c->x, c->y, c->w, c->h, True);
|
||||||
c->isbanned = False;
|
c->isbanned = False;
|
||||||
}
|
}
|
||||||
else if(!c->isbanned) {
|
else if(!c->isbanned) {
|
||||||
XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
|
XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
|
||||||
c->isbanned = c->ismoved = True;
|
c->isbanned = True;
|
||||||
}
|
}
|
||||||
|
|
||||||
focus(NULL);
|
focus(NULL);
|
||||||
if(lt->arrange && !ismax)
|
if(lt->arrange)
|
||||||
lt->arrange();
|
lt->arrange();
|
||||||
restack();
|
restack();
|
||||||
}
|
}
|
||||||
@ -418,8 +413,6 @@ configurerequest(XEvent *e) {
|
|||||||
if((c = getclient(ev->window))) {
|
if((c = getclient(ev->window))) {
|
||||||
if(ev->value_mask & CWBorderWidth)
|
if(ev->value_mask & CWBorderWidth)
|
||||||
c->bw = ev->border_width;
|
c->bw = ev->border_width;
|
||||||
if(ismax && !c->isbanned && !c->isfixed)
|
|
||||||
XMoveResizeWindow(dpy, c->win, wx, wy, ww - 2 * c->bw, wh + 2 * c->bw);
|
|
||||||
else if(c->isfloating || !lt->arrange) {
|
else if(c->isfloating || !lt->arrange) {
|
||||||
if(ev->value_mask & CWX)
|
if(ev->value_mask & CWX)
|
||||||
c->x = sx + ev->x;
|
c->x = sx + ev->x;
|
||||||
@ -507,7 +500,7 @@ drawbar(void) {
|
|||||||
}
|
}
|
||||||
if(blw > 0) {
|
if(blw > 0) {
|
||||||
dc.w = blw;
|
dc.w = blw;
|
||||||
drawtext(lt->symbol, dc.norm, ismax);
|
drawtext(lt->symbol, dc.norm, False);
|
||||||
x = dc.x + dc.w;
|
x = dc.x + dc.w;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -966,6 +959,14 @@ maprequest(XEvent *e) {
|
|||||||
manage(ev->window, &wa);
|
manage(ev->window, &wa);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
monocle(void) {
|
||||||
|
Client *c;
|
||||||
|
|
||||||
|
for(c = nexttiled(clients); c; c = nexttiled(c->next))
|
||||||
|
resize(c, wx, wy, ww, wh, resizehints);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
movemouse(const Arg *arg) {
|
movemouse(const Arg *arg) {
|
||||||
int x1, y1, ocx, ocy, di, nx, ny;
|
int x1, y1, ocx, ocy, di, nx, ny;
|
||||||
@ -1115,8 +1116,7 @@ resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
|
|||||||
h = bh;
|
h = bh;
|
||||||
if(w < bh)
|
if(w < bh)
|
||||||
w = bh;
|
w = bh;
|
||||||
if(c->x != x || c->y != y || c->w != w || c->h != h || c->ismoved) {
|
if(c->x != x || c->y != y || c->w != w || c->h != h) {
|
||||||
c->ismoved = False;
|
|
||||||
c->x = wc.x = x;
|
c->x = wc.x = x;
|
||||||
c->y = wc.y = y;
|
c->y = wc.y = y;
|
||||||
c->w = wc.width = w;
|
c->w = wc.width = w;
|
||||||
@ -1186,9 +1186,9 @@ restack(void) {
|
|||||||
drawbar();
|
drawbar();
|
||||||
if(!sel)
|
if(!sel)
|
||||||
return;
|
return;
|
||||||
if(ismax || sel->isfloating || !lt->arrange)
|
if(sel->isfloating || !lt->arrange)
|
||||||
XRaiseWindow(dpy, sel->win);
|
XRaiseWindow(dpy, sel->win);
|
||||||
if(!ismax && lt->arrange) {
|
if(lt->arrange) {
|
||||||
wc.stack_mode = Below;
|
wc.stack_mode = Below;
|
||||||
wc.sibling = barwin;
|
wc.sibling = barwin;
|
||||||
for(c = stack; c; c = c->snext)
|
for(c = stack; c; c = c->snext)
|
||||||
@ -1296,6 +1296,22 @@ setclientstate(Client *c, long state) {
|
|||||||
PropModeReplace, (unsigned char *)data, 2);
|
PropModeReplace, (unsigned char *)data, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
setlayout(const Arg *arg) {
|
||||||
|
static Layout *prevlt = &layouts[1 % LENGTH(layouts)];
|
||||||
|
|
||||||
|
if(!arg || !arg->v || arg->v == lt)
|
||||||
|
lt = prevlt;
|
||||||
|
else {
|
||||||
|
prevlt = lt;
|
||||||
|
lt = (Layout *)arg->v;
|
||||||
|
}
|
||||||
|
if(sel)
|
||||||
|
arrange();
|
||||||
|
else
|
||||||
|
drawbar();
|
||||||
|
}
|
||||||
|
|
||||||
/* arg > 1.0 will set mfact absolutly */
|
/* arg > 1.0 will set mfact absolutly */
|
||||||
void
|
void
|
||||||
setmfact(const Arg *arg) {
|
setmfact(const Arg *arg) {
|
||||||
@ -1476,24 +1492,6 @@ togglefloating(const Arg *arg) {
|
|||||||
arrange();
|
arrange();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
togglelayout(const Arg *arg) {
|
|
||||||
if(arg && arg->v)
|
|
||||||
lt = (Layout *)arg->v;
|
|
||||||
else if(++lt == &layouts[LENGTH(layouts)])
|
|
||||||
lt = &layouts[0];
|
|
||||||
if(sel)
|
|
||||||
arrange();
|
|
||||||
else
|
|
||||||
drawbar();
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
togglemax(const Arg *arg) {
|
|
||||||
ismax = !ismax;
|
|
||||||
arrange();
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
toggletag(const Arg *arg) {
|
toggletag(const Arg *arg) {
|
||||||
uint mask = sel->tags ^ (arg->ui & TAGMASK);
|
uint mask = sel->tags ^ (arg->ui & TAGMASK);
|
||||||
@ -1693,7 +1691,7 @@ void
|
|||||||
zoom(const Arg *arg) {
|
zoom(const Arg *arg) {
|
||||||
Client *c = sel;
|
Client *c = sel;
|
||||||
|
|
||||||
if(ismax || !lt->arrange || (sel && sel->isfloating))
|
if(!lt->arrange || lt->arrange == monocle || (sel && sel->isfloating))
|
||||||
return;
|
return;
|
||||||
if(c == nexttiled(clients))
|
if(c == nexttiled(clients))
|
||||||
if(!c || !(c = nexttiled(c->next)))
|
if(!c || !(c = nexttiled(c->next)))
|
||||||
|
Loading…
Reference in New Issue
Block a user