From 98f676d010ff9a4c750d8816d6d90d303d2ba483 Mon Sep 17 00:00:00 2001 From: Philip Wittamore Date: Fri, 23 May 2025 09:41:00 +0200 Subject: update --- config.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'config.h') diff --git a/config.h b/config.h index 916e74c..a9fbdb4 100644 --- a/config.h +++ b/config.h @@ -44,9 +44,10 @@ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen win static const Layout layouts[] = { /* symbol arrange function */ - { "Ƭ", tile }, /* first entry is default */ - { "Φ", NULL }, /* no layout function means floating behavior */ - { "µ", monocle }, /* everything is maximised */ + { "[Ƭ]", tile }, /* first entry is default */ + { "[Φ]", NULL }, /* no layout function means floating behavior */ + { "[µ]", monocle }, /* everything is maximised */ + { "[D]", deck }, /* client windows superimposed */ }; /* key definitions */ @@ -76,6 +77,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_h, setmfact, {.f = -0.05} }, { MODKEY, XK_l, setmfact, {.f = +0.05} }, { MODKEY, XK_comma, focusmon, {.i = -1 } }, -- cgit v1.2.3