diff options
author | Julian Teu <julianteu@protonmail.com> | 2018-01-17 17:24:51 +0100 |
---|---|---|
committer | Julian Teu <julianteu@protonmail.com> | 2018-01-17 17:24:51 +0100 |
commit | 05965c234a2506fb7dcc4bd5b3cc8d649d73bcf4 (patch) | |
tree | 5b8fd22daa71e271ded4dd3601d9c301c82a4547 | |
parent | 88cf5ec0745049435d6f56bb0cb2ef238ce017f7 (diff) |
Added mpd config
-rw-r--r-- | .config/mpd/mpd.conf | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/.config/mpd/mpd.conf b/.config/mpd/mpd.conf new file mode 100644 index 0000000..10d4661 --- /dev/null +++ b/.config/mpd/mpd.conf @@ -0,0 +1,42 @@ +# An example configuration file for MPD. +# Read the user manual for documentation: http://www.musicpd.org/doc/user/ +# or /usr/share/doc/mpd/user-manual.html + + +# Required files +db_file "~/.config/mpd/database" +log_file "~/.config/mpd/log" + +# Optional +music_directory "/media/julian/JUUSB/Musik/" +playlist_directory "~/.config/mpd/playlists" +pid_file "~/.config/mpd/pid" +state_file "~/.config/mpd/state" +sticker_file "~/.config/mpd/sticker.sql" + + +# Options +bind_to_address "localhost" + +gapless_mp3_playback "yes" + +restore_paused "yes" + + +auto_update "yes" + +volume_normalization "yes" + + +audio_output { + type "pulse" + name "PulseAudio" +} + +audio_output { + type "fifo" + name "my_fifo" + path "/tmp/mpd.fifo" + format "44100:16:2" +} + |