From 3399108b190a780ddf0af8533cc2c99b726e8c54 Mon Sep 17 00:00:00 2001 From: Holger Rapp Date: Wed, 20 Oct 2021 22:51:50 +0200 Subject: [PATCH] Remove wrong print statements. --- src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index c1f6b33..23462ad 100644 --- a/src/main.rs +++ b/src/main.rs @@ -144,7 +144,6 @@ fn get_screens() -> Vec { }) } }; - println!("#sirver rv: {:#?}", rv); // The window frames have their origins in the bottom left of the screen, y going upwards. // However, screen bounds have the origin at the top left going down. We need to convert here // to get them in the screen space. @@ -191,7 +190,6 @@ fn main() { } screen.expect("Unknown screen index.") }; - println!("#sirver screens: {:#?}", screens); let screen = match params.screen { ScreenSelector::Index(index) => get_screen_by_index(index), ScreenSelector::Char(c) => match c {