From 9e4889daea7e75189e325c02094d137854a6cbc8 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Sun, 24 May 2026 18:30:12 +0200 Subject: [PATCH] Remove old mpd notes --- sound/mpd.md | 53 ---------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 sound/mpd.md diff --git a/sound/mpd.md b/sound/mpd.md deleted file mode 100644 index 45a35d6..0000000 --- a/sound/mpd.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: mpd -tags: -- sound ---- -# Setup - -## Configuration - -This is a minimum configuration file for /etc/mpd.conf - - -> music_directory "/var/lib/mpd/music" -> -> playlist_directory "/var/lib/mpd/playlists" -> -> db_file "/var/lib/mpd/mpd.db" -> -> -> pid_file "/run/mpd/mpd.pid" -> -> state_file "/var/lib/mpd/mpdstate" -> -> -> user "mpd" -> -> audio_output { -> type "pulse" -> name "My Pulse Output" -> } -> -> audio_output { -> type "fifo" -> name "my_fifo" -> path "/tmp/mpd.fifo" -> format "44100:16:2" -> } - - -You can use alsa instead of pulse, but don't unless you're on a Pi. - -Since this is run as the mpd user, you'll need to grant that user pulse acceess, often with the user-group `pulse` or `pulse-access`, but your distro may vary. - -```sh -sudo usermod -aG pulse-access mpd -``` - -Working with mpd will be easier if you have access to its files, so maybe: - -```sh -sudo usermod -aG mpd $USER -``` -