огледало од https://github.com/calexil/BansheeBot
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
341 B
12 lines
341 B
#!/bin/bash |
|
|
|
currentTrack="Calexil is listening to $title by $artist on $album" |
|
|
|
while : |
|
do |
|
title=$(banshee --query-title | sed 's/title: //') |
|
artist=$(banshee --query-artist | sed 's/artist: //') |
|
album=$(banshee --query-album | sed 's/album: //') |
|
echo "Calexil is listening to $title by $artist on $album" |
|
sleep 6 |
|
done
|
|
|