#!/bin/bash

launcher_options () {
	launcher=flixster
}

launcher () {
	case $launcher in
		flixster )
			firefox "$URL"&
		;;
		imdb )
			query=$avatar_title
			firefox "http://www.google.com/search?hl=en&q=site%3Aimdb.com%2Ftitle+$query&btnI=I%27m+Feeling+Lucky&meta="&
		;;
		* )
			#If $launcher is epiphany, opera or any other this will launch the default url:
			$launcher "$URL"&
	esac
}
