Add a configuration option for fullscreen locking

Some people are annoyed to have this new behaviour forced for some
application which use fake fullscreen.
This commit is contained in:
Quentin Rameau 2021-07-12 23:44:16 +02:00 committed by Santiago Lo Coco
parent a1da2267c4
commit 7b7e9ea212
2 changed files with 3 additions and 1 deletions

View File

@ -46,6 +46,8 @@ static const int attachdirection = 2; /* 0 default, 1 above, 2 aside, 3 below
#define FORCE_VSPLIT 1 /* nrowgrid layout: force two clients to always split vertically */
#include "vanitygaps.c"
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
static const Layout layouts[] = {
/* symbol arrange function */
{ "[]=", tile }, /* first entry is default */

2
dwm.c
View File

@ -977,7 +977,7 @@ focusstack(const Arg *arg)
{
Client *c = NULL, *i;
if (!selmon->sel || selmon->sel->isfullscreen)
if (!selmon->sel || (selmon->sel->isfullscreen && lockfullscreen))
return;
if (arg->i > 0) {
for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);