scripts/nowplaying.sh
2022-04-22 02:23:06 +03:00

6 lines
162 B
Bash
Executable File

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