From 37b838f4558691e16afd3c2d940947186c8bc13c Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Fri, 26 Jan 2024 20:54:53 -0500 Subject: Implement fullscreen patch --- dwm.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'dwm.c') diff --git a/dwm.c b/dwm.c index 942a33f..2d6c0b2 100644 --- a/dwm.c +++ b/dwm.c @@ -217,6 +217,7 @@ static void sendmon(Client *c, Monitor *m); static void setclientstate(Client *c, long state); static void setfocus(Client *c); static void setfullscreen(Client *c, int fullscreen); +static void fullscreen(const Arg *arg); static void setlayout(const Arg *arg); static void setcfact(const Arg *arg); static void setmfact(const Arg *arg); @@ -1733,6 +1734,19 @@ setfullscreen(Client *c, int fullscreen) } } +Layout *last_layout; +void +fullscreen(const Arg *arg) +{ + if (selmon->showbar) { + for(last_layout = (Layout *)layouts; last_layout != selmon->lt[selmon->sellt]; last_layout++); + setlayout(&((Arg) { .v = &layouts[1] })); + } else { + setlayout(&((Arg) { .v = last_layout })); + } + togglebar(arg); +} + void setlayout(const Arg *arg) { -- cgit v1.2.3