dotfiles/dot_scripts/executable_player.sh

9 lines
191 B
Bash

#!/bin/sh
player_status=$(playerctl status 2> /dev/null)
if [ "$player_status" = "Playing" ]; then
echo "$(playerctl metadata artist) - $(playerctl metadata title)"
else
echo "-"
fi