cosmic-applets/cosmic-applet-tiling/src/lib.rs

16 lines
296 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
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, ())
}