This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/dotfiles/mpd.conf

48 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-06-22 21:06:08 +02:00
#
# Files and directories #######################################################
#
2020-09-19 23:18:41 +02:00
music_directory "~/Music"
2020-06-22 21:06:08 +02:00
playlist_directory "~/.config/mpd/playlists"
db_file "~/.config/mpd/database"
log_file "syslog"
pid_file "~/.config/mpd/pid"
state_file "~/.config/mpd/state"
# General music daemon options ################################################
#
restore_paused "yes"
auto_update "yes"
# Symbolic link behavior ######################################################
#
follow_outside_symlinks "yes"
follow_inside_symlinks "yes"
# Input #######################################################################
#
input {
plugin "curl"
}
# Audio Output ################################################################
#
audio_output {
2020-12-07 03:38:41 +01:00
type "pulse"
name "My Pulse Output"
mixer_type "hardware"
2020-06-22 21:06:08 +02:00
}
audio_output {
2020-12-07 03:38:41 +01:00
type "fifo"
name "FIFO Output"
path "/tmp/mpd.fifo"
format "44100:16:2"
2020-06-22 21:06:08 +02:00
}
# Normalization automatic volume adjustments ##################################
#
volume_normalization "yes"
# Character Encoding ##########################################################
#
filesystem_charset "UTF-8"