![]() |
[WINDOWS] XBMCMessage - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116) +--- Thread: [WINDOWS] XBMCMessage (/showthread.php?tid=62880) |
[WINDOWS] XBMCMessage - Linkz - 2009-11-29 I know it probably already exists but i made my own small app that'll show you a notification message on your xbmc. I use it to tell me that a download is finished in Sabnzbd. you can download it here. Here are some screens: ![]() ![]() ![]() - Niamhy - 2009-11-29 XBMCMessage.exe "HEY!" Switch the TV off and go do your homework!!! -d 10000 yup, definite possibilities ![]() - zeus[x] - 2009-12-14 can you share the source code? nice app. thanks =) - carmenm - 2009-12-14 Wow that s great now i can try to forward growl messages to XBMC! Thanks - deepblue - 2009-12-28 Could you share the script you used to get this working with sabnzbd? I'm assuming you're passing the title of the download, etc. to show in the popup? Thanks. - lstepnio - 2009-12-30 I've been using the following in my post processing scripts: /usr/bin/wget -O - -q -t 5 "http://htpc:80/xbmcCmds/xbmcHttp?command=ExecBuiltIn¶meter=XBMC.updatelibrary(video)" > /dev/null 2>&1 sleep 60 /usr/bin/wget -O - -q -t 5 "http://htpc:80/xbmcCmds/xbmcHttp?command=ExecBuiltIn¶meter=XBMC.RunScript('special://skin/scripts/latest/latest.py')" > /dev/null 2>&1 /usr/bin/wget -O - -q -t 5 "http://htpc:80/xbmcCmds/xbmcHttp?command=ExecBuiltIn¶meter=XBMC.Notification(Television Show: $ShowName,$3,10000)" > /dev/null 2>&1 - Linkz - 2010-01-03 deepblue Wrote:Could you share the script you used to get this working with sabnzbd? I'm assuming you're passing the title of the download, etc. to show in the popup? i just use a simple command in a .bat file: Code: c:\myapps\XBMCMessage.exe "Download Finished" %3 -h htpc |