From 437226c4fd4c6b9b090add81fb18352808849e76 Mon Sep 17 00:00:00 2001 From: Abhinav Prasai Date: Mon, 6 Oct 2025 19:05:11 +0100 Subject: add floating_on_top, floating windows stay above tiled windows --- src/parser.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/parser.c') diff --git a/src/parser.c b/src/parser.c index a479705..f1dd7c0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -272,6 +272,9 @@ found: else if (!strcmp(key, "resize_master_amount")) { cfg->resize_master_amt = atoi(rest); } + else if (!strcmp(key, "floating_on_top")) { + cfg->floating_on_top = !strcmp(rest, "true") ? True : False; + } else if (!strcmp(key, "resize_stack_amount")) { cfg->resize_stack_amt = atoi(rest); } -- cgit v1.2.3