pinnacle/src/main.rs

60 lines
1.7 KiB
Rust
Raw Normal View History

2023-06-22 01:58:49 +02:00
#![warn(missing_docs)] // pretty sure this only warns the main file because nothing else is public
//! A very, VERY WIP Smithay-based Wayland compositor.
//!
//! Pinnacle is heavily inspired by the [Awesome Window Manager](https://awesomewm.org),
//! and this is an attempt to make something akin to it for Wayland.
//!
//! While Pinnacle is not a library, this documentation serves to guide those who would like to
//! contribute or learn how building something like this works.
2023-06-18 01:55:04 +02:00
mod api;
mod backend;
mod cursor;
2023-06-18 04:02:58 +02:00
mod focus;
mod grab;
mod handlers;
mod input;
mod layout;
mod pointer;
mod render;
mod state;
mod window;
mod xdg;
use std::error::Error;
fn main() -> Result<(), Box<dyn Error>> {
2023-06-15 19:42:34 +02:00
match tracing_subscriber::EnvFilter::try_from_default_env() {
Ok(env_filter) => {
tracing_subscriber::fmt()
.compact()
.with_env_filter(env_filter)
.init();
}
Err(_) => {
tracing_subscriber::fmt().compact().init();
}
}
2023-06-19 19:42:49 +02:00
let mut args = std::env::args().skip(1);
match args.next().as_deref() {
Some("--winit") => {
tracing::info!("Starting winit backend");
crate::backend::winit::run_winit()?;
}
Some("--udev") => {
tracing::info!("Starting udev backend");
crate::backend::udev::run_udev()?;
}
Some(arg) => tracing::error!("Unknown argument {}", arg),
None => {
println!(
"Specify a backend:\n\t--udev to launch Pinnacle in a tty, or\n\t--winit to launch Pinnacle as an ordinary window in your graphical environment."
);
}
2023-06-19 19:42:49 +02:00
}
Ok(())
}