├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── suggestion.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── examples ├── akkufetch.toml └── screenshot.png └── src ├── akkufetch.py ├── config.py ├── dbus_handler.py └── main.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrHeavenli/akkufetch/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrHeavenli/akkufetch/HEAD/.github/ISSUE_TEMPLATE/suggestion.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | src/__pycache__ 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrHeavenli/akkufetch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrHeavenli/akkufetch/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrHeavenli/akkufetch/HEAD/README.md -------------------------------------------------------------------------------- /examples/akkufetch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrHeavenli/akkufetch/HEAD/examples/akkufetch.toml -------------------------------------------------------------------------------- /examples/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrHeavenli/akkufetch/HEAD/examples/screenshot.png -------------------------------------------------------------------------------- /src/akkufetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrHeavenli/akkufetch/HEAD/src/akkufetch.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrHeavenli/akkufetch/HEAD/src/config.py -------------------------------------------------------------------------------- /src/dbus_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrHeavenli/akkufetch/HEAD/src/dbus_handler.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrHeavenli/akkufetch/HEAD/src/main.py --------------------------------------------------------------------------------