diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2021-09-16 17:21:15 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2021-09-16 17:21:15 -0700 |
commit | 28a03ea73cc5e09397b9656b167051b47f8d24d4 (patch) | |
tree | 32b622b7b36ea3800d3cd8d0cbca116bf4183333 | |
parent | d581251ca28d052e960ff6d0d6fd234d1ff2baf0 (diff) |
vmon: rename -{x,y} flags to -{W,H}
also sort flags alphabetically in help output
-rw-r--r-- | src/vmon.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -185,15 +185,15 @@ static void print_help(void) " -- Sentinel, subsequent arguments form command to execute\n" " -f --fullscreen Fullscreen window\n" " -h --help Show this help\n" - " -n --name Name of chart, shows in window title and output filenames\n" + " -H --height Window height\n" " -l --linger Don't exit when top-level process exits\n" - " -p --pid PID of the top-level process to monitor (1 if unspecified)\n" - " -x --width Window width\n" - " -y --height Window height\n" - " -z --hertz Sample rate in hertz\n" + " -n --name Name of chart, shows in window title and output filenames\n" " -o --output-dir Directory to store saved output to (\".\" if unspecified)\n" + " -p --pid PID of the top-level process to monitor (1 if unspecified)\n" " -s --snapshot Save a PNG snapshot upon receiving SIGCHLD\n" " -v --version Print version\n" + " -W --width Window width\n" + " -z --hertz Sample rate in hertz\n" "-----------------------------------------------------------------------------" ); } @@ -246,12 +246,12 @@ static int vmon_handle_argv(vmon_t *vmon, int argc, char * const argv[]) return 0; last = ++argv; - } else if (is_flag(*argv, "-x", "--width")) { + } else if (is_flag(*argv, "-W", "--width")) { if (!parse_flag_int(argv, end, argv + 1, WIDTH_MIN, INT_MAX, &vmon->width)) return 0; last = ++argv; - } else if (is_flag(*argv, "-y", "--height")) { + } else if (is_flag(*argv, "-H", "--height")) { if (!parse_flag_int(argv, end, argv + 1, HEIGHT_MIN, INT_MAX, &vmon->height)) return 0; |