aboutsummaryrefslogtreecommitdiffstats
path: root/src/wayland.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wayland.rs')
-rw-r--r--src/wayland.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/wayland.rs b/src/wayland.rs
index f9c396d..54699ec 100644
--- a/src/wayland.rs
+++ b/src/wayland.rs
@@ -30,10 +30,11 @@ pub fn configure_hyprland_window(
// For Hyprland, we can use hyprctl to configure the window
// This requires the window to be created first, so we'll do this after creation
if let Ok(output) = Command::new("which").arg("hyprctl").output()
- && output.status.success() {
- info!("Hyprland detected, will configure window properties");
- // We'll configure the window after it's mapped in the event loop
- }
+ && output.status.success()
+ {
+ info!("Hyprland detected, will configure window properties");
+ // We'll configure the window after it's mapped in the event loop
+ }
Ok(())
}