List soundcards
[mirrors/Programs.git] / bash / lastfm / lastfm.bash
CommitLineData
21c4e167
H
1#!/bin/bash
2BROWSER='epiphany';
3BROWSER='firefox'
4BROWSARGS='-width 300 -height 150';
5DIALOG='gdialog';
6
7lastfm-play() {
8 URL="http://www.last.fm/webclient/popup/?radioURL=lastfm%3A%2F%2Fartist%2F$1%2Fsimilarartists&resourceID=undefined&resourceType=undefined";
9 "$BROWSER" $BROWSARGS "$URL";
10}
11
12tmpfile="/tmp/lastfm-$$.tmp";
13"$DIALOG" --backtitle 'Last.fm tuner by <~~Harvie 2oo8' --title 'Search' --inputbox "Artist" 0 0 2>"$tmpfile";
14if [ "$?" != 1 ]; then
15 lastfm-play "$(cat "$tmpfile")";
16fi;
17
This page took 0.169419 seconds and 4 git commands to generate.