mirror of
https://github.com/danbulant/rshell
synced 2026-05-20 21:08:52 +00:00
13 lines
No EOL
231 B
Rust
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()
|
|
} |