motte 0.1.3

Under-construction Linux desktop USB formatter and ISO flasher.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use eframe::egui;

fn main() -> eframe::Result<()> {
    let options = eframe::NativeOptions {
        viewport: egui::ViewportBuilder::default()
            .with_title("Motte")
            .with_inner_size([1060.0, 720.0])
            .with_min_inner_size([680.0, 500.0]),
        ..Default::default()
    };

    eframe::run_native(
        "Motte",
        options,
        Box::new(|cc| Ok(Box::new(motte::app::MotteApp::new(cc)))),
    )
}