added centered master patch
This commit is contained in:
parent
c7aca5b08a
commit
5efd288b98
8
config.h
8
config.h
@ -69,9 +69,11 @@ static const int resizehints = 1; /* 1 means respect size hints in tiled resi
|
||||
static const Layout layouts[] = {
|
||||
/* symbol arrange function */
|
||||
{ "[@]", spiral }, /* first entry is default */
|
||||
{ "[\\]", dwindle },
|
||||
{ "[]=", tile },
|
||||
{ "TTT", bstack },
|
||||
{ "[\\]", dwindle }, /* Default: Master on left, slaves on right */
|
||||
{ "[]=", tile }, /* Default: Master on left, slaves on right */
|
||||
{ "H[]", deck }, /* Master on left, slaves in monocle-like mode on right */
|
||||
{ "TTT", bstack }, /* Master on top, slaves on bottom */
|
||||
|
||||
{ "><>", NULL }, /* no layout function means floating behavior */
|
||||
{ "[M]", monocle },
|
||||
{ "|M|", centeredmaster }, /* Master in middle, slaves on sides */
|
||||
|
26
dwm.c
26
dwm.c
@ -157,6 +157,7 @@ static void configure(Client *c);
|
||||
static void configurenotify(XEvent *e);
|
||||
static void configurerequest(XEvent *e);
|
||||
static Monitor *createmon(void);
|
||||
static void deck(Monitor *m);
|
||||
static void destroynotify(XEvent *e);
|
||||
static void detach(Client *c);
|
||||
static void detachstack(Client *c);
|
||||
@ -661,6 +662,31 @@ createmon(void)
|
||||
return m;
|
||||
}
|
||||
|
||||
void
|
||||
deck(Monitor *m) {
|
||||
unsigned int i, n, h, mw, my;
|
||||
Client *c;
|
||||
|
||||
for(n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
|
||||
if(n == 0)
|
||||
return;
|
||||
|
||||
if(n > m->nmaster) {
|
||||
mw = m->nmaster ? m->ww * m->mfact : 0;
|
||||
snprintf(m->ltsymbol, sizeof m->ltsymbol, "[%d]", n - m->nmaster);
|
||||
}
|
||||
else
|
||||
mw = m->ww;
|
||||
for(i = my = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++)
|
||||
if(i < m->nmaster) {
|
||||
h = (m->wh - my) / (MIN(n, m->nmaster) - i);
|
||||
resize(c, m->wx, m->wy + my, mw - (2*c->bw), h - (2*c->bw), False);
|
||||
my += HEIGHT(c);
|
||||
}
|
||||
else
|
||||
resize(c, m->wx + mw, m->wy, m->ww - mw - (2*c->bw), m->wh - (2*c->bw), False);
|
||||
}
|
||||
|
||||
void
|
||||
destroynotify(XEvent *e)
|
||||
{
|
||||
|
90
patches/dwm-deck-6.0.diff
Normal file
90
patches/dwm-deck-6.0.diff
Normal file
@ -0,0 +1,90 @@
|
||||
From cb3cac91db32403bb581aecbc2957b00bb49c898 Mon Sep 17 00:00:00 2001
|
||||
From: aleks <aleks.stier@icloud.com>
|
||||
Date: Mon, 6 May 2019 16:34:58 +0200
|
||||
Subject: [PATCH] Add deck-layout
|
||||
|
||||
deck is a dwm-layout which is inspired by the TTWM window manager.
|
||||
It applies the monocle-layout to the clients in the stack.
|
||||
The master-client is still visible. The stacked clients are like
|
||||
a deck of cards, hence the name.
|
||||
|
||||
The vanilla patch doesn't work properly with patches which add gaps.
|
||||
This means that when the deck-layout is activated gaps are omitted.
|
||||
To make it work with the tilegap-patch apply the dwm-deck-tilegap patch
|
||||
on top of the dwm-deck patch.
|
||||
|
||||
The vanilla patch doesn't respect the master-area which is defined by
|
||||
the rmaster-patch. To make it work with the rmaster-patch apply the
|
||||
dwm-deck-rmaster patch on top of the dwm-deck patch.
|
||||
---
|
||||
config.def.h | 2 ++
|
||||
dwm.c | 26 ++++++++++++++++++++++++++
|
||||
2 files changed, 28 insertions(+)
|
||||
|
||||
diff --git a/config.def.h b/config.def.h
|
||||
index 77ff358..55d8a07 100644
|
||||
--- a/config.def.h
|
||||
+++ b/config.def.h
|
||||
@@ -32,6 +32,7 @@ static const Layout layouts[] = {
|
||||
{ "[]=", tile }, /* first entry is default */
|
||||
{ "><>", NULL }, /* no layout function means floating behavior */
|
||||
{ "[M]", monocle },
|
||||
+ { "[D]", deck },
|
||||
};
|
||||
|
||||
/* key definitions */
|
||||
@@ -66,6 +67,7 @@ static Key keys[] = {
|
||||
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
|
||||
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
|
||||
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
|
||||
+ { MODKEY, XK_c, setlayout, {.v = &layouts[3]} },
|
||||
{ MODKEY, XK_space, setlayout, {0} },
|
||||
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
|
||||
{ MODKEY, XK_0, view, {.ui = ~0 } },
|
||||
diff --git a/dwm.c b/dwm.c
|
||||
index 1d78655..356ab44 100644
|
||||
--- a/dwm.c
|
||||
+++ b/dwm.c
|
||||
@@ -171,6 +171,7 @@ static void configure(Client *c);
|
||||
static void configurenotify(XEvent *e);
|
||||
static void configurerequest(XEvent *e);
|
||||
static Monitor *createmon(void);
|
||||
+static void deck(Monitor *m);
|
||||
static void destroynotify(XEvent *e);
|
||||
static void detach(Client *c);
|
||||
static void detachstack(Client *c);
|
||||
@@ -669,6 +670,31 @@ destroynotify(XEvent *e) {
|
||||
unmanage(c, True);
|
||||
}
|
||||
|
||||
+void
|
||||
+deck(Monitor *m) {
|
||||
+ unsigned int i, n, h, mw, my;
|
||||
+ Client *c;
|
||||
+
|
||||
+ for(n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
|
||||
+ if(n == 0)
|
||||
+ return;
|
||||
+
|
||||
+ if(n > m->nmaster) {
|
||||
+ mw = m->nmaster ? m->ww * m->mfact : 0;
|
||||
+ snprintf(m->ltsymbol, sizeof m->ltsymbol, "[%d]", n - m->nmaster);
|
||||
+ }
|
||||
+ else
|
||||
+ mw = m->ww;
|
||||
+ for(i = my = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++)
|
||||
+ if(i < m->nmaster) {
|
||||
+ h = (m->wh - my) / (MIN(n, m->nmaster) - i);
|
||||
+ resize(c, m->wx, m->wy + my, mw - (2*c->bw), h - (2*c->bw), False);
|
||||
+ my += HEIGHT(c);
|
||||
+ }
|
||||
+ else
|
||||
+ resize(c, m->wx + mw, m->wy, m->ww - mw - (2*c->bw), m->wh - (2*c->bw), False);
|
||||
+}
|
||||
+
|
||||
void
|
||||
detach(Client *c) {
|
||||
Client **tc;
|
||||
--
|
||||
2.21.0
|
||||
|
Loading…
Reference in New Issue
Block a user