diff options
| author | gonzo <gonzo@toniatuh.com> | 2023-12-02 13:43:47 +0100 |
|---|---|---|
| committer | gonzo <gonzo@toniatuh.com> | 2023-12-02 13:43:47 +0100 |
| commit | 22efcf1b0c73a1bc0d5b02b2574c77c67e98d71c (patch) | |
| tree | 38608d31ce3ddf5cc29c97f8a6fe716796ae5e4f /config.def.h | |
| parent | 091f62154805381e35cf51501e2b86b04eb6d0e3 (diff) | |
| download | dwm-22efcf1b0c73a1bc0d5b02b2574c77c67e98d71c.tar.gz | |
added deck layout
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 061ad66..b9e66a7 100644 --- a/config.def.h +++ b/config.def.h @@ -42,6 +42,8 @@ static const Layout layouts[] = { { "[]=", tile }, /* first entry is default */ { "><>", NULL }, /* no layout function means floating behavior */ { "[M]", monocle }, + { "[D]", deck }, + { NULL, NULL }, }; /* key definitions */ @@ -76,6 +78,7 @@ static const 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_r, setlayout, {.v = &layouts[3]} }, { MODKEY, XK_space, setlayout, {0} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, { MODKEY, XK_0, view, {.ui = ~0 } }, |
