]> git.rmz.io Git - dotfiles.git/blob - mpd/mpd.conf
zsh: move venv status to second line of prompt
[dotfiles.git] / mpd / mpd.conf
1 # An example configuration file for MPD can be found at:
2 # /usr/share/doc/mpd/
3
4 bind_to_address "any"
5 music_directory "~/music"
6 playlist_directory "~/.local/share/mpd/playlists"
7 db_file "~/.local/share/mpd/database"
8 log_file "~/.local/share/mpd/log"
9 pid_file "~/.local/share/mpd/pid"
10 state_file "~/.local/share/mpd/state"
11 sticker_file "~/.local/share/mpd/sticker.sql"
12 max_output_buffer_size "16384"
13
14 playlist_plugin {
15 name "extm3u"
16 enabled "true"
17 as_directory "true"
18 }
19
20 audio_output {
21 type "pulse"
22 name "My Pulse Output"
23 }
24
25 audio_output {
26 type "fifo"
27 name "fifo"
28 path "/tmp/mpd.fifo"
29 format "44100:16:2"
30 }