dwl

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

commit 68576799b96950dd36ed7c71ba0c4b1607a13cc8
parent 19a8a095ebe782065903b9a03670560371302206
Author: Leonardo Hernández Hernández <leohdz172@protonmail.com>
Date:   Fri,  2 Sep 2022 18:49:20 -0500

don't arrange layers on disabled monitors

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

diff --git a/dwl.c b/dwl.c @@ -591,6 +591,8 @@ arrangelayers(Monitor *m) ZWLR_LAYER_SHELL_V1_LAYER_TOP, }; LayerSurface *layersurface; + if (!m || !m->wlr_output->enabled) + return; /* Arrange exclusive surfaces from top->bottom */ for (i = 3; i >= 0; i--)