summaryrefslogtreecommitdiff
path: root/src/parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.c')
-rw-r--r--src/parser.c3
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);
}