diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-05-23 09:41:00 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-05-23 09:41:00 +0200 |
commit | 98f676d010ff9a4c750d8816d6d90d303d2ba483 (patch) | |
tree | 7a3715e541b4bd34411a09a6e1001f3ac9064ce9 /config.def.h | |
parent | ec1a6b3891946eb2cc556ead0b1b57392e57f370 (diff) | |
download | dwm-98f676d010ff9a4c750d8816d6d90d303d2ba483.tar.gz dwm-98f676d010ff9a4c750d8816d6d90d303d2ba483.tar.bz2 dwm-98f676d010ff9a4c750d8816d6d90d303d2ba483.zip |
update
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index 916e74c..a9fbdb4 100644 --- a/config.def.h +++ b/config.def.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 } }, |