diff options
| author | ivan-boikov <ik.boikov.public@protonmail.com> | 2024-09-01 14:20:59 +0200 |
|---|---|---|
| committer | ivan-boikov <ik.boikov.public@protonmail.com> | 2024-09-01 14:20:59 +0200 |
| commit | c711e912890cfc4ac981ca9cc38d027d5b186ab7 (patch) | |
| tree | aabacc7872533897a0ea938384c69628679fce75 /dwm.c | |
| parent | 311cce62833fe1407796543554ac56067c780736 (diff) | |
Applied dwm-actualfullscreen-20211013-cb3f58a.diffdwm-actualfullscreen-20211013-cb3f58a.diff
Diffstat (limited to 'dwm.c')
| -rw-r--r-- | dwm.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -211,6 +211,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); @@ -1736,6 +1737,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; |
