Apply actualfullscreen
This commit is contained in:
parent
52a87a26ad
commit
403ddc2dc0
@ -82,6 +82,7 @@ static Key keys[] = {
|
|||||||
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
|
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
|
||||||
{ MODKEY, XK_space, setlayout, {0} },
|
{ MODKEY, XK_space, setlayout, {0} },
|
||||||
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
|
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
|
||||||
|
{ MODKEY|ShiftMask, XK_f, togglefullscr, {0} },
|
||||||
{ MODKEY, XK_0, view, {.ui = ~0 } },
|
{ MODKEY, XK_0, view, {.ui = ~0 } },
|
||||||
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
|
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
|
||||||
{ MODKEY, XK_comma, focusmon, {.i = -1 } },
|
{ MODKEY, XK_comma, focusmon, {.i = -1 } },
|
||||||
|
9
dwm.c
9
dwm.c
@ -331,6 +331,8 @@ togglebar(const Arg* arg);
|
|||||||
static void
|
static void
|
||||||
togglefloating(const Arg* arg);
|
togglefloating(const Arg* arg);
|
||||||
static void
|
static void
|
||||||
|
togglefullscr(const Arg* arg);
|
||||||
|
static void
|
||||||
toggletag(const Arg* arg);
|
toggletag(const Arg* arg);
|
||||||
static void
|
static void
|
||||||
toggleview(const Arg* arg);
|
toggleview(const Arg* arg);
|
||||||
@ -2063,6 +2065,13 @@ togglefloating(const Arg* arg)
|
|||||||
arrange(selmon);
|
arrange(selmon);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
togglefullscr(const Arg* arg)
|
||||||
|
{
|
||||||
|
if (selmon->sel)
|
||||||
|
setfullscreen(selmon->sel, !selmon->sel->isfullscreen);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
toggletag(const Arg* arg)
|
toggletag(const Arg* arg)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user