cosmic-applets/cosmic-applet-workspaces/src/main.rs

14 lines
369 B
Rust
Raw Normal View History

2024-05-06 15:39:04 +02:00
// Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: GPL-3.0-only
const VERSION: &str = env!("CARGO_PKG_VERSION");
2022-08-16 14:36:31 -04:00
2022-11-29 16:52:31 -05:00
fn main() -> cosmic::iced::Result {
tracing_subscriber::fmt::init();
let _ = tracing_log::LogTracer::init();
tracing::info!("Starting workspaces applet with version {VERSION}");
2022-06-16 13:00:27 -04:00
cosmic_applet_workspaces::run()
2022-06-08 10:47:16 -04:00
}