Files
2026-03-12 22:26:26 -04:00

11 lines
156 B
Bash
Executable File

#!/bin/bash
c_song=$(mpc current)
if [ -n "${c_song}" ]; then
p_status=$(mpc status "%state%")
echo -e "[${p_status}] ${c_song}"
else
echo -n "mpd"
fi