blob: b5b8707af9ca0689b2ce44324cbf9430d4fc8ae4 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Files and directories
music_directory "~/music/library"
playlist_directory "~/music/playlists"
db_file "~/.local/share/mpd/database"
log_file "~/.local/share/mpd/log"
# Should be in a runtime directory
pid_file "~/.local/share/mpd/pid"
state_file "~/.local/share/mpd/state"
sticker_file "~/.local/share/mpd/sticker.sql"
# Daemon options
bind_to_address "localhost"
port "6600"
log_level "default"
restore_paused "yes"
auto_update "no"
# Symbolic link behavior
follow_outside_symlinks "yes"
follow_inside_symlinks "yes"
# Zeroconf / Avahi Service Discovery
zeroconf_enabled "no"
# Permissions
default_permissions "read,add,control,admin"
# Audio output
audio_output {
type "alsa"
name "My ALSA Device"
device "hw:0,0"
mixer_type "software"
mixer_device "default"
mixer_control "PCM"
mixer_index "0"
}
audio_output {
type "fifo"
name "My FIFO"
# Should be in a runtime directory
path "~/.local/share/mpd/mpd.fifo"
format "44100:16:1"
}
# ReplayGain and normalization
replaygain "auto"
volume_normalization "no"
# Playlists
save_absolute_paths_in_playlists "no"
|