view audtool/examples/infoline.sh @ 1846:cc910a778b5f trunk

[svn] - Make sure to redraw shaded playlistwin when toggling bitmap fonts.
author nhjm449
date Sat, 07 Oct 2006 15:43:56 -0700
parents 6af3f8fb2ed0
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