view src/audtool/examples/infoline.sh @ 2790:cbb410e30d73 trunk

[svn] - update chinese translation. closes #905.
author nenolod
date Wed, 23 May 2007 22:57:07 -0700
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