Initial commit: basic config for mpd and ncmpcpp
This commit is contained in:
commit
8068dee39d
2 changed files with 35 additions and 0 deletions
24
dot-config/mpd/mpd.conf
Normal file
24
dot-config/mpd/mpd.conf
Normal file
|
@ -0,0 +1,24 @@
|
|||
music_directory "~/Muzak"
|
||||
playlist_directory "~/.local/share/mpd/playlists"
|
||||
sticker_file "~/.local/share/mpd/stickers.sqlite3"
|
||||
state_file "~/.local/state/mpd/mpd.state"
|
||||
|
||||
auto_update "yes"
|
||||
replaygain "auto"
|
||||
|
||||
database {
|
||||
plugin "simple"
|
||||
path "~/.cache/mpd/db.gz"
|
||||
}
|
||||
|
||||
audio_output {
|
||||
type "osx"
|
||||
name "MacOS Audio"
|
||||
}
|
||||
|
||||
audio_output {
|
||||
type "fifo"
|
||||
name "ncmpcpp"
|
||||
path "~/.cache/mpd/ncmpcpp.fifo"
|
||||
format "44100:16:2"
|
||||
}
|
11
dot-config/ncmpcpp/config
Normal file
11
dot-config/ncmpcpp/config
Normal file
|
@ -0,0 +1,11 @@
|
|||
# vim: set ft=conf :
|
||||
ncmpcpp_directory = "~/.local/share/ncmpcpp"
|
||||
media_library_primary_tag = album_artist
|
||||
media_library_albums_split_by_date = no
|
||||
mpd_music_dir = ~/Muzak
|
||||
|
||||
visualizer_data_source = "~/.cache/mpd/ncmpcpp.fifo"
|
||||
visualizer_output_name = "ncmpcpp"
|
||||
visualizer_in_stereo = "yes"
|
||||
visualizer_type = "spectrum"
|
||||
visualizer_look = "+│"
|
Loading…
Reference in a new issue