Menu
BifrOSt-Apps
publicLatest change f67fd8437552caf5eb9371b0012e81d27c807ca3 - Add native RÚV television application by Ólafur Búi Ólafsson
// SPDX-License-Identifier: MIT
use cosmic::app::Settings;
use cosmic::iced::Size;
fn main() -> cosmic::iced::Result {
ruv::localize::localize();
let settings = Settings::default()
.size(Size::new(1280.0, 800.0))
.theme(cosmic::Theme::dark());
cosmic::app::run::<ruv::app::App>(settings, ())
}