forked from Steveb1968/script.pseudotv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.py
26 lines (21 loc) · 761 Bytes
/
service.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# modules
import xbmc
import xbmcaddon
# get addon info
ADDON = xbmcaddon.Addon(id='script.pseudotv')
ADDON_ID = ADDON.getAddonInfo('id')
LANGUAGE = ADDON.getLocalizedString
ADDON_NAME = ADDON.getAddonInfo('name')
ICON = ADDON.getAddonInfo('icon')
timer_amounts = [0, 5, 10, 15, 20]
IDLE_TIME = timer_amounts[int(ADDON.getSetting("timer_amount"))]
Msg = ADDON.getSetting('notify')
Enabled = ADDON.getSetting('enable')
def autostart():
if (Msg == 'true'):
xbmc.executebuiltin("Notification( %s, %s, %d, %s)" % (ADDON_NAME, LANGUAGE(30030), 4000, ICON))
xbmc.sleep(IDLE_TIME*1000)
xbmc.executebuiltin("RunScript("+ADDON_ID+")")
xbmc.log("AUTOSTART PTV: Service Started...")
if (Enabled == 'true'):
autostart()