diff options
| author | Malfurious <m@lfurio.us> | 2022-02-09 09:01:18 -0500 |
|---|---|---|
| committer | Matt Hunter <m@lfurio.us> | 2026-01-18 00:18:57 -0500 |
| commit | 5a736865e7bdcbceec85ca4a562a20df62d47c41 (patch) | |
| tree | eca20841a5b020f7f36a7f2baee326732aadb8e6 /config.def.h | |
| parent | a6cc118b3606551de5cb9a1a5a59897ba347716c (diff) | |
| download | dwm-5a736865e7bdcbceec85ca4a562a20df62d47c41.tar.gz dwm-5a736865e7bdcbceec85ca4a562a20df62d47c41.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 fe50ff3..3626fc4 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 int refreshrate = 120; /* refresh rate (per second) for client move/resize */ static const Layout layouts[] = { |
