You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
840 B

  1. # since some paths are defined in pam_environment,
  2. # which is read after user login,
  3. # enable mpd service by
  4. # systemctl enable --user mpd
  5. # after disabling systemwide (sudo systemctl disable mpd)
  6. port "6600"
  7. log_file "~/.local/share/mpd/log"
  8. music_directory "/mnt/network/Audio"
  9. # mkdir playlists
  10. playlist_directory "~/.local/share/mpd/playlists"
  11. db_file "~/.local/share/mpd/database"
  12. state_file "~/.local/share/mpd/state"
  13. sticker_file "~/.local/share/mpd/sticker.sql"
  14. auto_update "yes"
  15. replaygain "album"
  16. metadata_to_use "artist,album,title,track,name,genre,date,albumartist"
  17. audio_output {
  18. type "pulse"
  19. name "My Pulse Output"
  20. }
  21. audio_output {
  22. type "fifo"
  23. name "my_fifo"
  24. path "/tmp/mpd.fifo"
  25. format "44100:16:2"
  26. }