diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-03-22 14:21:13 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-03-22 14:21:13 +0100 |
| commit | be8acf60bf781e5078f5583023f6a141cf21390d (patch) | |
| tree | 7873fbff04771d69bd570dcae9599546c4a3ffb3 | |
| parent | 903f38025e6a3018838127a562a3fecc0110858e (diff) | |
Add MPD
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | config/mpd/mpd.conf | 18 | ||||
| -rwxr-xr-x | install | 3 |
3 files changed, 25 insertions, 0 deletions
@@ -11,3 +11,7 @@ config/karabiner/automatic_backups/* config/aerc/accounts.conf config/emacs/elpa config/nvim/oleoboard.saved +config/mpd/database +config/mpd/state +config/mpd/sticker.sql +config/mpd/music diff --git a/config/mpd/mpd.conf b/config/mpd/mpd.conf new file mode 100644 index 0000000..1d9c985 --- /dev/null +++ b/config/mpd/mpd.conf @@ -0,0 +1,18 @@ +bind_to_address "127.0.0.1" +bind_to_address "::1" +bind_to_address "/run/mpd/socket" + +db_file "~/.config/mpd/database" +state_file "~/.config/mpd/state" +playlist_directory "~/.config/mpd/playlists" +sticker_file "~/.config/mpd/sticker.sql" + +audio_output { + type "pulse" + name "Music" +} + +music_directory "~/.config/mpd/music" + +zeroconf_enabled "yes" +zeroconf_name "MPD @ %h" @@ -89,6 +89,9 @@ ln -fns ../.dotfiles/config/swaylock ~/.config/swaylock # waybar ln -fns ../.dotfiles/config/waybar ~/.config/waybar +# mpd +ln -fns ../.dotfiles/config/mpd ~/.config/mpd + # age recipients ln -fns .dotfiles/age-recipients ~/.age-recipients |