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

14 lines
363 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-12-02 20:24:52 -05:00
fn main() -> cosmic::iced::Result {
tracing_subscriber::fmt::init();
let _ = tracing_log::LogTracer::init();
2022-06-17 14:37:01 -07:00
tracing::info!("Starting battery applet with version {VERSION}");
2022-08-16 14:36:31 -04:00
cosmic_applet_battery::run()
2022-06-17 14:37:01 -07:00
}