From 2a23bd20440b0d1a359c6bb4385b6771f2657a3b Mon Sep 17 00:00:00 2001 From: Shoelace Date: Wed, 19 May 2021 21:44:58 +0200 Subject: Threaded to async (#58) * Add async deps * Rename blocks to 'BlockManager' * Refactor "Blocks" to own module * Make all util fn async * Remove stray println --- src/types.rs | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'src/types.rs') diff --git a/src/types.rs b/src/types.rs index 9b31946..9fd834e 100644 --- a/src/types.rs +++ b/src/types.rs @@ -1,4 +1,3 @@ -use breadx::{display::*, window::Window}; #[derive(Debug, Clone)] pub enum ThreadsData { @@ -140,21 +139,3 @@ pub struct BitCoins { pub delay: f64, } -pub struct Blocks { - pub disp: Display, - pub root: Window, -} - -impl Blocks { - pub fn new() -> Self { - let disp = Display::create(None, None).expect("Failed to create x11 connection"); - let root = disp.default_screen().root; - Self { disp, root } - } -} - -impl Default for Blocks { - fn default() -> Self { - Self::new() - } -} -- cgit v1.2.3