diff options
| author | Abhinav Prasai <abhinav.prsai@gmail.com> | 2025-10-06 19:05:11 +0100 |
|---|---|---|
| committer | Abhinav Prasai <abhinav.prsai@gmail.com> | 2025-10-06 19:05:11 +0100 |
| commit | 437226c4fd4c6b9b090add81fb18352808849e76 (patch) | |
| tree | 9068e9158d951207bc9808e11cb607cfd9c257b7 /src/parser.c | |
| parent | 1e221771eaa18f31401a4fbe1781fbb4f78c2608 (diff) | |
add floating_on_top, floating windows stay above tiled windows
Diffstat (limited to 'src/parser.c')
| -rw-r--r-- | src/parser.c | 3 |
1 files changed, 3 insertions, 0 deletions
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); } |
