15 lines
296 B
Rust
15 lines
296 B
Rust
// Copyright 2023 System76 <info@system76.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
use crate::window::Window;
|
|
|
|
mod localize;
|
|
mod wayland;
|
|
mod wayland_subscription;
|
|
mod window;
|
|
|
|
pub fn run() -> cosmic::iced::Result {
|
|
localize::localize();
|
|
|
|
cosmic::applet::run::<Window>(false, ())
|
|
}
|