diff options
author | Azat Bahawi <azat@bahawi.net> | 1970-01-01 03:00:00 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2022-09-20 11:51:54 +0300 |
commit | 38bab29776950ac2364ed64195b89887717c33de (patch) | |
tree | edaaf366a55dbe96d268019124536bc504c64e87 /mpd/.local/etc |
Diffstat (limited to 'mpd/.local/etc')
-rw-r--r-- | mpd/.local/etc/mpd/mpd.conf | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/mpd/.local/etc/mpd/mpd.conf b/mpd/.local/etc/mpd/mpd.conf new file mode 100644 index 0000000..ca77d4f --- /dev/null +++ b/mpd/.local/etc/mpd/mpd.conf @@ -0,0 +1,54 @@ +music_directory "~/music" + +playlist_directory "~/.local/var/cache" + +log_file "/dev/null" +log_level "default" + +pid_file "~/.local/run/mpd.pid" + +state_file "~/.local/var/mpd/state" +state_file_interval "60" + +sticker_file "~/.local/var/mpd/sticker.db" + +restore_paused "yes" + +auto_update "no" + +follow_outside_symlinks "yes" +follow_inside_symlinks "yes" + +replaygain "album" +replaygain_preamp "0" +replaygain_limit "yes" + +volume_normalization "no" + +filesystem_charset "UTF-8" + +bind_to_address "localhost" +port "6600" + +connection_timeout "10" +max_connections "10" +max_playlist_length "2048" +max_command_list_size "2048" +max_output_buffer_size "8192" + +zeroconf_enabled "no" + +database { + plugin "simple" + path "~/.local/var/mpd/database.gz" + compress "yes" +} + +audio_output { + type "alsa" + name "ALSA" + mixer_type "software" + mixer_control "PCM" +} + +# vim:filetype=conf |