diff options
author | David Robillard <d@drobilla.net> | 2022-05-27 14:07:55 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-05-27 14:07:55 -0400 |
commit | da4b42a47a4f2175b7ab5793a0a8fd66c2d940ff (patch) | |
tree | 81e2626965205af03e62f07b8ef50da2fc76d306 | |
parent | 3829ae6b41c88150af33da03592bfaf092af87be (diff) | |
download | jalv-da4b42a47a4f2175b7ab5793a0a8fd66c2d940ff.tar.gz jalv-da4b42a47a4f2175b7ab5793a0a8fd66c2d940ff.tar.bz2 jalv-da4b42a47a4f2175b7ab5793a0a8fd66c2d940ff.zip |
Add missing option in console help output
-rw-r--r-- | src/jalv_console.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/jalv_console.c b/src/jalv_console.c index 1ef9283..117fb90 100644 --- a/src/jalv_console.c +++ b/src/jalv_console.c @@ -45,6 +45,7 @@ print_usage(const char* name, bool error) fprintf(os, " -c SYM=VAL Set control value (e.g. \"vol=1.4\")\n"); fprintf(os, " -d Dump plugin <=> UI communication\n"); fprintf(os, " -h Display this help and exit\n"); + fprintf(os, " -i Ignore keyboard input, run non-interactively\n"); fprintf(os, " -l DIR Load state from save directory\n"); fprintf(os, " -n NAME JACK client name\n"); fprintf(os, " -p Print control output changes to stdout\n"); |