2024-03-14 18:47:41 +01:00
|
|
|
const VERSION: &str = env!("CARGO_PKG_VERSION");
|
2023-09-17 02:30:40 -07:00
|
|
|
|
|
|
|
|
fn main() -> cosmic::iced::Result {
|
2024-03-14 18:47:41 +01:00
|
|
|
tracing_subscriber::fmt::init();
|
|
|
|
|
let _ = tracing_log::LogTracer::init();
|
|
|
|
|
|
|
|
|
|
tracing::info!("Starting tiling applet with version {VERSION}");
|
2023-09-17 02:30:40 -07:00
|
|
|
|
2024-03-14 18:47:41 +01:00
|
|
|
cosmic_applet_tiling::run()
|
2023-09-17 02:30:40 -07:00
|
|
|
}
|