kozec / sc-controller

User-mode driver and GTK3 based GUI for Steam Controller
GNU General Public License v2.0
1.53k stars 129 forks source link

[Feature Request] Autostart sc-controller when dolphin emulator starts #471

Open Cytomax55 opened 5 years ago

Cytomax55 commented 5 years ago

Starting off with i appreciate your work

The only way to get dolphin emulator to work on ubuntu 18.04 + is sc-controller from my understanding

Is there a way to get sc-controller to autostart when dolphin emulator starts and then turn off when dolphin emulator turns off... or instead of with dolphin just make it autostart with steam... or you could even specify certain games would be nice...

just a feature request

kozec commented 5 years ago

You can just make script that starts scc-daemon (background process that does input emulation) and stops it after dolphin is finished.

Something like

#!/bin/bash
scc-daemon start
dolphin
scc-daemon stop

... should be enough.