scripts/nowplaying.sh
2022-04-22 15:11:26 +03:00

9 lines
185 B
Bash
Executable File

#!/bin/bash
status=$( playerctl status )
if [ $? -eq 0 ]; then
echo $( playerctl -f '{{trunc(xesam:artist, 20)}} - {{trunc(xesam:title, 30)}}' metadata )
else
echo ""
fi
exit 0