├── .gitignore ├── Co-Op-On-Linux.sh ├── README.md ├── controller-selector ├── Makefile ├── assets │ └── UbuntuMono-R.ttf ├── controller-selector.desktop ├── icon.svg └── src │ └── main.cpp ├── create-new-profile.sh ├── generate-release.sh ├── get-devices.py └── install-steamos.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tau5/Co-op-on-Linux/HEAD/.gitignore -------------------------------------------------------------------------------- /Co-Op-On-Linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tau5/Co-op-on-Linux/HEAD/Co-Op-On-Linux.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tau5/Co-op-on-Linux/HEAD/README.md -------------------------------------------------------------------------------- /controller-selector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tau5/Co-op-on-Linux/HEAD/controller-selector/Makefile -------------------------------------------------------------------------------- /controller-selector/assets/UbuntuMono-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tau5/Co-op-on-Linux/HEAD/controller-selector/assets/UbuntuMono-R.ttf -------------------------------------------------------------------------------- /controller-selector/controller-selector.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tau5/Co-op-on-Linux/HEAD/controller-selector/controller-selector.desktop -------------------------------------------------------------------------------- /controller-selector/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tau5/Co-op-on-Linux/HEAD/controller-selector/icon.svg -------------------------------------------------------------------------------- /controller-selector/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tau5/Co-op-on-Linux/HEAD/controller-selector/src/main.cpp -------------------------------------------------------------------------------- /create-new-profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tau5/Co-op-on-Linux/HEAD/create-new-profile.sh -------------------------------------------------------------------------------- /generate-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tau5/Co-op-on-Linux/HEAD/generate-release.sh -------------------------------------------------------------------------------- /get-devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tau5/Co-op-on-Linux/HEAD/get-devices.py -------------------------------------------------------------------------------- /install-steamos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tau5/Co-op-on-Linux/HEAD/install-steamos.sh --------------------------------------------------------------------------------