forked from libretro/Lakka-LibreELEC
0470f51bc8
NextPVR 6.1.0 with netcore 6 with configuration
17 lines
342 B
Python
17 lines
342 B
Python
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
import xbmc
|
|
import xbmcaddon
|
|
|
|
class Monitor(xbmc.Monitor):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
xbmc.Monitor.__init__(self)
|
|
|
|
def onSettingsChanged(self):
|
|
pass
|
|
|
|
if __name__ == "__main__":
|
|
Monitor().waitForAbort()
|