Advertisement
Guest User

addon.py

a guest
Apr 13th, 2019
16,607
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.47 KB | None | 0 0
  1. import os
  2. import xbmc
  3. import xbmcgui
  4. import xbmcaddon
  5.  
  6. __plugin__ = "steamlink"
  7. __author__ = "toast"
  8. __url__ = "https://github.com/swetoast/steamlink-launcher/"
  9. __git_url__ = "https://github.com/swetoast/steamlink-launcher/"
  10. __credits__ = "toast"
  11. __version__ = "0.0.3"
  12.  
  13. #dialog = xbmcgui.Dialog()
  14. addon = xbmcaddon.Addon(id='plugin.program.steamlink')
  15.  
  16. def main():
  17.     open('/tmp/launch_steamlink', 'w').close()
  18.     #dialog.ok("Starting Steamlink", "...")
  19.  
  20. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement