Skip to content

Commit

Permalink
Added blank a blank option to the help menu
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikReider committed Aug 31, 2021
1 parent c48a043 commit c582197
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,22 @@ void showHelp(char **argv) {
cout << "Usage:" << endl;
cout << "\t" << argv[0] << " <OPTION>" << endl;
cout << "Options:" << endl;
cout << "\t-h, --help \t\t Show help options" << endl;
cout << "\t--dry-print-both \t Don't inhibit idle and print if either any sink or any source is running" << endl;
cout << "\t--dry-print-sink \t Don't inhibit idle and print if any sink is running" << endl;
cout << "\t--dry-print-source \t Don't inhibit idle and print if any source is running" << endl;
cout << "\t" << argv[0]
<< "\t\t\t\t Inhibits idle if either any sink or any source is running"
<< endl;
cout << "\t" << argv[0] << " -h, --help \t\t Show help options" << endl;
cout << "\t" << argv[0]
<< " --dry-print-both \t Don't inhibit idle and print if either any "
"sink or any source is running"
<< endl;
cout << "\t" << argv[0]
<< " --dry-print-sink \t Don't inhibit idle and print if any sink is "
"running"
<< endl;
cout << "\t" << argv[0]
<< " --dry-print-source \t Don't inhibit idle and print if any source "
"is running"
<< endl;
}

int main(int argc, char *argv[]) {
Expand Down

0 comments on commit c582197

Please sign in to comment.