From f100eb61eeab6fa6144568952b28b62548ed4fc0 Mon Sep 17 00:00:00 2001 From: Andre Ramnitz Date: Wed, 27 Dec 2023 00:16:12 +0100 Subject: [PATCH] mpd: make paths more robust --- config/mpd/mpd.conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/mpd/mpd.conf b/config/mpd/mpd.conf index 86cc1591..3a3409ab 100644 --- a/config/mpd/mpd.conf +++ b/config/mpd/mpd.conf @@ -1,15 +1,15 @@ user "andy" bind_to_address "localhost" -log_file "~/mpd/log" -pid_file "~/mpd/pid" -state_file "~/mpd/state" -sticker_file "~/mpd/sticker.sql" +log_file "/home/andy/mpd/log" +pid_file "/home/andy/mpd/pid" +state_file "/home/andy/mpd/state" +sticker_file "/home/andy/mpd/sticker.sql" database { plugin "simple" - path "~/mpd/database" - cache_directory "~/.cache/mpd" + path "/home/andy/mpd/database" + cache_directory "/home/andy/.cache/mpd" } auto_update "yes" -- 2.51.2