diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-01-20 01:27:31 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-01-20 01:27:31 +0300 |
commit | 4745e69489042e1b33f278809e1f9e831d6704b1 (patch) | |
tree | 144d3eb947de2c12b6213345098835f08ddc6607 /dwm.c | |
parent | 71cc9e0fcfd02a665d0859888d2ab3e81d2bda2c (diff) | |
download | dwm-4745e69489042e1b33f278809e1f9e831d6704b1.tar.gz |
patch: actual fullscreen
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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; |