diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-08-11 22:14:06 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2012-08-11 22:14:06 -0400 |
commit | 74659ea10be110665f41c1c5b6f830fc7cb1335d (patch) | |
tree | 384466c63048b42189b01d398ec7c899648ced3a | |
parent | 6d01edb671a437dd7c1c9fd3db0a905e24686207 (diff) | |
download | mirror-ponymix-74659ea10be110665f41c1c5b6f830fc7cb1335d.tar.gz mirror-ponymix-74659ea10be110665f41c1c5b6f830fc7cb1335d.tar.bz2 mirror-ponymix-74659ea10be110665f41c1c5b6f830fc7cb1335d.zip |
separate control modes in usage
-rw-r--r-- | pulsemix.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -580,9 +580,11 @@ static void __attribute__((__noreturn__)) usage(FILE *out) fprintf(out, "usage: %s [options] <command>...\n", program_invocation_short_name); fputs("\nOptions:\n", out); fputs(" -h, --help display this help and exit\n", out); - fputs(" -d, --device set device mode\n", out); + + fputs("\n -d, --device set device mode (default)\n", out); fputs(" -a, --app set application mode\n", out); - fputs(" -o, --sink=<name> control a sink other than the default\n", out); + + fputs("\n -o, --sink=<name> control a sink other than the default\n", out); fputs(" -i, --source=<name> control a source\n", out); fputs("\nCommon Commands:\n", out); |