diff options
author | Franck Cuny <franck@fcuny.net> | 2020-10-28 17:21:52 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2020-10-28 17:21:52 -0700 |
commit | c6ee50dcebe7e5c3677b4dfa32f7cf176fc22652 (patch) | |
tree | 8385611997b38efe56b34c5e3cf09964be228737 /config/mpd | |
parent | backup: specify the domain (diff) | |
download | emacs.d-c6ee50dcebe7e5c3677b4dfa32f7cf176fc22652.tar.gz |
mpd: install mpd on linux
default configuration is to rely on the nas to manage the library, and to use samba to access the files.
Diffstat (limited to 'config/mpd')
-rw-r--r-- | config/mpd/mpd.conf | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/config/mpd/mpd.conf b/config/mpd/mpd.conf new file mode 100644 index 0000000..0ca24c7 --- /dev/null +++ b/config/mpd/mpd.conf @@ -0,0 +1,21 @@ +music_directory "smb://nas.home/music" + +log_file "syslog" + +bind_to_address "localhost" +port "6600" + +auto_update "yes" + +database { + plugin "proxy" + host "nas.home" + port "6600" +} + +audio_output { + type "pulse" + name "pulse audio" +} + +filesystem_charset "UTF-8" |