diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-11-05 01:45:53 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-11-05 01:47:05 +0100 |
commit | ba122b767286cfd1a26f7f3f5390339fd020a3a8 (patch) | |
tree | e75b21935b555d8d9b53313116ac1e8d38179853 /nncmpp.c | |
parent | 456fab5b1126b3cb42ee4f580da6315c3bb5c463 (diff) | |
download | nncmpp-ba122b767286cfd1a26f7f3f5390339fd020a3a8.tar.gz nncmpp-ba122b767286cfd1a26f7f3f5390339fd020a3a8.tar.xz nncmpp-ba122b767286cfd1a26f7f3f5390339fd020a3a8.zip |
Minor clarifications
Diffstat (limited to 'nncmpp.c')
-rw-r--r-- | nncmpp.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -741,6 +741,8 @@ static struct config_schema g_config_settings[] = { .name = "password", .comment = "Password to use for MPD authentication", .type = CONFIG_ITEM_STRING }, + + // NOTE: this is unused--in theory we could allow manual metadata adjustment { .name = "root", .comment = "Where all the files MPD is playing are located", .type = CONFIG_ITEM_STRING }, @@ -4028,7 +4030,7 @@ main (int argc, char *argv[]) }; struct opt_handler oh = - opt_handler_make (argc, argv, opts, NULL, "MPD client."); + opt_handler_make (argc, argv, opts, NULL, "Terminal-based MPD client."); int c; while ((c = opt_handler_get (&oh)) != -1) |