diff options
author | Malfurious <m@lfurio.us> | 2022-02-09 09:01:18 -0500 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-06-03 21:49:44 -0400 |
commit | a582da75a740dc007f25542b0da41c7a76a829ab (patch) | |
tree | 35905516b6934da869d5d13283bdef53b66bacaf /config.def.h | |
parent | 008f8a61770c966a2a644ee8fa9a9dd15c84799d (diff) | |
download | dwm-a582da75a740dc007f25542b0da41c7a76a829ab.tar.gz dwm-a582da75a740dc007f25542b0da41c7a76a829ab.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 '')
-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 1b5b710..3242ea1 100644 --- a/config.def.h +++ b/config.def.h @@ -40,7 +40,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 */ |