dwl

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

commit 0c1e621b82fb55b5994ae5ab9956160a47dfec80
parent 2e9c4d8ea90e47667ef4fa417aa3e6f46034699e
Author: Devin J. Pohly <djpohly@gmail.com>
Date:   Wed,  8 Sep 2021 23:16:56 -0500

simplify fullscreen expression

Diffstat:
Mdwl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dwl.c b/dwl.c @@ -1025,7 +1025,7 @@ void setfullscreen(Client *c, int fullscreen) { c->isfullscreen = fullscreen; - c->bw = (1 - fullscreen) * borderpx; + c->bw = fullscreen ? 0 : borderpx; client_set_fullscreen(c, fullscreen); if (fullscreen) {