diff options
author | Romain Gonçalves <commit@rgoncalves.se> | 2021-11-21 14:20:26 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2025-02-28 13:18:48 +0100 |
commit | 1e50f672c8a16baf95790c559f48d80f05bcd588 (patch) | |
tree | 916facbf7b72d47a829c1a21bc152cd4dda8eae5 /dwm.c | |
parent | 65ea6602bf2f4503e9a0b7c3418b32e48f2e5da5 (diff) | |
download | dwm-1e50f672c8a16baf95790c559f48d80f05bcd588.tar.gz |
patches: Apply actualfullscreen
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -210,6 +210,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); @@ -1735,6 +1736,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; |