From 0ed6501aa4f173ded561d97f09301e211600c507 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sat, 15 Aug 2015 16:53:42 -0400 Subject: Set WLC_IDLE_TIME to 0 --- sway/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sway/main.c b/sway/main.c index 061564e2..fedffdf7 100644 --- a/sway/main.c +++ b/sway/main.c @@ -22,6 +22,7 @@ int main(int argc, char **argv) { sway_log(L_ERROR, "Config load failed, aborting sway post init!"); } + setenv("WLC_IDLE_TIME", "0", 0); setenv("WLC_DIM", "0", 0); if (!wlc_init(&interface, argc, argv)) { return 1; -- cgit v1.2.3-54-g00ecf From 56814310e0c80ecd9aa8ba93f483f65f5f23fd70 Mon Sep 17 00:00:00 2001 From: Luminarys Date: Sat, 15 Aug 2015 16:13:08 -0500 Subject: Fixed reloading and arrange_windows --- sway/layout.c | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/sway/layout.c b/sway/layout.c index 3fd7f5c1..918da9f0 100644 --- a/sway/layout.c +++ b/sway/layout.c @@ -95,15 +95,28 @@ void arrange_windows(swayc_t *container, int width, int height) { child->x = x; child->y = y; arrange_windows(child, -1, -1); - x += child->width; + // Removed for now because wlc works with relative positions + // Addition can be reconsidered once wlc positions are changed + // x += child->width; } return; case C_OUTPUT: container->width = width; container->height = height; - x -= container->x; - y -= container->y; - break; + // These lines make x/y negative and result in stuff glitching out + // Their addition can be reconsidered once wlc positions are changed + // x -= container->x; + // y -= container->y; + for (i = 0; i < container->children->length; ++i) { + swayc_t *child = container->children->items[i]; + sway_log(L_DEBUG, "Arranging workspace #%d", i); + child->x = x; + child->y = y; + child->width = width; + child->height = height; + arrange_windows(child, -1, -1); + } + return; case C_VIEW: { struct wlc_geometry geometry = { -- cgit v1.2.3-54-g00ecf