summaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2024-03-02 15:12:21 -0500
committerMatt Hunter <m@lfurio.us>2026-01-18 00:18:46 -0500
commitf22431698fd261219f0e780a74e47de221bae8d4 (patch)
tree45d039f1541aea773946d6b691be46ab85ed7057 /config.def.h
parent945ce59ef54857edce8c536754d0325ae7651de3 (diff)
downloaddwm-f22431698fd261219f0e780a74e47de221bae8d4.tar.gz
dwm-f22431698fd261219f0e780a74e47de221bae8d4.zip
patch: philcollins (full columns)
Layout adapted from centerfloatingmaster to simply tile all clients horizontally across the screen, without respect to mfact or nmaster.
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 6046a25..e27c892 100644
--- a/config.def.h
+++ b/config.def.h
@@ -49,6 +49,7 @@ static const Layout layouts[] = {
{ "||=", col },
{ "=[]", elit },
{ "HHH", grid },
+ { "|||", philcollins },
};
/* key definitions */
@@ -100,6 +101,7 @@ static const Key keys[] = {
{ MODKEY, XK_o, setlayout, {.v = &layouts[4]} },
{ MODKEY, XK_e, setlayout, {.v = &layouts[5]} },
{ MODKEY, XK_g, setlayout, {.v = &layouts[6]} },
+ { MODKEY, XK_c, setlayout, {.v = &layouts[7]} },
{ MODKEY, XK_comma, focusmon, {.i = -1 } },
{ MODKEY, XK_period, focusmon, {.i = +1 } },
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },