view src/audtool/examples/infoline.sh @ 4881:a74ccf27f8f2

Better Altivec support.
author William Pitcock <nenolod@atheme.org>
date Tue, 05 May 2009 17:00:13 -0500
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