From 103a95ab30f8058620c9679b433964860427a340 Mon Sep 17 00:00:00 2001 From: Naz Date: Wed, 15 Oct 2025 15:57:37 +0100 Subject: =?UTF-8?q?=E2=9C=A8feat:=20apply=20dwm-actualfullscreen-20211013-?= =?UTF-8?q?cb3f58a=20patch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dwm.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'dwm.c') diff --git a/dwm.c b/dwm.c index 6c38cc9..4f615f3 100644 --- a/dwm.c +++ b/dwm.c @@ -242,6 +242,7 @@ static void tagmon(const Arg *arg); static void tile(Monitor *m); static void togglebar(const Arg *arg); static void togglefloating(const Arg *arg); +static void togglefullscr(const Arg *arg); static void togglescratch(const Arg *arg); static void toggletag(const Arg *arg); static void toggleview(const Arg *arg); @@ -2118,6 +2119,13 @@ togglescratch(const Arg *arg) } } +void +togglefullscr(const Arg *arg) +{ + if(selmon->sel) + setfullscreen(selmon->sel, !selmon->sel->isfullscreen); +} + void toggletag(const Arg *arg) { -- cgit v1.2.3