2024-05-06 15:39:04 +02:00
|
|
|
// Copyright 2023 System76 <info@system76.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
|
|
2024-05-06 16:58:25 -05:00
|
|
|
const VERSION: &str = env!("CARGO_PKG_VERSION");
|
|
|
|
|
|
2024-09-09 19:08:21 +02:00
|
|
|
fn main() -> cosmic::iced::Result {
|
2024-05-06 16:58:25 -05:00
|
|
|
tracing_subscriber::fmt::init();
|
|
|
|
|
let _ = tracing_log::LogTracer::init();
|
|
|
|
|
|
2024-09-09 19:08:21 +02:00
|
|
|
tracing::info!("Starting workspaces applet with version {VERSION}");
|
2024-09-09 14:34:36 +02:00
|
|
|
|
2024-09-09 19:08:21 +02:00
|
|
|
cosmic_panel_button::run()
|
2023-02-17 20:05:42 -08:00
|
|
|
}
|