You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
826 B
15 lines
826 B
#!/bin/bash |
|
source $(dirname $0)/config.sh |
|
XPOS=$((1470 + $XOFFSET)) |
|
WIDTH="375" |
|
|
|
url=http://www.last.fm/music/$(mpc current -f %artist% | sed 's/[ \/]/+/g') |
|
urlalbum=$url/$(mpc current -f %album% | sed 's/[ \/]/+/g') |
|
bio=$(wget -qO- $url | lynx -dump -nolist -stdin | tail -n+100 | awk ' /Biography/ {flag=1;next} /Edit bio/{flag=0} flag { print }') |
|
biol=$(wget -qO- $url | lynx -dump -nolist -stdin | tail -n+100 | awk ' /Biography/ {flag=1;next} /Edit bio/{flag=0} flag { print }' | wc -l) |
|
LINES=$(( $biol + 3 )) |
|
if [[ $LINES -eq 3 ]]; then |
|
bio="No bio found" |
|
fi |
|
|
|
(echo "^fg($highlight)Music Info "; echo "^fg($highlight)BIOGRAPHY"; echo " "; echo "$bio"; echo " "; sleep 15) | dzen2 -fg $foreground -bg $background -fn $FONT -x $XPOS -y $YPOS -w $WIDTH -l $LINES -e 'onstart=uncollapse,hide;button1=exit;button3=exit'
|
|
|