diff options
| author | Naz <ndpm13@ch-naseem.com> | 2026-01-20 12:53:02 +0100 |
|---|---|---|
| committer | Naz <ndpm13@ch-naseem.com> | 2026-01-20 12:53:02 +0100 |
| commit | a24e975aab87157b78d5bc2f18b041e813943973 (patch) | |
| tree | 7acfaa77390357e9340dd1e8674b3563c3e32a50 | |
| parent | 1a3c5252bea230d951caee346795f296af72bc3f (diff) | |
feat(patch): apply dwm-actualfullscreen-20211013-cb3f58a
| -rw-r--r-- | config.def.h | 1 | ||||
| -rw-r--r-- | dwm.1 | 3 | ||||
| -rw-r--r-- | dwm.c | 8 |
3 files changed, 12 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 4140097..38f1059 100644 --- a/config.def.h +++ b/config.def.h @@ -123,6 +123,7 @@ static const Key keys[] = { { MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, { MODKEY, XK_space, setlayout, {0} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, + { MODKEY|ShiftMask, XK_f, togglefullscr, {0} }, { MODKEY, XK_0, view, {.ui = ~0 } }, { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, { MODKEY, XK_comma, focusmon, {.i = -1 } }, @@ -124,6 +124,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 @@ -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; |
