This commit is contained in:
Jeff Lance 2024-03-05 22:12:24 +01:00
parent 08c636a719
commit 73aad76ac9

View File

@ -26,7 +26,7 @@ playlist_directory "~/Musique/playlists"
# MPD to accept files over ipc socket (using file:// protocol) or streaming
# files over an accepted protocol.
#
db_file "/home/jeff/.config/mpd/tag_cache"
db_file "~/.config/mpd/tag_cache"
#
# These settings are the locations for the daemon log files for the daemon.
# These logs are great for troubleshooting, depending on your log_level
@ -35,25 +35,25 @@ db_file "/home/jeff/.config/mpd/tag_cache"
# The special value "syslog" makes MPD use the local syslog daemon. This
# setting defaults to logging to syslog, otherwise logging is disabled.
#
log_file "/home/jeff/.config/mpd/mpd.log"
log_file "~/.config/mpd/mpd.log"
#
# 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
# default and the pid file will not be stored.
#
pid_file "/home/jeff/.config/mpd/pid"
pid_file "~/.config/mpd/pid"
#
# This setting sets the location of the file which contains information about
# most variables to get MPD back into the same general shape it was in before
# it was brought down. This setting is disabled by default and the server
# state will be reset on server start up.
#
state_file "/home/jeff/.config/mpd/state"
state_file "~/.config/mpd/state"
#
# The location of the sticker database. This is a database which
# manages dynamic information attached to songs.
#
sticker_file "/home/jeff/.config/mpd/sticker.sql"
sticker_file "~/.config/mpd/sticker.sql"
#
###############################################################################
@ -86,7 +86,7 @@ bind_to_address "127.0.0.1"
bind_to_address "192.168.1.1"
#
# And for Unix Socket
# bind_to_address "/home/jeff/.config/mpd/socket"
# bind_to_address "~/.config/mpd/socket"
# bind_to_address "/var/run/user/1000/mpd/socket"
#
# This setting is the TCP port that is desired for the daemon to get assigned