dwl

My patch set and modifications to dwl
git clone git://git.ethandl.dev/dwl
Log | Files | Refs | README | LICENSE

commit 2212363225510d11988f5ddc49bf9454f4455fe6
parent 6f8a3f93749aae35b863946d333043d4779d2b54
Author: Leonardo Hernández Hernández <leohdz172@proton.me>
Date:   Thu, 16 Nov 2023 20:47:29 -0600

make sure fullscreen clients have the right size

Diffstat:
Mdwl.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/dwl.c b/dwl.c @@ -2604,6 +2604,9 @@ updatemons(struct wl_listener *listener, void *data) arrangelayers(m); /* Don't move clients to the left output when plugging monitors */ arrange(m); + /* make sure fullscreen clients have the right size */ + if ((c = focustop(m)) && c->isfullscreen) + resize(c, m->m, 0); config_head->state.enabled = 1; config_head->state.mode = m->wlr_output->current_mode;