view src/audtool/examples/infoline.sh @ 2400:4daf4fa409e0 trunk

[svn] - make a note that hashtable collisions in the plugin matrix are not only possible, but happening, and have strange side effects.
author nenolod
date Thu, 25 Jan 2007 01:52:51 -0800
parents 3149d4b1a9a9
children
line wrap: on
line source

#!/bin/sh
UNUSED=0
while [  $UNUSED -lt 1 ]; do
	PLAYTIME=$(audtool current-song-output-length)
	SONGTITLE=$(audtool current-song)
	SONGLEN=$(audtool current-song-length)
	echo -n "[>] $PLAYTIME $SONGTITLE ($SONGLEN)                     "
	sleep 1
	printf "\r"
done