diff options
author | Malfurious <m@lfurio.us> | 2022-02-09 09:01:18 -0500 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2024-03-05 21:04:53 -0500 |
commit | ba932e2b247692d443e3b274e64c57bad9bce9a1 (patch) | |
tree | 366a643d30154ba6c78d4159719d37a70ddccc8c /config.def.h | |
parent | d4ee7a81f7b908d7305b35918c61d4f497161ca8 (diff) | |
download | dwm-ba932e2b247692d443e3b274e64c57bad9bce9a1.tar.gz dwm-ba932e2b247692d443e3b274e64c57bad9bce9a1.zip |
patch: fakefullscreen
Only allow clients to "fullscreen" into space currently given to them.
As an example, this will allow you to view a fullscreen video in your
browser on one half of the screen, while having the other half available
for other tasks.
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 54d0c54..35d3986 100644 --- a/config.def.h +++ b/config.def.h @@ -45,7 +45,7 @@ static const Rule rules[] = { static const float mfact = 0.50; /* factor of master area size [0.05..0.95] */ static const int nmaster = 1; /* number of clients in master area */ static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */ -static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */ +static const int lockfullscreen = 0; /* 1 will force focus on the fullscreen window */ static const Layout layouts[] = { /* symbol arrange function */ |