blob: 1a6ac804b9398e93514168480854ceb6aa910832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# ████ ████ ███████ ███████
# ░██░██ ██░██░██░░░░██░██░░░░██
# ░██░░██ ██ ░██░██ ░██░██ ░██
# ░██ ░░███ ░██░███████ ░██ ░██
# ░██ ░░█ ░██░██░░░░ ░██ ░██
# ░██ ░ ░██░██ ░██ ██
# ░██ ░██░██ ░███████
# ░░ ░░ ░░ ░░░░░░░
#
#█▓▒░ files
music_directory "~/music"
playlist_directory "~/.mpd/playlists"
db_file "~/.mpd/database"
log_file "~/.mpd/log"
pid_file "~/.mpd/pid"
state_file "~/.mpd/state"
sticker_file "~/.mpd/sticker.sql"
#█▓▒░ opts
bind_to_address "127.0.0.1"
port "6601"
log_level "default"
gapless_mp3_playback "yes"
filesystem_charset "UTF-8"
#█▓▒░ io
input {
plugin "curl"
}
audio_output {
type "alsa"
name "audio"
}
audio_output {
type "fifo"
name "visualizer"
path "~/.mpd/mpd.fifo"
format "44100:16:2"
}
|