├── .gitattributes ├── .github └── CODEOWNERS ├── .gitignore ├── IddSampleDriver └── option.txt ├── LICENSE ├── README.md ├── VirtualDisplayDriver └── vdd_settings.xml ├── bin ├── Tools.zip └── safety_scan.png ├── src ├── start_streaming.ps1 └── stop_streaming.ps1 ├── start_streaming.bat ├── stop_streaming.bat └── stop_streaming_task.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fehbari/sunshine-scripts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @fehbari 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fehbari/sunshine-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /IddSampleDriver/option.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fehbari/sunshine-scripts/HEAD/IddSampleDriver/option.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fehbari/sunshine-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fehbari/sunshine-scripts/HEAD/README.md -------------------------------------------------------------------------------- /VirtualDisplayDriver/vdd_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fehbari/sunshine-scripts/HEAD/VirtualDisplayDriver/vdd_settings.xml -------------------------------------------------------------------------------- /bin/Tools.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fehbari/sunshine-scripts/HEAD/bin/Tools.zip -------------------------------------------------------------------------------- /bin/safety_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fehbari/sunshine-scripts/HEAD/bin/safety_scan.png -------------------------------------------------------------------------------- /src/start_streaming.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fehbari/sunshine-scripts/HEAD/src/start_streaming.ps1 -------------------------------------------------------------------------------- /src/stop_streaming.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fehbari/sunshine-scripts/HEAD/src/stop_streaming.ps1 -------------------------------------------------------------------------------- /start_streaming.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fehbari/sunshine-scripts/HEAD/start_streaming.bat -------------------------------------------------------------------------------- /stop_streaming.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fehbari/sunshine-scripts/HEAD/stop_streaming.bat -------------------------------------------------------------------------------- /stop_streaming_task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fehbari/sunshine-scripts/HEAD/stop_streaming_task.xml --------------------------------------------------------------------------------