aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorBryson Steck <brysonsteck@protonmail.com>2022-10-26 11:43:53 -0600
committerBryson Steck <brysonsteck@protonmail.com>2022-10-26 11:43:53 -0600
commit5c838a427318a1feb3a7b8f72184d887ff821a02 (patch)
tree058f43fb6e442e381ff622332fbed2cf50d8f3b2 /config.def.h
parent3e7db78a19e50c7d629c5d1bc677cc386f32d2e7 (diff)
downloaddwm-5c838a427318a1feb3a7b8f72184d887ff821a02.tar
dwm-5c838a427318a1feb3a7b8f72184d887ff821a02.tar.gz
dwm-5c838a427318a1feb3a7b8f72184d887ff821a02.tar.bz2
add columns view, nerd font
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 a2ac963..d9ebdba 100644
--- a/config.def.h
+++ b/config.def.h
@@ -42,6 +42,7 @@ static const Layout layouts[] = {
{ "[]=", tile }, /* first entry is default */
{ "><>", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle },
+ { "|||", col },
};
/* key definitions */
@@ -77,6 +78,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 } },