Apply actualfullscreen

This commit is contained in:
Franck STAUFFER 2020-09-04 10:01:58 +02:00
parent 52a87a26ad
commit 403ddc2dc0
Signed by: franck.stauffer
GPG Key ID: AAF5A94045CEC261
2 changed files with 10 additions and 0 deletions

View File

@ -82,6 +82,7 @@ static Key keys[] = {
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
{ MODKEY, XK_space, setlayout, {0} },
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
{ MODKEY|ShiftMask, XK_f, togglefullscr, {0} },
{ MODKEY, XK_0, view, {.ui = ~0 } },
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
{ MODKEY, XK_comma, focusmon, {.i = -1 } },

9
dwm.c
View File

@ -331,6 +331,8 @@ togglebar(const Arg* arg);
static void
togglefloating(const Arg* arg);
static void
togglefullscr(const Arg* arg);
static void
toggletag(const Arg* arg);
static void
toggleview(const Arg* arg);
@ -2063,6 +2065,13 @@ togglefloating(const Arg* arg)
arrange(selmon);
}
void
togglefullscr(const Arg* arg)
{
if (selmon->sel)
setfullscreen(selmon->sel, !selmon->sel->isfullscreen);
}
void
toggletag(const Arg* arg)
{