run on machinegenshina

This commit is contained in:
rayelliott 2020-10-13 21:49:57 +00:00
parent 3dece8d2f6
commit c36c39e77a
1 changed files with 13 additions and 2 deletions

View File

@ -37,7 +37,7 @@ db_file "/home/ray/.config/mpd/tag_cache"
# setting defaults to logging to syslog, or to journal if mpd was started as # setting defaults to logging to syslog, or to journal if mpd was started as
# a systemd service. # a systemd service.
# #
#log_file "/var/log/mpd/mpd.log" log_file "/var/log/mpd/mpd.log"
# #
# This setting sets the location of the file which stores the process ID # This setting sets the location of the file which stores the process ID
# for use of mpd --kill and some init scripts. This setting is disabled by # for use of mpd --kill and some init scripts. This setting is disabled by
@ -67,7 +67,7 @@ sticker_file "/home/ray/.config/mpd/sticker.sql"
# initialization. This setting is disabled by default and MPD is run as the # initialization. This setting is disabled by default and MPD is run as the
# current user. # current user.
# #
#user "mpd" user "ray"
# #
# This setting specifies the group that MPD will run as. If not specified # This setting specifies the group that MPD will run as. If not specified
# primary group of user specified with "user" setting will be used (if set). # primary group of user specified with "user" setting will be used (if set).
@ -87,6 +87,7 @@ bind_to_address "0.0.0.0"
# #
# And for Unix Socket # And for Unix Socket
#bind_to_address "/run/mpd/socket" #bind_to_address "/run/mpd/socket"
bind_to_address "/var/lib/mpd/socket"
# #
# This setting is the TCP port that is desired for the daemon to get assigned # This setting is the TCP port that is desired for the daemon to get assigned
# to. # to.
@ -99,6 +100,7 @@ bind_to_address "0.0.0.0"
# available resources on limited hardware storage. # available resources on limited hardware storage.
# #
#log_level "default" #log_level "default"
log_level "verbose"
# #
# Setting "restore_paused" to "yes" puts MPD into pause mode instead # Setting "restore_paused" to "yes" puts MPD into pause mode instead
# of starting playback after startup. # of starting playback after startup.
@ -318,9 +320,18 @@ decoder {
audio_output { audio_output {
type "pulse" type "pulse"
name "Pulse Audio Output" name "Pulse Audio Output"
mixer_control "Master"
# server "remote_server" # optional # server "remote_server" # optional
# sink "remote_server_sink" # optional # sink "remote_server_sink" # optional
} }
audio_output {
type "fifo"
name "mpdFIFO"
path "/tmp/mpd.fifo"
enabled "yes"
}
# #
# An example of a winmm output (Windows multimedia API). # An example of a winmm output (Windows multimedia API).
# #