Sound: add missing command helpers

This commit is contained in:
李通洲
2023-01-28 13:45:40 +08:00
parent f4cefe955b
commit 4afba798ba
+10
View File
@@ -457,6 +457,16 @@ static inline void printCommandHelp(const char* command)
"Battery percentage"
);
}
else if(strcasecmp(command, "sound-format") == 0)
{
constructAndPrintCommandHelpFormat("sound", "{2} (3%)", 4,
"Main",
"Name",
"Volume",
"Manufacturer",
"Identifier"
);
}
else
fprintf(stderr, "No specific help for command %s provided\n", command);
}