summaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorNaz <ndpm13@ch-naseem.com>2026-01-20 12:53:02 +0100
committerNaz <ndpm13@ch-naseem.com>2026-01-20 12:53:02 +0100
commita24e975aab87157b78d5bc2f18b041e813943973 (patch)
tree7acfaa77390357e9340dd1e8674b3563c3e32a50 /dwm.c
parent1a3c5252bea230d951caee346795f296af72bc3f (diff)
feat(patch): apply dwm-actualfullscreen-20211013-cb3f58a
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 b604ec8..5935533 100644
--- a/dwm.c
+++ b/dwm.c
@@ -243,6 +243,7 @@ static void tile(Monitor *m);
static void togglebar(const Arg *arg);
static void togglefloating(const Arg *arg);
static void togglescratch(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);
@@ -2120,6 +2121,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;