scripts/nowplaying.sh
2022-07-16 01:41:13 +03:00

18 lines
362 B
Bash
Executable File

#!/bin/bash
stat=$( playerctl status )
msg=$( playerctl -f '{{trunc(xesam:artist, 15)}} - {{trunc(xesam:title, 30)}}' metadata )
if [ "$stat" = "Playing" ]; then
if [ "$msg" = " - " ]; then
echo "No metadata"
else
echo "$msg"
fi
else
if [ "$stat" = "Paused" ]; then
echo "Paused"
else
echo ""
fi
fi
exit 0