From 50776e1104b9ca6a1cda177a7a63808b293a0220 Mon Sep 17 00:00:00 2001 From: mpuchstein Date: Thu, 6 Mar 2025 08:25:17 +0100 Subject: [PATCH] fixed a formating error in the json output --- hyprman/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyprman/src/main.rs b/hyprman/src/main.rs index 08aaf7c..5511e22 100644 --- a/hyprman/src/main.rs +++ b/hyprman/src/main.rs @@ -777,7 +777,7 @@ fn run_activewindow_client(config: &Config) { match event { HyprlandEvent::ActiveWindowV2 { window_address } => { if let Some(client) = clients.get(&format!("0x{}", window_address)) { - println!("{:#?}", serde_json::to_string(&client).unwrap()); + println!("{}", serde_json::to_string(&client).unwrap()); } else { clients = query_socket(QueryModes::Clients); if let Some(client) = clients.get(&format!("0x{}", window_address)) {