diff options
author | Phil Jones <philj56@gmail.com> | 2023-07-16 15:18:46 +0100 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2023-07-16 15:18:46 +0100 |
commit | 47a7f68cd03948035617b83b31349330ae8e55dc (patch) | |
tree | 2eac35d6fbce7d19782389f92180def6a80cb062 /src/main.c | |
parent | 0f1b2a8cf196f4661fbf7bdd54f818fbba8cf8c9 (diff) |
Add --physical-keybindings option.
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -917,6 +917,7 @@ const struct option long_options[] = { {"print-index", required_argument, NULL, 0}, {"hide-input", required_argument, NULL, 0}, {"hidden-character", required_argument, NULL, 0}, + {"physical-keybindings", required_argument, NULL, 0}, {"drun-launch", required_argument, NULL, 0}, {"drun-print-exec", required_argument, NULL, 0}, {"terminal", required_argument, NULL, 0}, @@ -1198,6 +1199,7 @@ int main(int argc, char *argv[]) .use_history = true, .require_match = true, .use_scale = true, + .physical_keybindings = true, }; wl_list_init(&tofi.output_list); if (getenv("TERMINAL") != NULL) { |