diff options
author | frosty <passedgoandgot200@disroot.org> | 2025-07-04 07:04:24 -0400 |
---|---|---|
committer | frosty <passedgoandgot200@disroot.org> | 2025-07-04 07:04:24 -0400 |
commit | a208f61c7ade1f6ced893254d1aff93f8448c697 (patch) | |
tree | 581daa5a7489f8555324a4ab1fde41bb76da14f4 /.config | |
parent | 931d08e90eeacd8ba52a301d700c52d698270441 (diff) | |
download | dotfiles-a208f61c7ade1f6ced893254d1aff93f8448c697.tar.gz dotfiles-a208f61c7ade1f6ced893254d1aff93f8448c697.zip |
add mpd
Diffstat (limited to '.config')
-rw-r--r-- | .config/mpd/.gitignore | 2 | ||||
-rw-r--r-- | .config/mpd/mpd.conf | 12 |
2 files changed, 14 insertions, 0 deletions
diff --git a/.config/mpd/.gitignore b/.config/mpd/.gitignore new file mode 100644 index 0000000..da17ab0 --- /dev/null +++ b/.config/mpd/.gitignore @@ -0,0 +1,2 @@ +database +playlists/ diff --git a/.config/mpd/mpd.conf b/.config/mpd/mpd.conf new file mode 100644 index 0000000..8bfe396 --- /dev/null +++ b/.config/mpd/mpd.conf @@ -0,0 +1,12 @@ +music_directory "~/music" +db_file "~/.config/mpd/database" +playlist_directory "~/.config/mpd/playlists" +log_file "syslog" + +auto_update "yes" +restore_paused "yes" + +audio_output { + type "pipewire" + name "PipeWire" +} |