https://git.tonybtw.com/oxwm.git
git://git.tonybtw.com/oxwm.git
added fix for fullscreen not applying geometries on borders.
Diff
diff --git a/src/window_manager.rs b/src/window_manager.rs
index 741d547..c350064 100644
--- a/src/window_manager.rs
+++ b/src/window_manager.rs
@@ -1846,7 +1846,8 @@ impl WindowManager {
.x(adjusted_x)
.y(adjusted_y)
.width(adjusted_width)
- .height(adjusted_height),
+ .height(adjusted_height)
+ .border_width(border_width),
)?;
}
}