Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Bash by registered user farex ( 17 years ago )
#!/bin/bash
FONT=-microsoft-verdana-bold-i-*-*-26-*-*-*-*-*-*-r
COLOR=red
SHADOW=0
TOTALSEC=`mocp --info | egrep "TotalSec\:" | sed 's/TotalSec\:\ //'`
CURRENTSEC=`mocp --info | egrep "CurrentSec\:" | \sed 's/CurrentSec\:\ //'`
PERCENT=`echo "$CURRENTSEC*100/$TOTALSEC" | bc`
mocp --info | \
egrep "^Artist\:|^SongTitle\:|^Album\:" | \
osd_cat --offset=10 --indent=10 --color=$COLOR --font=$FONT \
--shadow=$SHADOW &
osd_cat --offset=120 --indent=10 --color=$COLOR --font=$FONT \
--shadow=$SHADOW --barmode=percentage --percentage=$PERCENT
Revise this Paste