wayland: we have a (blank) window ladies and gentlemen

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Id2b91339a2d43cc95041dafe835c6a526a6a6964
This commit is contained in:
raf 2026-06-23 15:02:40 +03:00
commit c68d3445e7
No known key found for this signature in database
GPG key ID: 29D95B64378DB4BF
4 changed files with 649 additions and 1 deletions

View file

@ -1,5 +1,7 @@
//! beer, a fast, software-rendered, Wayland-native terminal emulator.
mod wayland;
use std::process::ExitCode;
use pound::Parse;
@ -45,5 +47,5 @@ fn run(cli: Cli) -> anyhow::Result<()> {
}
tracing::info!("starting beer");
todo!("window mode")
wayland::run()
}