A Bevy plugin for window state persistence and multi-monitor utilities.
Originally created as a mechanism to restore the PrimaryWindow to its last known position when launching - the way you expect an app to work. I quickly discovered that on my MacBook Pro with Retina display (scale factor 2.0) and my external monitor (scale factor 1.0), there were numerous issues with saving/restoring positions across differently-scaled monitors.
The first discovered issue is that winit uses the scale factor of the focused window from which you launch the application. And if the target monitor for the app has a different scale factor, then that will get factored into the size and position calculations resulting in something you definitely don't want.
bevy_window_manager plugin works around this issue by using winit directly to capture actual monitor position/size/scale and comparing it to the target position/size for the window and does the conversions correctly.
Windows has similar scale factor issues, plus additional quirks like invisible window borders that prevent precise placement. Linux X11 has its own quirks with window manager keyboard shortcuts not firing position events. This plugin now supports macOS, Windows, and Linux (X11 and Wayland) with workarounds for platform-specific issues (see Platform Support for details).
Future directions include comprehensive multi-monitor lifecycle support.
use bevy::prelude::*;
use bevy_window_manager::WindowManagerPlugin;
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_plugins(WindowManagerPlugin)
.run();
}For a complete interactive example with fullscreen mode switching, run:
cargo run --example restore_windowThis crate exposes several types for working with monitors and windows beyond the plugin itself. See docs.rs for full API documentation.
Query available monitors sorted by position:
monitors.at(x, y)– Find the monitor containing a positionmonitors.by_index(index)– Get monitor by sorted indexmonitors.first()– Get the first monitor (index 0)monitors.closest_to(x, y)– Find the closest monitor to a position
Information about a single monitor: index, scale, position, and size.
Requires use bevy_window_manager::WindowExt:
window.monitor(&monitors)– Get the monitor this window is currently onwindow.effective_mode(&monitors)– Detect effective window mode (handles macOS green button fullscreen)window.set_position_and_size(position, size)– Set both in one call
WindowManagerPlugin– Uses executable name for config directoryWindowManagerPlugin::with_app_name("name")– Custom app nameWindowManagerPlugin::with_path(path)– Full control over state file path
| bevy_window_manager | Bevy |
|---|---|
| 0.18 | 0.18 |
| 0.17 | 0.17 |
| Platform | Status | Notes |
|---|---|---|
| macOS | ✅ Tested | Native hardware with multiple monitors at different scales |
| Windows | ✅ Tested | VMware VM with multi-monitor, different scale factors |
| Linux X11 | ✅ Tested | Position and size restoration with keyboard snap workaround |
| Linux Wayland | ✅ Tested | Size + fullscreen only (Wayland cannot query/set position) |
Note on Windows testing: Windows support has been tested in a VMware virtual machine with multiple monitors at different scale factors. Native Windows installations may behave differently - if you encounter issues, please open an issue with details about your monitor configuration.
Note on Linux support: Linux support has been tested on KDE Plasma (Asahi Linux on Fedora). X11 includes a workaround for keyboard snap shortcuts (Meta+Arrow) that don't fire position events (winit #4443). Wayland has an inherent limitation: clients cannot query or set window position, so only size and fullscreen state can be restored. If you encounter issues, please open an issue with details about your distribution, desktop environment, and monitor configuration.
This plugin includes workarounds for known issues in winit and Bevy. Each workaround is behind a feature flag, and all are enabled by default.
This design allows:
- Easy testing of upstream fixes - disable a workaround to verify an upstream fix works
- Opt-out flexibility - if a workaround doesn't suit your setup, you can exclude it
- Minimal code when not needed - platform-specific workarounds are compiled out on other platforms
| Feature | Platform | Issue | Description |
|---|---|---|---|
workaround-winit-4341 |
Windows | winit #4041 | DPI drag bounce fix |
workaround-winit-3124 |
Windows | winit #3124 | DX12/DXGI fullscreen crash fix |
workaround-winit-4443 |
Linux X11 | winit #4443 | Keyboard snap position fix |
workaround-winit-4440 |
Windows, macOS, Linux X11 | winit #4440 | Multi-monitor scale factor compensation |
workaround-winit-4441 |
macOS | winit #4441 | Window size reset on drag-back fix |
To test without a specific workaround (e.g., to verify an upstream fix):
# Disable all workarounds
cargo run --example restore_window --no-default-features
# Disable only workaround-winit-4441 (enable all others)
cargo run --example restore_window --no-default-features --features workaround-winit-4341,workaround-winit-3124,workaround-winit-4440,workaround-winit-4443In your Cargo.toml, you can selectively enable features:
[dependencies]
bevy_window_manager = { version = "0.18", default-features = false, features = ["workaround-winit-4341"] }bevy_window_manager is free, open source and permissively licensed! Except where noted (below and/or in individual files), all code in this repository is dual-licensed under either:
- MIT License (LICENSE-MIT or http://opensource.org/licenses/MIT)
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.