use catfood_bar::{handle_bar_cli, run_bar};
use clap::Parser;
#[derive(Parser)]
#[command(name = "catfood-bar")]
#[command(about = "A system bar component of the catfood utility suite")]
struct Cli {
#[arg(long = "no-kitten")]
no_kitten: bool,
}
fn main() -> color_eyre::Result<()> {
let cli = Cli::parse();
if handle_bar_cli(cli.no_kitten) {
return Ok(());
}
run_bar()
}