https://github.com/helmare/windowsscalewarning
Warns you an application is opening that'll be poorly affected by the Windows scale feature.
https://github.com/helmare/windowsscalewarning
Last synced: about 1 year ago
JSON representation
Warns you an application is opening that'll be poorly affected by the Windows scale feature.
- Host: GitHub
- URL: https://github.com/helmare/windowsscalewarning
- Owner: Helmare
- License: unlicense
- Created: 2022-05-21T17:15:14.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-19T12:24:41.000Z (almost 4 years ago)
- Last Synced: 2024-01-25T02:20:55.587Z (over 2 years ago)
- Language: C#
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WindowsScaleWarning
Warns you an application is opening that'll be poorly affected by the Windows scale feature.
## How To
Once you open the application, it will start running in the background. If an application opens which is listed in the `watch.json` file, a window will popup warning you
there is a problematic application being launched. The popup gives you an option to ignore the warning or kill the app.
## Configuration
You can configure the application using the `watch.json` file, which allows you to add more applications that
WSW should warn you about.
```json
[
{
"name": "Dead By Daylight",
"process": "DeadByDaylight-Win64-Shipping",
"auto-kill": false
}
]
```
Here is a detailed explenation of each property in the watch objects.
Name | Description | Default
---- | ----------- | --------
`name` | Human friendly name of the application | **REQUIRED**
`process` | Name of the process without `.exe` This can be found in the task manager. | **REQUIRED**
`auto-kill` | Auto kills the application, but still shows a popup. | `false`