mod app; fn main() { let app = crate::app::App::default(); let native_options = eframe::NativeOptions { decorated: false, transparent: true, resizable: true, initial_window_size: Some(eframe::egui::Vec2::new(450.0, 100.0)), ..Default::default() }; eframe::run_native(Box::new(app), native_options); }