From 403ddc2dc071a243f8f99427caab5a499079849e Mon Sep 17 00:00:00 2001 From: Franck STAUFFER Date: Fri, 4 Sep 2020 10:01:58 +0200 Subject: [PATCH] Apply actualfullscreen --- config.def.h | 1 + dwm.c | 9 +++++++++ 2 files changed, 10 insertions(+) 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) {