This commit is contained in:
Emily 2021-07-28 15:54:37 +10:00
commit b0c8191788
20 changed files with 836 additions and 0 deletions

View file

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