Center floating windows

Credits to Benjamin Chausse for fixing this with multiple monitors.
This commit is contained in:
Guido Cella 2023-05-03 09:28:43 +02:00
parent 960c32a7d8
commit ba005d4de9

2
dwl.c
View File

@ -467,6 +467,8 @@ applyrules(Client *c)
mon = m;
}
}
c->geom.x = (mon->w.width - c->geom.width) / 2 + mon->m.x;
c->geom.y = (mon->w.height - c->geom.height) / 2 + mon->m.y;
wlr_scene_node_reparent(&c->scene->node, layers[c->isfloating ? LyrFloat : LyrTile]);
setmon(c, mon, newtags);
}