Print version when run

This commit is contained in:
Javier Feliz 2025-09-12 13:48:04 -04:00
parent 45e7f93c0f
commit 73df2d68a4

View File

@ -1,11 +1,12 @@
mod ui;
use gtk::prelude::*;
use gtk::Application;
use gtk::prelude::*;
use ui::gtk::GtkLauncherUI;
use waycast_core::WaycastLauncher;
fn main() {
println!("WayCast v{}", env!("CARGO_PKG_VERSION"));
let app = Application::builder()
.application_id("dev.thegrind.waycast")
.build();