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
31 lines
840 B
# since some paths are defined in pam_environment,
|
|
# which is read after user login,
|
|
# enable mpd service by
|
|
# systemctl enable --user mpd
|
|
# after disabling systemwide (sudo systemctl disable mpd)
|
|
|
|
port "6600"
|
|
|
|
log_file "~/.local/share/mpd/log"
|
|
music_directory "/mnt/network/Audio"
|
|
# mkdir playlists
|
|
playlist_directory "~/.local/share/mpd/playlists"
|
|
db_file "~/.local/share/mpd/database"
|
|
state_file "~/.local/share/mpd/state"
|
|
sticker_file "~/.local/share/mpd/sticker.sql"
|
|
|
|
auto_update "yes"
|
|
replaygain "album"
|
|
metadata_to_use "artist,album,title,track,name,genre,date,albumartist"
|
|
|
|
audio_output {
|
|
type "pulse"
|
|
name "My Pulse Output"
|
|
}
|
|
|
|
audio_output {
|
|
type "fifo"
|
|
name "my_fifo"
|
|
path "/tmp/mpd.fifo"
|
|
format "44100:16:2"
|
|
}
|