# borderless
borderless is a windows only cli tool that makes it possible to run applications in borderless-windows mode even if the application does not support it natively.
## Usage
Let's say you want to run a game in borderless mode, but it does not support it natively.
You can use borderless to run the game in borderless mode:
First inside the game, enable windowed mode in the settings and choose the resolution of your display.
```bat
borderless.exe --path "C:\Path\To\Game.exe"
```
Some games spawn the Window under a different process, in this case you can use the `--name` option instead:
```bat
start "" "C:\Path\To\Game.exe"
REM give the game some time to spawn the window
timeout /t 5 /nobreak >nul
borderless --name "Game.exe"
```
### Reference
[Borderless-Gaming](https://github.com/Codeusa/Borderless-Gaming) was used as inspiration and basic reference for this project. No project-specific code was copied or used as reference, therefore `borderless` should not be considered a derivative work of Borderless-Gaming.