diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/COMMANDS | 7 | ||||
-rw-r--r-- | doc/mpd.1 | 12 | ||||
-rw-r--r-- | doc/mpdconf.example | 12 |
3 files changed, 16 insertions, 15 deletions
diff --git a/doc/COMMANDS b/doc/COMMANDS index 1462c4130..ee603dbf9 100644 --- a/doc/COMMANDS +++ b/doc/COMMANDS @@ -20,9 +20,10 @@ These denote the end of command execution. Commands: --------- -add <string file> - add the file _file_ to the playlist - increments playlist version by 1 +add <string path> + add the file _path_ to the playlist (directories add recursively) + _path_ can also be a single file + increments playlist version by for each song added clear clears the current playlist @@ -157,13 +157,13 @@ Below is an example config file. (Note: '#' at the beginning of a line denotes a .br port "2100" .br -music_directory "/home/shank/mp3" +music_directory "~/mp3" .br -playlist_directory "/home/shank/playlists" +playlist_directory "~/playlists" .br -log_file "/home/shank/mpd.log" +log_file "~/mpd.log" .br -error_file "/home/shank/mpd.error" +error_file "~/mpd.error" .br .br @@ -197,9 +197,9 @@ buffer_before_play "25%" .br buffer_size "2048" .br -#db_file "/home/shank/playlists/.mpddb" +#db_file "~/playlists/.mpddb" .br -#state_file "/home/shank/playlists/.mpdstate" +#state_file "~/playlists/.mpdstate" .br #user "shank" .br diff --git a/doc/mpdconf.example b/doc/mpdconf.example index 9e3bfd3ed..84bcb68fe 100644 --- a/doc/mpdconf.example +++ b/doc/mpdconf.example @@ -1,9 +1,9 @@ # required port "2100" -music_directory "/home/shank/mp3" -playlist_directory "/home/shank/playlists" -log_file "/home/shank/mpd.log" -error_file "/home/shank/mpd.error" +music_directory "~/mp3" +playlist_directory "~/playlists" +log_file "~/mpd.log" +error_file "~/mpd.error" # optional mixer_type "oss" @@ -20,8 +20,8 @@ mixer_device "/dev/mixer" max_playlist_length "4096" buffer_before_play "25%" buffer_size "2048" -#db_file "/home/shank/playlists/.mpddb" -#state_file "/home/shank/playlists/.mpdstate" +#db_file "~/playlists/.mpddb" +#state_file "~/playlists/.mpdstate" #user "shank" connection_timeout "60" max_connections "5" |