summaryrefslogtreecommitdiff
path: root/src/config.c
diff options
context:
space:
mode:
authorZachIR <zachir@librem.one>2025-07-17 15:05:19 -0500
committerZachIR <zachir@librem.one>2025-07-17 15:05:19 -0500
commit4576231a059b4001427e392f94d6ece2c1ae9ef4 (patch)
tree8bfc32bb542947ed51dda43c995279ec5f55220e /src/config.c
parent384ae5ab297bfae189532b4290179daeb3e89fad (diff)
Add -r require flag
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c
index d45e62b..98015ce 100644
--- a/src/config.c
+++ b/src/config.c
@@ -323,6 +323,8 @@ bool parse_option(struct tofi *tofi, const char *filename, size_t lineno, const
tofi->anchor = ANCHOR_BOTTOM;
} else if (strcasecmp(option, "password") == 0) {
tofi->window.entry.hide_input = true;
+ } else if (strcasecmp(option, "require") == 0) {
+ tofi->require_match = true;
} else if (strcasecmp(option, "anchor") == 0) {
uint32_t val = parse_anchor(filename, lineno, value, &err);
if (!err) {