diff --git a/config.def.h b/config.def.h index c046ae3..d515f68 100644 --- a/config.def.h +++ b/config.def.h @@ -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 } }, diff --git a/dwm.c b/dwm.c index cbc0e24..f15325f 100644 --- a/dwm.c +++ b/dwm.c @@ -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) {