mpd.org (704B)
1 #+TITLE: mpd.conf 2 #+PROPERTY: header-args:conf :tangle "xdg-config/mpd/mpd.conf" :mkdirp t 3 4 * Logs to systemd journal 5 6 #+begin_src conf 7 log_file "syslog" 8 #+end_src 9 10 * hardcode ~/Music instead of using $XDG_MUSIC_DIR 11 12 #+begin_src conf 13 music_directory "~/Music" 14 #+end_src 15 16 * refresh the database when files are changed/added 17 18 #+begin_src conf 19 auto_update "yes" 20 #+end_src 21 22 * Move everything to ~/.local/share 23 24 #+begin_src conf 25 playlist_directory "~/.local/share/mpd/playlists" 26 pid_file "~/.local/share/mpd/pid" 27 state_file "~/.local/share/mpd/state" 28 sticker_file "~/.local/share/mpd/sticker.sql" 29 db_file "~/.local/share/mpd/database" 30 #+end_src