Initial implementation of the Tiling applet

This commit is contained in:
Eduardo Flores 2023-09-17 02:30:40 -07:00 committed by Ashley Wulber
parent fcd1cfff5e
commit 3353dc95ac
11 changed files with 509 additions and 49 deletions

View file

@ -0,0 +1,10 @@
use crate::window::Window;
mod localize;
mod window;
fn main() -> cosmic::iced::Result {
localize::localize();
cosmic::app::applet::run::<Window>(true, ())
}