1
0
Fork 0
mirror of https://github.com/kastdeur/dotfiles.git synced 2025-05-14 20:09:26 +02:00

Added local user MPD config

This commit is contained in:
Eric-Teunis de Boone 2020-03-17 12:08:16 +01:00
parent f5bf25dcf7
commit 10189191f7
2 changed files with 44 additions and 0 deletions

43
mpd/mpd.conf Normal file
View file

@ -0,0 +1,43 @@
# INET binding
bind_to_address "localhost"
port "6600"
# UNIX binding
bind_to_address "~/.mpd/socket"
# Select one of the two options
## Use Local database
db_file "~/.mpd/database"
music_directory "~/Music"
## Use Remote Database and Files
#database {
# plugin "proxy"
# host "remote"
# port "6600"
#}
#music_directory "~/Music"
pid_file "~/.mpd/pid"
state_file "~/.mpd/mpdstate"
playlist_directory "~/.mpd/playlists"
sticker_file "~/.mpd/sticker.sql"
log_file "~/.mpd/log"
# Audio Outputs
audio_output {
type "pulse"
name "User Pulse Audio"
device "pulse"
mixer_type "hardware"
}
audio_output {
type "fifo"
name "my_fifo"
path "/tmp/mpd.fifo"
format "44100:16:2"
}