dwl

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

commit 172bcfd3ffcbaafb5198b162f8b704b0172fe9a0
parent 2b286ffeeda4fcd618c8f6a3c86efb8e96050bd2
Author: Stivvo <stivvo01@gmail.com>
Date:   Thu,  8 Oct 2020 21:04:28 +0200

Set fullscreen simpler

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

diff --git a/dwl.c b/dwl.c @@ -708,16 +708,16 @@ void setfullscreen(Client *c, int fullscreen) { c->isfullscreen = fullscreen; + c->bw = (1 - fullscreen) * borderpx; #ifdef XWAYLAND if (c->type == X11Managed) - wlr_xwayland_surface_set_fullscreen(c->surface.xwayland, c->isfullscreen); + wlr_xwayland_surface_set_fullscreen(c->surface.xwayland, fullscreen); else #endif - wlr_xdg_toplevel_set_fullscreen(c->surface.xdg, c->isfullscreen); + wlr_xdg_toplevel_set_fullscreen(c->surface.xdg, fullscreen); - c->bw = ((int)(!c->isfullscreen)) * borderpx; - if (c->isfullscreen) { + if (fullscreen) { c->prevx = c->geom.x; c->prevy = c->geom.y; c->prevheight = c->geom.height;