summaryrefslogtreecommitdiff
path: root/src/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c
index c0ede7a..52e14d8 100644
--- a/src/config.c
+++ b/src/config.c
@@ -724,6 +724,11 @@ bool parse_option(struct tofi *tofi, const char *filename, size_t lineno, const
tofi->window.entry.hidden_character_utf8_length =
utf32_to_utf8(ch, tofi->window.entry.hidden_character_utf8);
}
+ } else if (strcasecmp(option, "physical-keybindings") == 0) {
+ bool val = parse_bool(filename, lineno, value, &err);
+ if (!err) {
+ tofi->physical_keybindings = val;
+ }
} else if (strcasecmp(option, "drun-launch") == 0) {
bool val = parse_bool(filename, lineno, value, &err);
if (!err) {