summary refs log tree commit diff
path: root/src/main.rs
blob: d906a66dd0d8109df9f8421cf8e1aa20c8fcc39d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
static GLIB_LOGGER: glib::GlibLogger = glib::GlibLogger::new(
    glib::GlibLoggerFormat::Plain,
    glib::GlibLoggerDomain::CrateTarget,
);

fn main() {
    log::set_logger(&GLIB_LOGGER).unwrap();
    log::set_max_level(log::LevelFilter::Debug);

    relm4_icons::initialize_icons();

    let app = relm4::RelmApp::new(bowl::APPLICATION_ID);
    relm4::set_global_css(".tag-pill button {
    min-height: 30px;
    min-width: 30px;
}");

    app.run_async::<bowl::App>(());
}