rshell/src/main.rs
2024-10-12 16:29:33 +02:00

13 lines
No EOL
231 B
Rust

use bar::start_bar;
use cushy::{PendingApp, Run, TokioRuntime};
mod vibrancy;
mod theme;
mod bar;
fn main() -> cushy::Result {
let mut app = PendingApp::new(TokioRuntime::default());
start_bar(&mut app)?;
app.run()
}