diff options
| author | Petri Hienonen <petri.hienonen@gmail.com> | 2025-10-18 15:08:35 +0300 |
|---|---|---|
| committer | Petri Hienonen <petri.hienonen@gmail.com> | 2025-10-18 15:08:35 +0300 |
| commit | c105a7520ae1d0d9f59e3a6325c0b73f36ed85ed (patch) | |
| tree | f0ce2bf77bd272b73a762bd0a868e0d0e7b842a3 /src/wayland.rs | |
| parent | 1dd8bd776c516d122cb849c1c681a6bdbff30b06 (diff) | |
| download | wallpaper-c105a7520ae1d0d9f59e3a6325c0b73f36ed85ed.tar.zst | |
Debug
Diffstat (limited to '')
| -rw-r--r-- | src/wayland.rs | 9 |
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(()) } |
