Code: Select all
--def "exec=pushbullet -apikey \"apikey\" -title \"[Filebot] New episode of {n} is here! \" -message \"{s00e00} - {t} has been downloaded.\""
I tried using this below code in a batch file and calling the batch file from "exec=/path/to/batch" but it turns out calling a batch file doesn't parse the filebot arguments.
Code: Select all
@echo off
title PUSHBULLET
IF "%$group%" == "tvs" goto tvs
IF "%$group%" == "mov" goto mov
:tvs
pushbullet -apikey "apikey" -title "[Filebot] New episode of {n} is here! " -message "{s00e00} - {t} has been downloaded."
:mov
pushbullet -apikey "apikey" -title "[Filebot] The movie {n} has been downloaded! " -message "Ready to be watched."
exit