From f4c7084c7a822bd5052c62e6fcb2a586b53c0787 Mon Sep 17 00:00:00 2001 From: zachir Date: Fri, 18 Jul 2025 23:24:42 -0500 Subject: Use pipewire not pulseaudio for mpd --- mpd/mpd.conf | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'mpd') diff --git a/mpd/mpd.conf b/mpd/mpd.conf index e26dbd1..755f1c8 100644 --- a/mpd/mpd.conf +++ b/mpd/mpd.conf @@ -275,11 +275,18 @@ input { # # An example of a pulseaudio output (streaming to a remote pulseaudio server) # +#audio_output { +# type "pulse" +# name "My Pulse Output" +## server "remote_server" # optional +## sink "remote_server_sink" # optional +#} +# +# Pipewire output +# audio_output { - type "pulse" - name "My Pulse Output" -# server "remote_server" # optional -# sink "remote_server_sink" # optional + type "pipewire" + name "Pipewire Sound Server" } audio_output { -- cgit v1.2.3 From d5dc0514b30ea5237642ba4970f85e61c193edbc Mon Sep 17 00:00:00 2001 From: ZachIR Date: Sat, 9 Aug 2025 06:21:28 -0500 Subject: Use localhost for mpd The other systemd services wouldn't accept a unix socket. --- mpd/mpd.conf | 2 +- sh/profile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'mpd') diff --git a/mpd/mpd.conf b/mpd/mpd.conf index 755f1c8..6fdf1b0 100644 --- a/mpd/mpd.conf +++ b/mpd/mpd.conf @@ -79,7 +79,7 @@ sticker_file "~/.config/mpd/sticker.sql" # systemd socket activiation is in use. # # For network -# bind_to_address "127.0.0.1" +bind_to_address "127.0.0.1" # # And for Unix Socket bind_to_address "~/.config/mpd/socket" diff --git a/sh/profile b/sh/profile index e4659a5..068b6f1 100644 --- a/sh/profile +++ b/sh/profile @@ -49,7 +49,7 @@ export NOTMUCH_CONFIG="$XDG_CONFIG_HOME"/notmuch/notmuchrc export NMBGIT="$XDG_DATA_HOME"/notmuch/nmbug export WINEROOT="$XDG_DATA_HOME"/wineprefixes export WINEPREFIX="$WINEROOT"/default -export MPD_HOST="$XDG_CONFIG_HOME/mpd/socket" +export MPD_HOST="127.0.0.1" export GTK2_RC_FILES="$XDG_CONFIG_HOME"/gtk-2.0/gtkrc export RENPY_PATH_TO_SAVES="$XDG_DATA_HOME" export XINITRC="$XDG_CONFIG_HOME"/X11/xinitrc -- cgit v1.2.3