view src/audtool/examples/infoline.sh @ 3791:1570f3389835

Added tag audacious-1.4.0-beta2 for changeset 2835f4f3f388
author William Pitcock <nenolod@atheme.org>
date Fri, 19 Oct 2007 03:13:36 -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