Mercurial > audlegacy
view src/audtool/examples/infoline.sh @ 4454:a7bf5b979a05
Remove duplicated path separator conversion (backslash to slash).
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Sun, 13 Apr 2008 07:15:07 +0300 |
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