2024-05-06 15:39:04 +02:00
|
|
|
// Copyright 2023 System76 <info@system76.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
|
|
2024-03-14 18:47:41 +01:00
|
|
|
const VERSION: &str = env!("CARGO_PKG_VERSION");
|
2022-12-22 15:16:22 -07:00
|
|
|
|
2024-03-14 18:47:41 +01:00
|
|
|
fn main() -> cosmic::iced::Result {
|
2023-06-30 16:27:45 -04:00
|
|
|
tracing_subscriber::fmt::init();
|
2024-01-18 18:16:37 -05:00
|
|
|
let _ = tracing_log::LogTracer::init();
|
2022-12-22 15:16:22 -07:00
|
|
|
|
2024-03-14 18:47:41 +01:00
|
|
|
tracing::info!("Starting notifications applet with version {VERSION}");
|
2023-07-05 14:38:48 -04:00
|
|
|
|
2024-03-14 18:47:41 +01:00
|
|
|
cosmic_applet_notifications::run()
|
2023-07-05 14:38:48 -04:00
|
|
|
}
|