Adapted center first now works with Pertag.

This commit is contained in:
Sheldon Lee 2021-12-21 21:54:13 +08:00
parent 4a8274e7b0
commit 409a9dfcfa
2 changed files with 9 additions and 7 deletions

View File

@ -63,6 +63,7 @@ static const Rule rules[] = {
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
static const int nmaster = 1; /* number of clients in master area */ 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 resizehints = 1; /* 1 means respect size hints in tiled resizals */
static const int centerfirst = 1; /* center first window if it has rule */
static const Layout layouts[] = { static const Layout layouts[] = {
/* symbol arrange function */ /* symbol arrange function */

15
dwm.c
View File

@ -279,7 +279,6 @@ static Drw *drw;
static Monitor *mons, *selmon; static Monitor *mons, *selmon;
static Window root, wmcheckwin; static Window root, wmcheckwin;
static int isgaming = 0; static int isgaming = 0;
static int centerfirst = 0;
/* configuration, allows nested code to access above variables */ /* configuration, allows nested code to access above variables */
#include "config.h" #include "config.h"
@ -291,6 +290,7 @@ struct Pertag {
unsigned int sellts[LENGTH(tags) + 1]; /* selected layouts */ unsigned int sellts[LENGTH(tags) + 1]; /* selected layouts */
const Layout *ltidxs[LENGTH(tags) + 1][2]; /* matrix of tags and layouts indexes */ const Layout *ltidxs[LENGTH(tags) + 1][2]; /* matrix of tags and layouts indexes */
int showbars[LENGTH(tags) + 1]; /* display bar for the current tag */ int showbars[LENGTH(tags) + 1]; /* display bar for the current tag */
int centerfirst[LENGTH(tags) + 1]; /* center first window */
}; };
/* compile-time check if all tags fit into an unsigned int bit array. */ /* compile-time check if all tags fit into an unsigned int bit array. */
@ -678,6 +678,8 @@ createmon(void)
m->pertag->sellts[i] = m->sellt; m->pertag->sellts[i] = m->sellt;
m->pertag->showbars[i] = m->showbar; m->pertag->showbars[i] = m->showbar;
m->pertag->centerfirst[i] = centerfirst;
} }
return m; return m;
@ -1757,7 +1759,7 @@ tile(Monitor *m)
return; return;
c = nexttiled(m->clients); c = nexttiled(m->clients);
if (n == 1 && centerfirst && c && c->iscentered){ if (n == 1 && m->pertag->centerfirst[m->pertag->curtag] && c && c->iscentered){
resize( resize(
c, c,
m->wx + m->ww*(1 - m->mfact)/2, m->wx + m->ww*(1 - m->mfact)/2,
@ -2416,10 +2418,9 @@ togglegaming(const Arg* arg)
void /* toggle center first window */ void /* toggle center first window */
togglecenterfirst(const Arg* arg) togglecenterfirst(const Arg* arg)
{ {
centerfirst ^= 1; if (!arg || !selmon->lt[selmon->sellt]->arrange)
if (selmon->sel) return;
arrange(selmon); selmon->pertag->centerfirst[selmon->pertag->curtag] ^= 1;
else arrange(selmon);
drawbar(selmon);
} }