aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2022-01-20 01:27:31 +0300
committereug-vs <eugene@eug-vs.xyz>2022-01-20 01:27:31 +0300
commit4745e69489042e1b33f278809e1f9e831d6704b1 (patch)
tree144d3eb947de2c12b6213345098835f08ddc6607
parent71cc9e0fcfd02a665d0859888d2ab3e81d2bda2c (diff)
downloaddwm-4745e69489042e1b33f278809e1f9e831d6704b1.tar.gz
patch: actual fullscreen
-rw-r--r--config.def.h1
-rw-r--r--dwm.13
-rw-r--r--dwm.c8
3 files changed, 12 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index dc10d22..b7d6205 100644
--- a/config.def.h
+++ b/config.def.h
@@ -75,6 +75,7 @@ static Key keys[] = {
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
+ { MODKEY|ShiftMask, XK_m, togglefullscr, {0} },
{ MODKEY, XK_space, setlayout, {0} },
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
{ MODKEY, XK_0, view, {.ui = ~0 } },
diff --git a/dwm.1 b/dwm.1
index ddc8321..3d310ac 100644
--- a/dwm.1
+++ b/dwm.1
@@ -116,6 +116,9 @@ Zooms/cycles focused window to/from master area (tiled layouts only).
.B Mod1\-Shift\-c
Close focused window.
.TP
+.B Mod1\-Shift\-f
+Toggle fullscreen for focused window.
+.TP
.B Mod1\-Shift\-space
Toggle focused window between tiled and floating state.
.TP
diff --git a/dwm.c b/dwm.c
index 2d5a64d..ea4fa50 100644
--- a/dwm.c
+++ b/dwm.c
@@ -225,6 +225,7 @@ static Client *termforwin(const Client *c);
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);
@@ -1812,6 +1813,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;