aboutsummaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorxyz <gky44px1999@gmail.com>2021-12-11 16:21:18 -0800
committerxyz <gky44px1999@gmail.com>2021-12-11 16:21:18 -0800
commit4607d33b1660cc601b5d38a6f696f8b4bc62607f (patch)
tree7b4abd1c04f86a574b3a8a0d4109bd88c122589e /dwm.c
parent95dc7bfc4137e20f67e0a4dbfbe709b1cf78ea4d (diff)
apply actualfullscreen patch by Sönke Lambert
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/dwm.c b/dwm.c
index 5e4d494..a4ef3ad 100644
--- a/dwm.c
+++ b/dwm.c
@@ -212,6 +212,7 @@ static void tagmon(const Arg *arg);
static void tile(Monitor *);
static void 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);
static void unfocus(Client *c, int setfocus);
@@ -1723,6 +1724,13 @@ togglefloating(const Arg *arg)
}
void
+togglefullscr(const Arg *arg)
+{
+ if(selmon->sel)
+ setfullscreen(selmon->sel, !selmon->sel->isfullscreen);
+}
+
+void
toggletag(const Arg *arg)
{
unsigned int newtags;