Files
dotfiles/Scripts/.local/scripts/status/music
dx 45b80e8e67 ~set_bar -> scripts/status/*
Decomposed the set_bar monolith script into seperate 'block' scripts
2020-06-06 19:31:36 +01:00

11 lines
192 B
Bash
Executable File

#!/usr/bin/env bash
name="$(mpc -f '%title%' | head -1)"
offline="$(echo $name | grep -E 'volume:|MPD')"
if [[ $offline ]]
then
name="MPD off"
else
name="Playing: $name"
fi
echo $name