https://github.com/maxomatic458/borderless
Make applications boderless-windowed, even if they don't support it
https://github.com/maxomatic458/borderless
cli gaming utility windows
Last synced: 2 months ago
JSON representation
Make applications boderless-windowed, even if they don't support it
- Host: GitHub
- URL: https://github.com/maxomatic458/borderless
- Owner: maxomatic458
- License: mit
- Created: 2025-04-18T20:50:24.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-06-18T16:41:38.000Z (about 1 year ago)
- Last Synced: 2025-09-07T12:59:21.960Z (10 months ago)
- Topics: cli, gaming, utility, windows
- Language: Rust
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.