├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── .gitignore ├── LICENSE ├── README.md ├── enable-daemon ├── install ├── powerplan.service ├── src ├── README.md ├── __init__.py ├── config.py ├── cpu.py ├── log.py ├── monitor.py ├── powerplan.py ├── powersupply.py ├── process.py ├── shell.py └── systemstatus.py └── uninstall /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/README.md -------------------------------------------------------------------------------- /enable-daemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/enable-daemon -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/install -------------------------------------------------------------------------------- /powerplan.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/powerplan.service -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/src/README.md -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.9.5' 2 | -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/src/config.py -------------------------------------------------------------------------------- /src/cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/src/cpu.py -------------------------------------------------------------------------------- /src/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/src/log.py -------------------------------------------------------------------------------- /src/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/src/monitor.py -------------------------------------------------------------------------------- /src/powerplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/src/powerplan.py -------------------------------------------------------------------------------- /src/powersupply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/src/powersupply.py -------------------------------------------------------------------------------- /src/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/src/process.py -------------------------------------------------------------------------------- /src/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/src/shell.py -------------------------------------------------------------------------------- /src/systemstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/src/systemstatus.py -------------------------------------------------------------------------------- /uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haptein/powerplan/HEAD/uninstall --------------------------------------------------------------------------------