6 lines
162 B
Bash
Executable File
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
|