Trying to fix black screen on wake...

This commit is contained in:
root
2025-10-17 16:40:24 +02:00
parent 50677dfcc9
commit cbf85a8a6d
18 changed files with 8849 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
from os.path import dirname, basename, isfile
import glob
modules = glob.glob(dirname(__file__)+"/*.py")
__all__ = [ basename(f)[:-3] for f in modules if isfile(f) and not f.endswith('__init__.py')]