├── .gitignore ├── README.md ├── STEAMDECK.md ├── TROUBLESHOOTING.md ├── bakkes.sh ├── install.sh ├── modcfg.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | BakkesModSetup/ 3 | __pycache__/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrumblyLiquid/BakkesLinux/HEAD/README.md -------------------------------------------------------------------------------- /STEAMDECK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrumblyLiquid/BakkesLinux/HEAD/STEAMDECK.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrumblyLiquid/BakkesLinux/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /bakkes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrumblyLiquid/BakkesLinux/HEAD/bakkes.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrumblyLiquid/BakkesLinux/HEAD/install.sh -------------------------------------------------------------------------------- /modcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrumblyLiquid/BakkesLinux/HEAD/modcfg.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | vdf==3.4 2 | --------------------------------------------------------------------------------