├── .gitignore ├── .vscode └── launch.json ├── ChatGPT ├── custom_instructions.txt └── support_script.txt ├── Events.ps1 ├── Helpers.ps1 ├── Install.bat ├── Installer.ps1 ├── LICENSE ├── Packager.ps1 ├── Readme.md ├── StreamMonitor.ps1 ├── UndoScript.ps1 ├── Uninstall.bat ├── internals └── DisplaySettings.cs ├── log.txt ├── output.txt ├── overrides.txt └── settings.json /.gitignore: -------------------------------------------------------------------------------- 1 | staging 2 | TDD 3 | Releases 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /ChatGPT/custom_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/ChatGPT/custom_instructions.txt -------------------------------------------------------------------------------- /ChatGPT/support_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/ChatGPT/support_script.txt -------------------------------------------------------------------------------- /Events.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/Events.ps1 -------------------------------------------------------------------------------- /Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/Helpers.ps1 -------------------------------------------------------------------------------- /Install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/Install.bat -------------------------------------------------------------------------------- /Installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/Installer.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/LICENSE -------------------------------------------------------------------------------- /Packager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/Packager.ps1 -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/Readme.md -------------------------------------------------------------------------------- /StreamMonitor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/StreamMonitor.ps1 -------------------------------------------------------------------------------- /UndoScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/UndoScript.ps1 -------------------------------------------------------------------------------- /Uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/Uninstall.bat -------------------------------------------------------------------------------- /internals/DisplaySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/internals/DisplaySettings.cs -------------------------------------------------------------------------------- /log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/log.txt -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/output.txt -------------------------------------------------------------------------------- /overrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/overrides.txt -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nonary/ResolutionAutomation/HEAD/settings.json --------------------------------------------------------------------------------