#!/bin/rc
# script for playing dfm mp3 radio, it keeps a window minimized so you can bring it to the front and kill it
if (~ $1 -p) {
echo bottom > /dev/wctl
echo -n dfm > /dev/label
usb/audio
while() { hget `{hget http://dfm.nu/dfm_1.m3u | grep http} | madplay - }
}
if not {
exec w 10 10 150 140 -scroll dfm -p
}
|