├── .gitignore ├── 71-nintendo-switch-procon-usb.rules ├── CMakeLists.txt ├── License.txt ├── README.md ├── install.sh ├── main.cpp └── src └── procon.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | 3 | -------------------------------------------------------------------------------- /71-nintendo-switch-procon-usb.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWaveWarden/SwitchProConLinuxUSB/HEAD/71-nintendo-switch-procon-usb.rules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWaveWarden/SwitchProConLinuxUSB/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWaveWarden/SwitchProConLinuxUSB/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWaveWarden/SwitchProConLinuxUSB/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWaveWarden/SwitchProConLinuxUSB/HEAD/install.sh -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWaveWarden/SwitchProConLinuxUSB/HEAD/main.cpp -------------------------------------------------------------------------------- /src/procon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWaveWarden/SwitchProConLinuxUSB/HEAD/src/procon.hpp --------------------------------------------------------------------------------