oxwm

https://git.tonybtw.com/oxwm.git git://git.tonybtw.com/oxwm.git

added fix for fullscreen not applying geometries on borders.

Commit
0724525ac8f68deba09e13a26d501f1e4e7b160a
Parent
a3649bf
Author
tonybanters <tonybanters@gmail.com>
Date
2025-11-08 00:19:51

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),
                 )?;
             }
         }