A simple tool to make any window borderless. Perfect for games and applications that don't support borderless windowed mode natively.
- Make any window borderless
- Simple and easy to use interface
- Supports most Windows applications and games
- Version controlled releases
- Blacklist functionality for excluding applications
- Download the latest release from the Releases page
- Extract the ZIP file
- Run
Borderless-Games-and-Apps.exe
- Python 3.13+
- UV package installer (recommended)
- Virtual environment (recommended)
# Clone the repository
git clone https://github.com/cherzlieb/py-borderless-games-and-apps
# Create virtual environment
python -m venv .venv
# Activate virtual environment (Windows)
.venv\Scripts\activate
# Install UV (if not already installed)
python -m pip install uv
# Install dependencies using UV
uv pip install -r requirements.txtTo create a new release:
- Run the release script:
python scripts/create_release.py- Choose version increment:
- MAJOR: for incompatible changes
- MINOR: for adding functionality in a backward compatible manner
- PATCH: for backward compatible bug fixes
- Empty: keep current version
The script will:
- Update version number
- Build the executable
- Create a release package
- Generate a ZIP file
See pyproject.toml for detailed dependencies.