aboutsummaryrefslogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorRomain Gonçalves <commit@rgoncalves.se>2021-11-21 14:20:26 +0100
committerRomain Gonçalves <me@rgoncalves.se>2025-02-28 13:18:48 +0100
commit1e50f672c8a16baf95790c559f48d80f05bcd588 (patch)
tree916facbf7b72d47a829c1a21bc152cd4dda8eae5 /dwm.c
parent65ea6602bf2f4503e9a0b7c3418b32e48f2e5da5 (diff)
downloaddwm-1e50f672c8a16baf95790c559f48d80f05bcd588.tar.gz
patches: Apply actualfullscreen
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 1443802..7fb67f1 100644
--- a/dwm.c
+++ b/dwm.c
@@ -210,6 +210,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 toggletag(const Arg *arg);
static void toggleview(const Arg *arg);
static void unfocus(Client *c, int setfocus);
@@ -1735,6 +1736,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;
remember that computers suck.