]> git.rmz.io Git - dotfiles.git/commitdiff
mpd: add configs
authorSamir Benmendil <samir.benmendil@gmail.com>
Sun, 12 Jan 2014 16:11:22 +0000 (17:11 +0100)
committerSamir Benmendil <samir.benmendil@gmail.com>
Sun, 12 Jan 2014 16:11:22 +0000 (17:11 +0100)
Makefile
mpd/mpd.conf [new file with mode: 0644]

index 790826f78bc9b02e6787ec9fd2cab786821f8247..df882948c5851ab0bde84ce779ac95aab26259b5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ APATH := $(realpath .)
 
 FILES := bin
 DOTFILES := aliases bash* conky* flexget git* goobookrc msmtp* mutt ncmpcpp offlineimap* vim* weechat xbindkeysrc Xmodmap Xresources xprofile zsh*
-CONFIGFILES := retroarch compton.conf mimeo.conf
+CONFIGFILES := retroarch compton.conf mimeo.conf mpd
 
 .PHONY: install $(FILES) $(DOTFILES) $(CONFIGFILES)
 install: $(FILES) $(DOTFILES) $(CONFIGFILES)
diff --git a/mpd/mpd.conf b/mpd/mpd.conf
new file mode 100644 (file)
index 0000000..7e1d303
--- /dev/null
@@ -0,0 +1,19 @@
+# An example configuration file for MPD can be found at:
+# /usr/share/doc/mpd/
+
+music_directory     "~/music"
+playlist_directory  "~/.local/share/mpd/playlists"
+db_file             "~/.local/share/mpd/database"
+log_file            "~/.local/share/mpd/log"
+pid_file            "~/.local/share/mpd/pid"
+state_file          "~/.local/share/mpd/state"
+sticker_file        "~/.local/share/mpd/sticker.sql"
+
+input {
+        plugin "curl"
+}
+
+audio_output {
+        type            "pulse"
+        name            "My Pulse Output"
+}