scripts/deprecated/nowplaying.sh
Ferit Yiğit BALABAN 7f4d328d77
more deprecations
Signed-off-by: Ferit Yiğit BALABAN <fyb@fybx.dev>
2024-01-15 22:47:27 +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