view src/audtool/examples/infoline.sh @ 4866:c97b4291ec8b

We do not care about hook_find(name) past the if-statement. Do not assign to a variable.
author Tony Vroon <chainsaw@gentoo.org>
date Mon, 20 Apr 2009 00:12:18 +0100
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