From 489d8330177b8dd06cf5d540289201c5febb8679 Mon Sep 17 00:00:00 2001 From: Mouad Alami Date: Wed, 13 Sep 2023 15:15:52 +0100 Subject: togglefakefullscreen patch by bakkeby --- config.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'config.h') diff --git a/config.h b/config.h index 6a00f02..0cafd4d 100644 --- a/config.h +++ b/config.h @@ -56,7 +56,7 @@ static const Rule rules[] = { static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ static const int nmaster = 1; /* number of clients in master area */ static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */ -static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */ +static const int lockfullscreen = 0; /* 1 will force focus on the fullscreen window */ static const Layout layouts[] = { /* symbol arrange function */ @@ -107,6 +107,7 @@ static const Key keys[] = { { MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, { MODKEY, XK_f, togglefullscr, {0} }, + { MODKEY|ShiftMask, XK_t, togglefakefullscreen, {0} }, { MODKEY, XK_0, view, {.ui = ~0 } }, { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, { MODKEY, XK_comma, focusmon, {.i = -1 } }, -- cgit v1.2.3