diff options
Diffstat (limited to 'mpd.conf')
-rwxr-xr-x | mpd.conf | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -10,14 +10,14 @@ # be disabled and audio files will only be accepted over ipc socket (using # file:// protocol) or streaming files over an accepted protocol. # -music_directory "~/.music" +music_directory "/var/mpd/music" # # This setting sets the MPD internal playlist directory. The purpose of this # directory is storage for playlists created by MPD. The server will use # playlist files not created by the server but only if they are in the MPD # format. This setting defaults to playlist saving being disabled. # -playlist_directory "~/.config/mpd/playlists" +playlist_directory "/var/mpd/playlists" # # This setting sets the location of the MPD database. This file is used to @@ -26,7 +26,7 @@ playlist_directory "~/.config/mpd/playlists" # MPD to accept files over ipc socket (using file:// protocol) or streaming # files over an accepted protocol. # -db_file "~/.config/mpd/database" +db_file "/var/mpd/database" # These settings are the locations for the daemon log files for the daemon. # @@ -44,7 +44,7 @@ log_file "syslog" # # If you use systemd, do not configure a pid_file. # -pid_file "~/.config/mpd/pid" +# pid_file "~/.config/mpd/pid" # This setting sets the location of the file which contains information about # most variables to get MPD back into the same general shape it was in before @@ -216,15 +216,15 @@ input { # # An example of an ALSA output: # -#audio_output { -# type "alsa" -# name "My ALSA Device" -## device "hw:0,0" # optional -## mixer_type "hardware" # optional -## mixer_device "default" # optional -## mixer_control "PCM" # optional -## mixer_index "0" # optional -#} +audio_output { + type "alsa" + name "My ALSA Device" +# device "hw:0,0" # optional +# mixer_type "hardware" # optional +# mixer_device "default" # optional +# mixer_control "PCM" # optional +# mixer_index "0" # optional +} # # An example of an OSS output: # |