summaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorNaz <ndpm13@ch-naseem.com>2025-10-15 15:57:37 +0100
committerNaz <ndpm13@ch-naseem.com>2025-10-15 15:57:37 +0100
commit103a95ab30f8058620c9679b433964860427a340 (patch)
tree18f805823d807c07dca2e08cf20bf627a7845a50 /dwm.c
parent69bcd6cd7920c39a973d8f9ef22e81be74d22a31 (diff)
✨feat: apply dwm-actualfullscreen-20211013-cb3f58a patch
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 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);
@@ -2119,6 +2120,13 @@ togglescratch(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;