├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── c_desktop.py ├── install.sh ├── readme.txt └── src ├── bootloader.py ├── gui.py ├── icons ├── Bootloaders.png ├── CPUs.png ├── Checks.png ├── Down.png ├── Gpu.png ├── Icon.png ├── Logo.png ├── Networkings.png ├── Overclockings.png ├── Quest.png ├── Title_logo.png ├── Tool.png └── Up.png ├── main.py ├── resources.py ├── start.sh ├── theme.py └── update.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/README.md -------------------------------------------------------------------------------- /c_desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/c_desktop.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/install.sh -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/readme.txt -------------------------------------------------------------------------------- /src/bootloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/bootloader.py -------------------------------------------------------------------------------- /src/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/gui.py -------------------------------------------------------------------------------- /src/icons/Bootloaders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/icons/Bootloaders.png -------------------------------------------------------------------------------- /src/icons/CPUs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/icons/CPUs.png -------------------------------------------------------------------------------- /src/icons/Checks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/icons/Checks.png -------------------------------------------------------------------------------- /src/icons/Down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/icons/Down.png -------------------------------------------------------------------------------- /src/icons/Gpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/icons/Gpu.png -------------------------------------------------------------------------------- /src/icons/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/icons/Icon.png -------------------------------------------------------------------------------- /src/icons/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/icons/Logo.png -------------------------------------------------------------------------------- /src/icons/Networkings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/icons/Networkings.png -------------------------------------------------------------------------------- /src/icons/Overclockings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/icons/Overclockings.png -------------------------------------------------------------------------------- /src/icons/Quest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/icons/Quest.png -------------------------------------------------------------------------------- /src/icons/Title_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/icons/Title_logo.png -------------------------------------------------------------------------------- /src/icons/Tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/icons/Tool.png -------------------------------------------------------------------------------- /src/icons/Up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/icons/Up.png -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/main.py -------------------------------------------------------------------------------- /src/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/resources.py -------------------------------------------------------------------------------- /src/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/start.sh -------------------------------------------------------------------------------- /src/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/theme.py -------------------------------------------------------------------------------- /src/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack477/CommanderPi/HEAD/src/update.py --------------------------------------------------------------------------------