diff options
author | Stivvo <stivvo01@gmail.com> | 2020-09-05 11:22:24 +0200 |
---|---|---|
committer | Stivvo <stivvo01@gmail.com> | 2020-09-05 11:22:24 +0200 |
commit | 621d4c9173af194f703a6f197a50e597a8a20498 (patch) | |
tree | a4a9937f9a22bb6af49dc969ba1e50a39202fb30 /config.def.h | |
parent | d9cf3e064c0972102921dae2280fff1c5272b435 (diff) |
Toggle fullscreen on all clients
mod+e allows to toggle fullscreen any client, even those who don't
support it themselves
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 53021cf..d821a96 100644 --- a/config.def.h +++ b/config.def.h @@ -75,6 +75,7 @@ static const Key keys[] = { { MODKEY, XKB_KEY_m, setlayout, {.v = &layouts[2]} }, { MODKEY, XKB_KEY_space, setlayout, {0} }, { MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_space, togglefloating, {0} }, + { MODKEY, XKB_KEY_e, togglefullscreen, {0} }, { MODKEY, XKB_KEY_0, view, {.ui = ~0} }, { MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_parenright, tag, {.ui = ~0} }, { MODKEY, XKB_KEY_comma, focusmon, {.i = -1} }, |