diff options
| author | bakkeby <[email protected]> | 2022-01-10 17:18:45 +0100 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2022-02-11 11:43:34 +0100 |
| commit | 094c8ff363fbea645e65185c671ec9af4df1d333 (patch) | |
| tree | 629b8bcd2ab94abdc7775554c09f997e61a05e6f | |
| parent | 1920595795be273d36584e3fa884b9abcf85a92c (diff) | |
| download | dwm-flexipatch-094c8ff363fbea645e65185c671ec9af4df1d333.tar.gz dwm-flexipatch-094c8ff363fbea645e65185c671ec9af4df1d333.zip | |
Add a configuration option for fullscreen locking
Some people are annoyed to have this new behaviour forced for some
application which use fake fullscreen.
Ref. https://git.suckless.org/dwm/commit/138b405f0c8aa24d8a040cc1a1cf6e3eb5a0ebc7.html
| -rw-r--r-- | config.def.h | 1 | ||||
| -rw-r--r-- | dwm.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 61dd14a..469f70f 100644 --- a/config.def.h +++ b/config.def.h @@ -567,6 +567,7 @@ static const int nmaster = 1; /* number of clients in master area */ static const int nstack = 0; /* number of clients in primary stack area */ #endif // FLEXTILE_DELUXE_LAYOUT static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */ +static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */ #if DECORATION_HINTS_PATCH static const int decorhints = 1; /* 1 means respect decoration hints */ #endif // DECORATION_HINTS_PATCH @@ -2018,7 +2018,7 @@ focusstack(const Arg *arg) if (!selmon->sel || (selmon->sel->isfullscreen && !selmon->sel->fakefullscreen)) return; #else - if (!selmon->sel || selmon->sel->isfullscreen) + if (!selmon->sel || (selmon->sel->isfullscreen && lockfullscreen)) return; #endif // LOSEFULLSCREEN_PATCH #if BAR_WINTITLEACTIONS_PATCH |
