From 5f300bb0c1fa8e15cef71cfd927010e12974094d Mon Sep 17 00:00:00 2001 From: Dilan Gilluly Date: Mon, 3 Nov 2025 21:41:44 -0500 Subject: [PATCH] mpd-song now shows mpd when nothing is playing --- .config/scripts/mpd-song.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/scripts/mpd-song.sh b/.config/scripts/mpd-song.sh index b263929..05afc77 100755 --- a/.config/scripts/mpd-song.sh +++ b/.config/scripts/mpd-song.sh @@ -2,4 +2,6 @@ if mpc status | grep -q "\[playing\]"; then mpc status | head -1 +else + echo -n "mpd" fi