├── .gitignore ├── README.md ├── core ├── __init__.py ├── lazymux.png ├── lazymux2.png └── lzmcore.py ├── lazymux.py ├── termux_py2.sh └── termux_py3.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .history 2 | .vscode 3 | *__pycache__ 4 | *.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanix-Darker/Lazymux/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/lazymux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanix-Darker/Lazymux/HEAD/core/lazymux.png -------------------------------------------------------------------------------- /core/lazymux2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanix-Darker/Lazymux/HEAD/core/lazymux2.png -------------------------------------------------------------------------------- /core/lzmcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanix-Darker/Lazymux/HEAD/core/lzmcore.py -------------------------------------------------------------------------------- /lazymux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanix-Darker/Lazymux/HEAD/lazymux.py -------------------------------------------------------------------------------- /termux_py2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanix-Darker/Lazymux/HEAD/termux_py2.sh -------------------------------------------------------------------------------- /termux_py3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanix-Darker/Lazymux/HEAD/termux_py3.sh --------------------------------------------------------------------------------