mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-12-22 09:13:33 +01:00
Added local user MPD config
This commit is contained in:
parent
f5bf25dcf7
commit
10189191f7
2 changed files with 44 additions and 0 deletions
|
@ -15,6 +15,7 @@
|
||||||
~/.config/geany/filedefs: geany/filedefs
|
~/.config/geany/filedefs: geany/filedefs
|
||||||
~/.ncmpcpp/config: ncmpcpp/config
|
~/.ncmpcpp/config: ncmpcpp/config
|
||||||
~/.ncmpcpp/bindings: ncmpcpp/bindings
|
~/.ncmpcpp/bindings: ncmpcpp/bindings
|
||||||
|
~/.mpd/mpd.conf: mpd/mpd.conf
|
||||||
~/.profile: profile.sh
|
~/.profile: profile.sh
|
||||||
~/.ssh/config: ssh/config
|
~/.ssh/config: ssh/config
|
||||||
~/.tmux: tmux
|
~/.tmux: tmux
|
||||||
|
|
43
mpd/mpd.conf
Normal file
43
mpd/mpd.conf
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
|
||||||
|
# INET binding
|
||||||
|
bind_to_address "localhost"
|
||||||
|
port "6600"
|
||||||
|
|
||||||
|
# UNIX binding
|
||||||
|
bind_to_address "~/.mpd/socket"
|
||||||
|
|
||||||
|
|
||||||
|
# Select one of the two options
|
||||||
|
## Use Local database
|
||||||
|
db_file "~/.mpd/database"
|
||||||
|
music_directory "~/Music"
|
||||||
|
|
||||||
|
## Use Remote Database and Files
|
||||||
|
#database {
|
||||||
|
# plugin "proxy"
|
||||||
|
# host "remote"
|
||||||
|
# port "6600"
|
||||||
|
#}
|
||||||
|
#music_directory "~/Music"
|
||||||
|
|
||||||
|
pid_file "~/.mpd/pid"
|
||||||
|
state_file "~/.mpd/mpdstate"
|
||||||
|
playlist_directory "~/.mpd/playlists"
|
||||||
|
sticker_file "~/.mpd/sticker.sql"
|
||||||
|
log_file "~/.mpd/log"
|
||||||
|
|
||||||
|
|
||||||
|
# Audio Outputs
|
||||||
|
audio_output {
|
||||||
|
type "pulse"
|
||||||
|
name "User Pulse Audio"
|
||||||
|
device "pulse"
|
||||||
|
mixer_type "hardware"
|
||||||
|
}
|
||||||
|
|
||||||
|
audio_output {
|
||||||
|
type "fifo"
|
||||||
|
name "my_fifo"
|
||||||
|
path "/tmp/mpd.fifo"
|
||||||
|
format "44100:16:2"
|
||||||
|
}
|
Loading…
Reference in a new issue