├── .gitignore ├── README.md ├── _example ├── an.sh ├── cmd_console.py ├── magisk │ ├── META-INF │ │ └── com │ │ │ └── google │ │ │ └── android │ │ │ ├── update-binary │ │ │ └── updater-script │ ├── magisk.zip │ ├── module.prop │ ├── service.sh │ └── skip_mount ├── win.py ├── win.py.bat ├── win.py.bat.vbs └── win.py.bat.vbs - 快捷方式.lnk ├── data.py ├── example.jsonc ├── img ├── image1.png ├── image2.png └── server-1.png ├── install_lib.bat ├── install_lib.sh ├── jsonc_parser ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── __init__.py ├── errors.py ├── jsonc_parser │ └── README.md ├── parser.py └── setup.py ├── requirements.txt ├── server.py ├── start.py ├── static └── favicon.ico ├── templates ├── index.html └── style.css ├── utils.py └── 前台应用状态.macro /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/README.md -------------------------------------------------------------------------------- /_example/an.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/_example/an.sh -------------------------------------------------------------------------------- /_example/cmd_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/_example/cmd_console.py -------------------------------------------------------------------------------- /_example/magisk/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/_example/magisk/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /_example/magisk/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK -------------------------------------------------------------------------------- /_example/magisk/magisk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/_example/magisk/magisk.zip -------------------------------------------------------------------------------- /_example/magisk/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/_example/magisk/module.prop -------------------------------------------------------------------------------- /_example/magisk/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/_example/magisk/service.sh -------------------------------------------------------------------------------- /_example/magisk/skip_mount: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_example/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/_example/win.py -------------------------------------------------------------------------------- /_example/win.py.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/_example/win.py.bat -------------------------------------------------------------------------------- /_example/win.py.bat.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/_example/win.py.bat.vbs -------------------------------------------------------------------------------- /_example/win.py.bat.vbs - 快捷方式.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/_example/win.py.bat.vbs - 快捷方式.lnk -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/data.py -------------------------------------------------------------------------------- /example.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/example.jsonc -------------------------------------------------------------------------------- /img/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/img/image1.png -------------------------------------------------------------------------------- /img/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/img/image2.png -------------------------------------------------------------------------------- /img/server-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/img/server-1.png -------------------------------------------------------------------------------- /install_lib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/install_lib.bat -------------------------------------------------------------------------------- /install_lib.sh: -------------------------------------------------------------------------------- 1 | pip3 install -r requirements.txt --break-system-packages -------------------------------------------------------------------------------- /jsonc_parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/jsonc_parser/.gitignore -------------------------------------------------------------------------------- /jsonc_parser/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/jsonc_parser/LICENSE.txt -------------------------------------------------------------------------------- /jsonc_parser/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md -------------------------------------------------------------------------------- /jsonc_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/jsonc_parser/README.md -------------------------------------------------------------------------------- /jsonc_parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jsonc_parser/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/jsonc_parser/errors.py -------------------------------------------------------------------------------- /jsonc_parser/jsonc_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/jsonc_parser/jsonc_parser/README.md -------------------------------------------------------------------------------- /jsonc_parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/jsonc_parser/parser.py -------------------------------------------------------------------------------- /jsonc_parser/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/jsonc_parser/setup.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/server.py -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/start.py -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/templates/style.css -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/utils.py -------------------------------------------------------------------------------- /前台应用状态.macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HBWuChang/sleepy/HEAD/前台应用状态.macro --------------------------------------------------------------------------------