blob: 12331ae5e09544830949cdd56ab84ca4820f6800 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Systemd runs mpd as user mpd.
# Make sure mpd can access all directories here.
# Location for database
db_file "/var/lib/mpd/mpd.db"
# Music Directory
# Needs to be accessible by mpd user if using systemd (in case it's in your /home)
#music_directory "/home/$USER/Music"
pid_file "/run/mpd/mpd.pid"
state_file "/var/lib/mpd/mpdstate"
#playlist_directory "/var/lib/mpd/playlists"
# If running mpd using systemd, delete this line to log directly to systemd.
#log_file "syslog"
# Uncomment to refresh the database whenever files in the music_directory are changed
#auto_update "yes"
# ALSA no longer needs to be told about DSD. Previous confs still work though.
# Use aplay -l to find your hw: setting. (card number, subdevice...usually 0)
# Note: This can change if you've got a USB DAC...so careful.
#audio_output {
# type "alsa"
# # Name is just an identifier and doesn't have to match device
# name "TWENTY-TWO POINT FIVE-SEVEN MEGAHERTZ!"
# device "hw:3,0"
# # Only enable if you need DOP.
# dop "yes"
#}
|