dotfiles/dot_scripts/executable_player.sh

9 lines
191 B
Bash
Raw Normal View History

2021-07-28 05:54:37 +00:00
#!/bin/sh
player_status=$(playerctl status 2> /dev/null)
if [ "$player_status" = "Playing" ]; then
echo "$(playerctl metadata artist) - $(playerctl metadata title)"
else
echo "-"
fi